Skip to content

Commit c24ccca

Browse files
committed
add dense work estimates to core
1 parent 143a0e1 commit c24ccca

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

core/matrix/dense.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,10 @@ GKO_REGISTER_OPERATION(add_scaled_diag, dense::add_scaled_diag);
5252
GKO_REGISTER_OPERATION(sub_scaled_diag, dense::sub_scaled_diag);
5353
GKO_REGISTER_OPERATION_WITH_WORK_ESTIMATE(compute_dot,
5454
dense::compute_dot_dispatch);
55-
GKO_REGISTER_OPERATION(compute_conj_dot, dense::compute_conj_dot_dispatch);
56-
GKO_REGISTER_OPERATION(compute_norm2, dense::compute_norm2_dispatch);
55+
GKO_REGISTER_OPERATION_WITH_WORK_ESTIMATE(compute_conj_dot,
56+
dense::compute_conj_dot_dispatch);
57+
GKO_REGISTER_OPERATION_WITH_WORK_ESTIMATE(compute_norm2,
58+
dense::compute_norm2_dispatch);
5759
GKO_REGISTER_OPERATION(compute_norm1, dense::compute_norm1);
5860
GKO_REGISTER_OPERATION(compute_mean, dense::compute_mean);
5961
GKO_REGISTER_OPERATION(compute_squared_norm2, dense::compute_squared_norm2);

0 commit comments

Comments
 (0)