MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / operator&

Function operator&

tensorflow/compiler/xla/client/xla_builder.cc:83–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

81
82XlaOp operator~(XlaOp x) { return Not(x); }
83XlaOp operator&(XlaOp x, XlaOp y) { return And(x, y); }
84XlaOp operator|(XlaOp x, XlaOp y) { return Or(x, y); }
85XlaOp operator^(XlaOp x, XlaOp y) { return Xor(x, y); }
86XlaOp operator<<(XlaOp x, XlaOp y) { return ShiftLeft(x, y); }

Callers

nothing calls this directly

Calls 1

AndFunction · 0.70

Tested by

no test coverage detected