Skip to content

Commit

Permalink
fixup! [dpcpp] unify dpcpp kernels
Browse files Browse the repository at this point in the history
  • Loading branch information
pratikvn committed Aug 22, 2024
1 parent dc8c904 commit 1714994
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dpcpp/matrix/batch_dense_kernels.dp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ void simple_apply(std::shared_ptr<const DefaultExecutor> exec,
batch::matrix::extract_batch_item(mat_ub, group_id);
const auto b_b = batch::extract_batch_item(b_ub, group_id);
const auto x_b = batch::extract_batch_item(x_ub, group_id);
batch_single_kernels::simple_apply_kernel(
mat_b, b_b.values, x_b.values, item_ct1);
batch_single_kernels::simple_apply(mat_b, b_b.values,
x_b.values, item_ct1);
});
});
}
Expand Down

0 comments on commit 1714994

Please sign in to comment.