Skip to content
Snippets Groups Projects
Commit 9f1a3943 authored by Mulas, Giacomo's avatar Mulas, Giacomo
Browse files

fix type definition of argument for magma function call

parent 2c267b9c
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,7 @@ void magma_zinvert(dcomplex **mat, np_int n, int &jer) { ...@@ -30,7 +30,7 @@ void magma_zinvert(dcomplex **mat, np_int n, int &jer) {
// magma_int_t result = magma_init(); // magma_int_t result = magma_init();
magma_int_t err = MAGMA_SUCCESS; magma_int_t err = MAGMA_SUCCESS;
magma_queue_t queue = NULL; magma_queue_t queue = NULL;
magma_int_t dev = 0; magma_device_t dev = 0;
magma_queue_create(dev, &queue); magma_queue_create(dev, &queue);
magmaDoubleComplex *dwork; // dwork - workspace magmaDoubleComplex *dwork; // dwork - workspace
magma_int_t ldwork; // size of dwork magma_int_t ldwork; // size of dwork
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment