@@ -1204,8 +1204,8 @@ TYPED_TEST(Jacobi, L1BlockJaocbiConvertsToDense)
1204
1204
auto mtx = gko::share (Mtx::create (this ->exec , gko::dim<2 >{5 }, 12 ));
1205
1205
this ->template init_array <index_type>(mtx->get_row_ptrs (),
1206
1206
{0 , 3 , 5 , 7 , 10 , 12 });
1207
- this ->template init_array <index_type>(
1208
- mtx-> get_col_idxs (), {0 , 1 , 4 , 0 , 1 , 2 , 3 , 2 , 3 , 4 , 0 , 3 , 4 });
1207
+ this ->template init_array <index_type>(mtx-> get_col_idxs (),
1208
+ {0 , 1 , 4 , 0 , 1 , 2 , 3 , 2 , 3 , 4 , 0 , 3 });
1209
1209
this ->template init_array <value_type>(
1210
1210
mtx->get_values (),
1211
1211
{2.0 , -2.0 , -2.0 , -1.0 , 4.0 , 4.0 , -2.0 , -1.0 , 4.0 , -2.0 , -4.0 , -1.0 });
@@ -1251,8 +1251,8 @@ TYPED_TEST(Jacobi, L1BlockJaocbiConvertsToDenseWithAdaptivePrecision)
1251
1251
auto mtx = gko::share (Mtx::create (this ->exec , gko::dim<2 >{5 }, 12 ));
1252
1252
this ->template init_array <index_type>(mtx->get_row_ptrs (),
1253
1253
{0 , 3 , 5 , 7 , 10 , 12 });
1254
- this ->template init_array <index_type>(
1255
- mtx-> get_col_idxs (), {0 , 1 , 4 , 0 , 1 , 2 , 3 , 2 , 3 , 4 , 0 , 3 , 4 });
1254
+ this ->template init_array <index_type>(mtx-> get_col_idxs (),
1255
+ {0 , 1 , 4 , 0 , 1 , 2 , 3 , 2 , 3 , 4 , 0 , 3 });
1256
1256
this ->template init_array <value_type>(
1257
1257
mtx->get_values (),
1258
1258
{2.0 , -2.0 , -2.0 , -1.0 , 4.0 , 4.0 , -2.0 , -1.0 , 4.0 , -2.0 , -4.0 , -1.0 });
0 commit comments