Skip to content

Commit

Permalink
fix implementation of not_equal_scalar (#675)
Browse files Browse the repository at this point in the history
  • Loading branch information
mseri committed Jul 11, 2024
1 parent 455bde1 commit c788252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/owl/dense/owl_dense_ndarray_generic.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1939,7 +1939,7 @@ let less_equal x y = _owl_less_equal (kind x) (numel x) x y = 1

let equal_scalar x a = _owl_equal_scalar (kind x) (numel x) x a = 1

let not_equal_scalar x a = _owl_equal_scalar (kind x) (numel x) x a = 1
let not_equal_scalar x a = _owl_not_equal_scalar (kind x) (numel x) x a = 1

let less_scalar x a = _owl_less_scalar (kind x) (numel x) x a = 1

Expand Down

0 comments on commit c788252

Please sign in to comment.