Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
seunghwak committed Mar 7, 2024
1 parent a9dacdb commit 8dfc337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/prims/transform_e.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ __global__ void transform_e_packed_bool(
if (local_edge_idx < num_edges) {
bool compute_predicate = true;
if constexpr (check_edge_mask) {
compute_predicate = (edge_mask & packed_bool_mask(lane_id) != packed_bool_empty_mask());
compute_predicate = ((edge_mask & packed_bool_mask(lane_id)) != packed_bool_empty_mask());
}

if (compute_predicate) {
Expand Down

0 comments on commit 8dfc337

Please sign in to comment.