Home
last modified time | relevance | path

Searched refs:kAnd (Results 1 – 21 of 21) sorted by relevance

/external/tensorflow/tensorflow/compiler/jit/
Ddeadness_analysis.cc113 enum class Kind { kAnd, kOr, kNot, kAndRecurrence, kSymbol }; enumerator
160 Kind kind() const override { return Kind::kAnd; } in kind()
440 if (kind == Predicate::Kind::kAnd || kind == Predicate::Kind::kOr) { in SimplifyUsingDeMorgan()
559 pred_kind == Predicate::Kind::kAnd in MakeInternedAndOr()
573 is_and ? Predicate::Kind::kAnd : Predicate::Kind::kOr; in MakeAndOrImpl()
582 is_and ? Predicate::Kind::kOr : Predicate::Kind::kAnd; in MakeAndOrImpl()
856 if (backedge_predicate->kind() != Predicate::Kind::kAnd) { in DeduceStepPredicate()
/external/tensorflow/tensorflow/compiler/xla/service/
Dscatter_expander.cc204 MakeBinaryHlo(HloOpcode::kAnd, negative_index_check, oob_index_check)); in CheckIndexValidity()
211 MakeReduceHlo(valid_index, reduction_init, HloOpcode::kAnd, module)); in CheckIndexValidity()
Dhlo_opcode.h99 V(kAnd, "and", 2) \
Dinstruction_fusion.cc61 case HloOpcode::kAnd: in IsExpensive()
Dhlo_instruction.cc736 case HloOpcode::kAnd: in CreateBinary()
1431 case HloOpcode::kAnd: in CloneWithNewOperands()
1749 case HloOpcode::kAnd: in IdenticalSlowPath()
2160 case HloOpcode::kAnd: in IsElementwiseImpl()
2513 case HloOpcode::kAnd: in Visit()
Dalgebraic_simplifier_test.cc2850 builder.AddInstruction(HloInstruction::CreateBinary(r0pred, HloOpcode::kAnd, in TEST_F()
2855 EXPECT_EQ(root->opcode(), HloOpcode::kAnd); in TEST_F()
2871 builder.AddInstruction(HloInstruction::CreateBinary(r0pred, HloOpcode::kAnd, in TEST_F()
2876 EXPECT_EQ(root->opcode(), HloOpcode::kAnd); in TEST_F()
2892 builder.AddInstruction(HloInstruction::CreateBinary(r0pred, HloOpcode::kAnd, in TEST_F()
2897 EXPECT_EQ(root->opcode(), HloOpcode::kAnd); in TEST_F()
2913 builder.AddInstruction(HloInstruction::CreateBinary(r0pred, HloOpcode::kAnd, in TEST_F()
2918 EXPECT_EQ(root->opcode(), HloOpcode::kAnd); in TEST_F()
Dhlo_graph_dumper.cc926 case HloOpcode::kAnd: in GetInstructionColor()
Delemental_ir_emitter.cc1320 case HloOpcode::kAnd: in EmitIntegerBinaryOp()
2235 case HloOpcode::kAnd: in MakeElementGenerator()
Dalgebraic_simplifier.cc2499 remainder->shape(), HloOpcode::kAnd, abs_dividend, mask_amount)); in TryRemainderToAnd()
2519 return HloInstruction::CreateBinary(remainder->shape(), HloOpcode::kAnd, in TryRemainderToAnd()
Dlayout_assignment.cc1984 case HloOpcode::kAnd: in InstructionCanChangeLayout()
Dshape_inference.cc972 case HloOpcode::kAnd: in InferBinaryOpShape()
Dhlo_evaluator_test.cc261 TestBinaryOp(HloOpcode::kAnd, std::move(expected), std::move(lhs), in TEST_P()
Dhlo_parser.cc772 case HloOpcode::kAnd: in ParseInstructionRhs()
/external/vixl/src/aarch32/
Dconstants-aarch32.cc49 case kAnd: in ToCString()
Dconstants-aarch32.h129 kAnd, enumerator
Dmacro-assembler-aarch32.cc1006 (type == kAnd) || (type == kAnds) || (type == kAsr) || (type == kAsrs) || in Delegate()
Dassembler-aarch32.h643 (type == kAdds) || (type == kAnd) || (type == kAnds) || in Delegate()
Ddisasm-aarch32.cc1222 os().SetCurrentInstruction(kAnd, kBitwise); in and_()
1223 os() << ToCString(kAnd) << ConditionPrinter(it_block_, cond) << size; in and_()
Dassembler-aarch32.cc2780 Delegate(kAnd, &Assembler::and_, cond, size, rd, rn, operand); in and_()
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dir_emitter.cc1463 case HloOpcode::kAnd: in MatchReductionGenerator()
/external/tensorflow/tensorflow/compiler/xla/client/
Dxla_builder.cc3150 return lhs.builder()->BinaryOp(HloOpcode::kAnd, lhs, rhs, in And()