1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
# NVHPC 2021.5 OpenACC
module purge
module load cuda/11.0
module load hpc-sdk/2021--binary
module load spectrum_mpi/10.4.0--binary
./configure \
F90=pgfortran MPIF90=mpipgifort \
--enable-parallel \
--enable-openacc \
--enable-cublas=yes \
--with-cuda-cc=70 \
--with-cuda-runtime=11.0 \
--with-cuda-path=$CUDA_HOME
# ttttttttttttttttttttttttt
./test_malloc.x
Test SUMMARY:
# passed: 15
# failed: 9
# failed malloc: 0
./test_linalg.x
checking xAXPY (C) ...
Failing in Thread:1
call to cuMemcpyDtoHAsync returned error 700: Illegal address during kernel execution
# ttttttttttttttttttttttttt
# NVHPC 2022.5 OpenACC
module purge
module load profile/candidate
module load cuda/11.0
module load hpc-sdk/2022--binary
module load spectrum_mpi/10.4.0--binary
./configure \
F90=pgfortran MPIF90=mpipgifort \
--enable-parallel \
--enable-openacc \
--enable-cublas=yes \
--with-cuda-cc=70 \
--with-cuda-runtime=11.0 \
--with-cuda-path=$CUDA_HOME
# ttttttttttttttttttttttttt
./test_malloc.x
Test SUMMARY:
# passed: 18
# failed: 6
# failed malloc: 0
./test_linalg.x
checking xAXPY (C) ...
Failing in Thread:1
call to cuMemcpyDtoHAsync returned error 700: Illegal address during kernel execution
# ttttttttttttttttttttttttt
|