Search found 283 matches
- Fri Jun 14, 2013 1:46 pm
- Forum: User discussion
- Topic: GPU interface to dgetrf with streams
- Replies: 4
- Views: 4327
Re: GPU interface to dgetrf with streams
Austin, I see. This sounds good. We have been asked by users to provide this type of stream interface, so any experimental results on performance would be very useful for us to know. I can check with NVIDIA developers if routine arguments are always sent asynchronously or if there are cases that the...
- Thu Jun 13, 2013 11:18 pm
- Forum: User discussion
- Topic: GPU interface to dgetrf with streams
- Replies: 4
- Views: 4327
Re: GPU interface to dgetrf with streams
The current code uses stream 0 for the GPU BLAS. This would not allow concurrent BLAS execution on the GPU from the different threads. Related to the communications, I think magmablas_dpermute_long2s does not use synchronous communications. The routine does not have any explicit communication, only ...
- Fri May 24, 2013 5:33 pm
- Forum: User discussion
- Topic: Segmentation fault in magma_dsetmatrix
- Replies: 11
- Views: 8530
Re: Segmentation fault in magma_dsetmatrix
We have
Ubuntu 12.04.2 LTS
OpenCL 1.2
AMD-APP 1124.2
Driver version 12.10.5 (module loaded - fglrx 12.10.5 [Mar 20 2013] with 1 minors)
clAmdBlas 1.11.314 (also 1.8.286 and 1.8.291)
- Tue May 21, 2013 10:19 am
- Forum: User discussion
- Topic: problem MAGMA-1.2.0 ATLAS-3.10.0 Lapack-3.4.1..help !!!
- Replies: 12
- Views: 10620
Re: problem MAGMA-1.2.0 ATLAS-3.10.0 Lapack-3.4.1..help !!!
Hi, These undefined routines are supposed to be in lapack. Maybe check to see if they are indeed there, e.g., nm liblapack.a | grep ssyevd If it is not there, probably you have some incomplete version of LAPACK, e.g., something that comes with ATLAS. If it is there, probably just adding -llapack onc...
- Tue May 21, 2013 10:02 am
- Forum: User discussion
- Topic: Segmentation fault in magma_dsetmatrix
- Replies: 11
- Views: 8530
Re: Segmentation fault in magma_dsetmatrix
Actually we have similar problem on a new system that we just setup. We rely on the clAmdBlas so this is one of the first things that we check when there are problems. On dgemm we also get somehow similar results ./testing_dgemm Initializing clMAGMA runtime ... Usage: testing_dgemm [-NN|NT|TN|TT] [-...
- Tue May 21, 2013 1:05 am
- Forum: User discussion
- Topic: Segmentation fault in magma_dsetmatrix
- Replies: 11
- Views: 8530
Re: Segmentation fault in magma_dsetmatrix
We are also running on Ubuntu 12.04 (.2 LTS).
Linux genesis 3.2.0-23-generic #36-Ubuntu SMP Tue Apr 10 20:39:51 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux.
Are the clMAGMA testing routines working, e.g., testing_sgemm?
Stan
givesuname -a
Linux genesis 3.2.0-23-generic #36-Ubuntu SMP Tue Apr 10 20:39:51 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux.
Are the clMAGMA testing routines working, e.g., testing_sgemm?
Stan
- Mon May 20, 2013 11:15 pm
- Forum: User discussion
- Topic: problem MAGMA-1.2.0 ATLAS-3.10.0 Lapack-3.4.1..help !!!
- Replies: 12
- Views: 10620
Re: problem MAGMA-1.2.0 ATLAS-3.10.0 Lapack-3.4.1..help !!!
Hello,
These functions are from the LAPACK library. LAPACK is a MAGMA dependency and has to be installed or your system and linked.I see you have
but don't have -llapack. Do you have a liblapack.a somewhere in /home/ronald/lapack-3.4.1/?
These functions are from the LAPACK library. LAPACK is a MAGMA dependency and has to be installed or your system and linked.I see you have
Code: Select all
-L/home/ronald/lapack-3.4.1/
- Mon May 20, 2013 11:06 pm
- Forum: User discussion
- Topic: Magma 1.3 installation problem
- Replies: 1
- Views: 2482
Re: Magma 1.3 installation problem
Hello,
The cmake building capabilities are not up to date. Please use the Makefiles as described in README. Please post your make.inc file if you still have problems compiling (and the errors that you get). Thanks.
Stan
The cmake building capabilities are not up to date. Please use the Makefiles as described in README. Please post your make.inc file if you still have problems compiling (and the errors that you get). Thanks.
Stan
- Mon May 20, 2013 10:52 pm
- Forum: User discussion
- Topic: Segmentation fault in magma_dsetmatrix
- Replies: 11
- Views: 8530
Re: Segmentation fault in magma_dsetmatrix
Hello,
I looked at your code and was wondering if the problem comes from
Maybe you should have
I looked at your code and was wondering if the problem comes from
Code: Select all
magma_device_t device;
...
if ( MAGMA_SUCCESS == magma_get_devices (&device, 2, &num ) )
...
Code: Select all
magma_device_t device[2];
...
if ( MAGMA_SUCCESS == magma_get_devices (device, 2, &num ) )
...
- Wed May 15, 2013 11:23 pm
- Forum: User discussion
- Topic: Possible bug dsyevd_gpu test wrong eigenvectors result
- Replies: 4
- Views: 4135
Re: Possible bug dsyevd_gpu test wrong eigenvectors result
Hi Luis, I just ran the test and reproduced your result on a K20c. I added a check for the factorization though and for the orthogonality and everything looks fine: test> ./benchmark_cpu -N 2000 Reading input file Read succesful Calculating eigenvalues with MKL Quering space... Solving eigenvalues.....