Christoph Klein

Results 7 issues of Christoph Klein

I tried to use `cuda-kat` with c++17, which fails to compile. The reproduction should be easy, because already the include of the header causes compilation issues.

bug
fixed on development

If you put these lines: ```cmake # If you want to use the library without installing it, you'll need to # copy the file we generate here, cuda-kat-config.cmake, into the...

The `CMakeLists.txt` required `strf` with version `0.10.4`, but that version is not available [here](https://github.com/robhz786/strf/tags)

fixed on development

This is a general problem of `nvcc` I would say: ```cpp #include #include constexpr int duzzle = -7; __global__ void kernel() { kat::array arr; arr.fill(duzzle); // fails to compile }...

question

```cpp // example.cu #include namespace foo { namespace gsl = ::gsl_lite; __global__ void kernel(gsl::span s) {} void func(gsl::span s) {} } using namespace foo; int main() { } ``` The...

According to modern CMake you should rather provide a `easyloggingppConfig.cmake` than a `FindEASYLOGGINGPP.cmake`, which should be installed when `make install` is executed. This would enhance the useability of this project,...

To implement a Setup, which is shared among all states of a `benchmark_base` a current solution could be: ```cpp void my_benchmark(nvbench::state& state) { static int num_execs = 0; if (execs...

type: enhancement
P1: should have
helps: rapids