Does anyone know the answer to my question?
Thanks,
Jeremiah
Search found 58 matches
- Tue Sep 24, 2013 10:44 am
- Forum: User discussion
- Topic: testing magma_dsytrd_mgpu
- Replies: 2
- Views: 1648
- Tue Aug 20, 2013 4:11 pm
- Forum: User discussion
- Topic: testing magma_dsytrd_mgpu
- Replies: 2
- Views: 1648
testing magma_dsytrd_mgpu
Hello!
Are there plans for including a routine in the testing directory to run magma_dsytrd_mgpu?
I have tried to run magma_dsytrd_mgpu from my own code, and I keep getting an error "MKL INTERNAL ERROR: Condition 2 detected in function magma_dsytrd_mgpu."
Thanks,
Jeremiah
Are there plans for including a routine in the testing directory to run magma_dsytrd_mgpu?
I have tried to run magma_dsytrd_mgpu from my own code, and I keep getting an error "MKL INTERNAL ERROR: Condition 2 detected in function magma_dsytrd_mgpu."
Thanks,
Jeremiah
- Fri Apr 12, 2013 3:22 pm
- Forum: User discussion
- Topic: zgetrf_ooc.cc missing?
- Replies: 1
- Views: 1309
zgetrf_ooc.cc missing?
There was a src/zgetrf_ooc.cc in magma_1.2.1, but I don't see it in magma_1.3.0. Was the zgetrf_ooc.cc in magma_1.2.1 faulty?
Thanks,
Jeremiah
Thanks,
Jeremiah
- Wed Nov 28, 2012 12:18 pm
- Forum: User discussion
- Topic: Magma_1.3 multi-gpu routines
- Replies: 5
- Views: 3694
Re: Magma_1.3 multi-gpu routines
Thanks for the info.
- Wed Nov 28, 2012 11:29 am
- Forum: User discussion
- Topic: Magma_1.3 multi-gpu routines
- Replies: 5
- Views: 3694
Re: Magma_1.3 multi-gpu routines
...Or maybe they will appear in a later magma version? I am eager to use this functionality.
- Thu Nov 15, 2012 3:29 pm
- Forum: User discussion
- Topic: Magma_1.3 multi-gpu routines
- Replies: 5
- Views: 3694
Magma_1.3 multi-gpu routines
Hello! I see in the magma_1.3 presentation pdf mentions of multi-gpu dsytrd routines. Where can I find the routines that were used to produce those results? Are they referenced in the testing directory?
Thanks,
Jeremiah
Thanks,
Jeremiah
- Tue Oct 23, 2012 12:36 pm
- Forum: User discussion
- Topic: integer arrays in structs in magma_1.2.1
- Replies: 7
- Views: 3750
Re: integer arrays in structs in magma_1.2.1
Right - my matrix size was 14307, which I padded up to size 14336 to avoid allocating the large amount of memory. Can I ask why the transpose at the beginning is performed at all?
- Sat Oct 20, 2012 11:20 pm
- Forum: User discussion
- Topic: integer arrays in structs in magma_1.2.1
- Replies: 7
- Views: 3750
Re: integer arrays in structs in magma_1.2.1
The magma code zgetrf_gpu allocates a large space in gpu memory to hold a copy of the input matrix, padded to be of a size that is a multiple of 32. My gpu memory requirements are rather tight, so I modified zgetrf_gpu to never allocate space on the gpu, and I always make sure that my input matrix i...
- Thu Oct 18, 2012 5:01 pm
- Forum: User discussion
- Topic: integer arrays in structs in magma_1.2.1
- Replies: 7
- Views: 3750
Re: integer arrays in structs in magma_1.2.1
I see. Well, the reason I was even looking at that was b/c my code uses the zgesv routine, and it kept hanging in the zlaswp2 kernel.
- Thu Oct 18, 2012 3:54 pm
- Forum: User discussion
- Topic: integer arrays in structs in magma_1.2.1
- Replies: 7
- Views: 3750
integer arrays in structs in magma_1.2.1
Hello! In the magmablas/zpermute-v2.cu, I see a couple of structs defined: typedef struct { cuDoubleComplex *A; int n, lda, j0; short ipiv[BLOCK_SIZE]; } zlaswp_params_t; typedef struct { cuDoubleComplex *A; int n, lda, j0, npivots; short ipiv[BLOCK_SIZE]; } zlaswp_params_t2; In the subroutine magma...