René Widera

Results 480 comments of René Widera

> I know we like to compile our own compilers and runtimes on our internal systems instead of using pre-built binaries. Is this the case for the ROCm installation, too?...

Node this error happened too if you compile host code with hipcc where `rocrand_kernel.h` is included. If I not forget this issue I will write a miniapp and open an...

Maybe I get your question wrong. If alpaka is installed it should install all third-party libs too and still provide the option `INTERNAL` and `SYSTEM`. In case the user is...

We need to tag files which language should be used. This is what `alpaka_add_executable` currently is doing. I thought a cmake target is enough but maybe not :-(

@SimeonEhrig You missed to link an alpaka target. If we add an target for any backend anyway I thought you snipped should looks like: ``` add_executeable(mainTgt) add_sources(mainTgt PRIVATE main.cpp) #...

@bernhardmgruber I am mixing the discussion from #919 and this because IMO these are not orthogonal topics. The problem is that the current alpaka CMake is based on old CMake...

@SimeonEhrig You missed that we need to annotate source files and not the target. How to link alpaka to the target does not require a new function, we have already...

> No, if you have the target, you can query it for all the source files and annotate those. Ok then I understand it wrong, I thought selecting the files...

@SimeonEhrig could you please point to the line in the diff where we now handle if a job is in a run stage (where we perform runtime tests) and where...

example how to get the real acc type out of the tag used in a trait ```C++ template struct GetDefaultStrategy { // this will provide alpaka::AccGpuUniformCudaHipRt using realAccType = typename...