Results 9 comments of Vedran Novaković

Ad 1. Maybe a function with an extra parameter, as done in xLANGE, e.g., https://github.com/Reference-LAPACK/lapack/blob/master/SRC/clange.f

Hi poofee, Please, can you try configuring as described below (`sudo` shouldn't be needed) in a clean state of the local repository: ```bash ./autogen.sh ./configure --with-metis="-L/usr/local/lib -lmetis" --with-blas="-L/usr/OpenBLAS -lopenblas" ```...

Thank you for the check! Can you try the following: 1. Edit `Makefile.am`, and uncomment the line 8 (remove the `#` sign before `NVCCFLAGS`). 2. Depending on the GPU you...

Yes, it looks like a typo, thank you! The maintainers, could you please fix this? If you change `CCPFLAGS` to `CPPFLAGS` and reconfigure, do you get CUDA working? If so,...

OK, I'll post here if I figure out what is happening. My environment has `C_INCLUDE_FLAGS` set by the modules system, so I'll try to unset it and configure without it.

I can now confirm, that even with the typo fixed, `configure` fails when `C_INCLUDE_FLAGS` in not set to a directory containing CUDA includes: ``` configure: error: NVCC include path not...

@archenroot: Are you using the latest sources from master? If so, can you try *not* setting `C_INCLUDE_FLAGS` and `NVCC_INCLUDE_FLAGS` in your ebuild (i.e., not put them in `myeconfargs`)? What do...

You have a very interesting CUDA environment, it seems. If you look at line 3 of the `configure`'s output, it says: `cuInit: 999` That output in turn must have been...

I don't know what you are trying to achieve with this, but your code cannot work as you've said: ``` char a[N] = "Hello \0\0\0\0\0\0"; int b[N] = {15, 10,...