testing_dgemm "can not bind to texture"
Posted: Wed Jun 19, 2013 4:39 pm
Hello,
I have successfully installed magma 1.3 in Ubuntu 11.x and have the following CPU and GPU:
- i7 3930K and Intel Parallel Studio (which includes MKL) 2013 update 3 (downloaded and installed today)
- nVidia GTX 670 and CUDA 5.0 (downloaded and installed today) which is at Kepler architecture and supports computing capability 3.0
- My cuda installer version is cuda_5.0.35_linux_64_ubuntu11.10-1.run
- My driver installer version is NVIDIA-Linux-x86_64-319.23.run
The problem is that compiling and running using "GPU_TARGET = Kepler" ./testing/testing_dgemm I get the following error "can not bind to texture" while my architecture is clearly Kepler, the errors and Gflop/s are totally off but that could be a consequence of whatever error leads to "can not bind to texture":
However, running using using "GPU_TARGET = Fermi" ./testing/testing_dgemm produces:
TIA,
Best regards,
Giovanni
I have successfully installed magma 1.3 in Ubuntu 11.x and have the following CPU and GPU:
- i7 3930K and Intel Parallel Studio (which includes MKL) 2013 update 3 (downloaded and installed today)
- nVidia GTX 670 and CUDA 5.0 (downloaded and installed today) which is at Kepler architecture and supports computing capability 3.0
- My cuda installer version is cuda_5.0.35_linux_64_ubuntu11.10-1.run
- My driver installer version is NVIDIA-Linux-x86_64-319.23.run
The problem is that compiling and running using "GPU_TARGET = Kepler" ./testing/testing_dgemm I get the following error "can not bind to texture" while my architecture is clearly Kepler, the errors and Gflop/s are totally off but that could be a consequence of whatever error leads to "can not bind to texture":
Code: Select all
bravegag@Zeus:~/Downloads/magma-1.3.0/testing$ ./testing_dgemm
MAGMA 1.3.0
device 0: GeForce GTX 670, 1084.5 MHz clock, 2047.7 MB memory, capability 3.0
Usage:
testing_dgemm [-NN|NT|TN|TT] [-N 1024]
Testing transA = N transB = N
M N K MAGMA GFLop/s CUBLAS GFlop/s error
==================================================================
can not bind to texture
1024 1024 1024 45691.14 104.03 8.330523e+01
can not bind to texture
1280 1280 1280 104857.60 105.08 1.030630e+02
can not bind to texture
1600 1600 1600 227555.56 105.68 1.278515e+02
can not bind to texture
2000 2000 2000 432432.43 109.60 1.592382e+02
can not bind to texture
2500 2500 2500 844594.59 117.17 1.972784e+02
can not bind to texture
3125 3125 3125 1695421.01 120.48 2.452298e+02
can not bind to texture
3906 3906 3906 3221254.13 119.60 3.038157e+02
can not bind to texture
4882 4882 4882 6648983.83 120.79 3.780258e+02
can not bind to texture
6102 6102 6102 12622462.96 121.27 4.698986e+02
Code: Select all
bravegag@Zeus:~/Downloads/magma-1.3.0/testing$ ./testing_dgemm
MAGMA 1.3.0
device 0: GeForce GTX 670, 1084.5 MHz clock, 2047.7 MB memory, capability 3.0
Usage:
testing_dgemm [-NN|NT|TN|TT] [-N 1024]
Testing transA = N transB = N
M N K MAGMA GFLop/s CUBLAS GFlop/s error
==================================================================
1024 1024 1024 97.30 104.24 0.000000e+00
1280 1280 1280 99.67 111.52 0.000000e+00
1600 1600 1600 108.83 113.81 0.000000e+00
2000 2000 2000 109.06 117.83 0.000000e+00
2500 2500 2500 109.62 118.42 0.000000e+00
3125 3125 3125 115.06 120.49 0.000000e+00
3906 3906 3906 112.49 119.62 0.000000e+00
4882 4882 4882 114.04 120.79 0.000000e+00
6102 6102 6102 114.92 121.27 nanBest regards,
Giovanni