David Geldreich
David Geldreich
Hello @cudawarped This seems to be a CMake issue. I could reproduce it with CMake alone: ``` cmake_minimum_required(VERSION 3.5.1) project( cuda1 LANGUAGES CXX C) find_package(CUDA REQUIRED) cuda_add_executable( cuda1 main.cu )...
Opened a specific issue for this `FindCUDA` issue : https://gitlab.kitware.com/cmake/cmake/-/issues/23258
I tried using CLI11 version including #875 #878, but this does not solve this issue
Here is the code to reproduce [cli11_bug912.tgz](https://github.com/CLIUtils/CLI11/files/12266402/cli11_bug912.tgz) And the command: ``` bash # Non accentuated config works $ cli11_bug --print foo > config $ cli11_bug -c config foo $ cp...
I am using `Git bash` to do the `cp` command with accentuated characters
Hello @catree As your 4 points are on a plane and on a square, there seems to be multiple solution given the measure error of the corners. I think adding...
So I found a workaround (using `__HIP_DEVICE_COMPILE__` as this seems to be a `hipcc` compiler bug. ``` cpp #include __global__ void kernel(float *arr, int n) { #if __HIP_DEVICE_COMPILE__ int tid...
Hi @stanleytsang-amd OK gfx1011 are the AMD machines (g4ad) provided by AWS. But even when compiling for gfx1030 and gfx1100, I got the same compilation error. warpSize on gfx1011 returns...
> Thanks @Naraenda! A more detailed explanation from the compiler team about why this is needed: > > The compiler does separate compilation for host and each GPU arch. During...