The Make_def_files/linux_pgi.def compiles the code of this repository in binaries with pgcc -mp -fast however current PGI/NVIDIA pgcc (aka nvc) 20.11-0 will not offload the code to the gpu unless it's compiled with pgcc -mp=gpu -fast. This might be missed on a naive run, but it is strikingly evident with the example code I proposed in issue #3
Moreover, NVIDIA claims they will remove the deprecated pg* commands, so it's probably a good idea to switch to nvc one. Note that the latter is different from nvcc.
The
Make_def_files/linux_pgi.defcompiles the code of this repository in binaries withpgcc -mp -fasthowever current PGI/NVIDIA pgcc (aka nvc) 20.11-0 will not offload the code to the gpu unless it's compiled withpgcc -mp=gpu -fast. This might be missed on a naive run, but it is strikingly evident with the example code I proposed in issue #3Moreover, NVIDIA claims they will remove the deprecated
pg*commands, so it's probably a good idea to switch tonvcone. Note that the latter is different fromnvcc.