terminate called after throwing an instance of 'cusp::not_implemented_exception'
#include <cusp/array2d.h>
#include <cusp/print.h>
#include <cusp/gallery/poisson.h>
// include cusp blas header file
#include <cusp/blas/blas.h>
int main()
{
// create an empty dense matrix structure
cusp::array2d<float,cusp::host_memory> A(4, 4, 1.0);
// create 2D Poisson problem
// allocate space for output matrix
cusp::array2d<float,cusp::host_memory> B(A.num_rows, A.num_cols);
// compute output matrix
cusp::blas::gemm(A, A, B);
// print the contents of B
cusp::print(B);
return 0;
}
I've tried with cudatoolkit versions 6.5 and 7.5. I'm using cusp v0.5.1. Additional info:
+------------------------------------------------------+
| NVIDIA-SMI 340.32 Driver Version: 340.32 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 Tesla K20m Off | 0000:20:00.0 Off | 0 |
| N/A 27C P0 48W / 225W | 11MiB / 4799MiB | 0% Default |
+-------------------------------+----------------------+----------------------+
| 1 Tesla K20m Off | 0000:8B:00.0 Off | 0 |
| N/A 28C P0 51W / 225W | 11MiB / 4799MiB | 73% Default |
+-------------------------------+----------------------+----------------------+
+-----------------------------------------------------------------------------+
| Compute processes: GPU Memory |
| GPU PID Process name Usage |
|=============================================================================|
| No running compute processes found |
+-----------------------------------------------------------------------------+
--
You received this message because you are subscribed to the Google Groups "cusp-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cusp-users+...@googlegroups.com.
To post to this group, send email to cusp-...@googlegroups.com.
Visit this group at https://groups.google.com/group/cusp-users.
For more options, visit https://groups.google.com/d/optout.