MCPcopy Create free account
hub / github.com/ml-explore/mlx / bitwise_xor

Function bitwise_xor

mlx/ops.cpp:6239–6241  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6237}
6238
6239array bitwise_xor(const array& a, const array& b, StreamOrDevice s /* = {} */) {
6240 return bitwise_impl(a, b, BitwiseBinary::Op::Xor, "bitwise_xor", s);
6241}
6242array operator^(const array& a, const array& b) {
6243 return bitwise_xor(a, b);
6244}

Callers 3

init_arrayFunction · 0.85
init_opsFunction · 0.85
operator^Function · 0.85

Calls 1

bitwise_implFunction · 0.85

Tested by

no test coverage detected