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

Function And

tensorflow/compiler/xla/client/xla_builder.h:1643–1645  ·  view source on GitHub ↗

Overload to call And with 3 or more operands. We need the following somewhat convoluted overload set to disambiguate with the overload that takes the `broadcast_dimensions` optional param.

Source from the content-addressed store, hash-verified

1641// convoluted overload set to disambiguate with the overload that takes the
1642// `broadcast_dimensions` optional param.
1643inline XlaOp And(XlaOp op1, XlaOp op2, XlaOp op3) {
1644 return And(op1, And(op2, op3));
1645}
1646template <typename... XlaOpTs>
1647XlaOp And(XlaOp op1, XlaOp op2, XlaOp op3, const XlaOpTs&... operands) {
1648 return And(op1, And(op2, And(op3, operands...)));

Callers 15

TEST_FFunction · 0.70
CompileMethod · 0.50
BoundSamplesFunction · 0.50
CompileMethod · 0.50
CompileMethod · 0.50
CompileMethod · 0.50
CompileMethod · 0.50
BuildReducerMethod · 0.50
CompileMethod · 0.50
FloorModImplFunction · 0.50
binary_ops.ccFile · 0.50
CompileMethod · 0.50

Calls

no outgoing calls

Tested by 5

TEST_FFunction · 0.56
TEST_FFunction · 0.40
XLA_TEST_FFunction · 0.40
XLA_TEST_FFunction · 0.40
XLA_TEST_FFunction · 0.40