239 double lhs_values[] = {2, 10, 18, 26, 4, 12, 20, 28,
240 6, 14, 22, 30, 8, 16, 24, 32};
242 std::shared_ptr<NekMatrix<NekDouble, StandardMatrixTag>> lhs1;
243 std::shared_ptr<NekMatrix<NekMatrix<NekDouble>, ScaledMatrixTag>> lhs2;
244 std::shared_ptr<NekMatrix<NekMatrix<NekDouble>, BlockMatrixTag>> lhs3;
251 double rhs_values[] = {4, 20, 36, 52, 8, 24, 40, 56,
252 12, 28, 44, 60, 16, 32, 48, 64};
253 std::shared_ptr<NekMatrix<NekDouble, StandardMatrixTag>> rhs1;
254 std::shared_ptr<NekMatrix<NekMatrix<NekDouble>, ScaledMatrixTag>> rhs2;
255 std::shared_ptr<NekMatrix<NekMatrix<NekDouble>, BlockMatrixTag>> rhs3;
258 double result_values[16];
259 std::transform(lhs_values, lhs_values + 16, rhs_values, result_values,
260 std::minus<NekDouble>());