NLESC-JCER / EigenCuda

Offload Eigen operations to GPUs
Apache License 2.0
17 stars 5 forks source link

Implement a right matrix tensor multiplication #10

Closed felipeZ closed 5 years ago

felipeZ commented 5 years ago

Given a 3D tensor represented as a vector of matrices, create an operation that performs the following multiplication in a GPU

std::vector<MatrixXd> rs;
MatrixXd mtx;
for (matrixXd &x: tensor) {
   rs.push_back( x * mtx);
}