スパース行列を使用するために、CUDA でcuspライブラリを使用しています。struct
次のような Cで使用できませんか。
#include <cusp/coo_matrix.h>
#include <cusp/multiply.h>
#include <cusp/print.h>
#include <cusp/transpose.h>
struct Cat{
int id;
cusp::coo_matrix<int, double, cusp::host_memory> A(2,100,10);
};
int main(){
}
エラーが発生しています:
try.cu(7): error: expected a type specifier
try.cu(7): error: expected a type specifier
try.cu(7): error: expected a type specifier
struct
そのような構造の配列を持つことができるように、それを使用する正しい方法は何ですか?