HomeSort by relevance Sort by last modified time
    Searched defs:instr2 (Results 1 - 9 of 9) sorted by null

  /external/tensorflow/tensorflow/compiler/xla/service/
multi_output_fusion.h 63 // Test if instr1 and instr2 have the compatible shapes that can be legally
66 HloInstruction* instr2) = 0;
71 // This function estimates the savings by merging instr1 and instr2 into one
73 virtual int64 GetProfit(HloInstruction* instr1, HloInstruction* instr2) = 0;
78 // Test if it's legal to fuse instr1 and instr2 into one fusion instruction.
79 virtual bool LegalToFuse(HloInstruction* instr1, HloInstruction* instr2);
81 // Fuse HloInstrctuion instr1 and instr2 and return the fused instruction.
83 virtual HloInstruction* Fuse(HloInstruction* instr1, HloInstruction* instr2);
94 // Update the reachability map after fusing instr1 and instr2.
96 HloInstruction* instr1, HloInstruction* instr2,
142 HloInstruction* instr2; member in struct:xla::MultiOutputFusion::ToBeFused
    [all...]
multi_output_fusion.cc 114 HloInstruction* instr2) {
116 HloInstruction* fused = instr2;
150 void MultiOutputFusion::Update(HloInstruction* instr1, HloInstruction* instr2) {
152 HloInstruction* fused = instr2;
154 fusion = instr2;
217 HloInstruction* instr2) {
218 if (instr1 == instr2) {
227 if (instr1->user_count() == 0 || instr2->user_count() == 0) {
246 multioutput_user_is_not_gte(instr2)) {
250 if (is_connected(instr1, instr2)) {
298 HloInstruction* instr2 = candidate.instr2; local
    [all...]
hlo_instruction_test.cc 1699 auto instr2 = instr1->Clone(); local
1711 auto instr2 = instr1->Clone(); local
    [all...]
  /external/v8/src/mips/
assembler-mips-inl.h 145 Instr instr2 = Assembler::instr_at(pc + 1 * kInstrSize); local
147 DCHECK(Assembler::IsOri(instr2) || Assembler::IsJicOrJialc(instr2));
149 instr2 &= ~kImm16Mask;
152 if (Assembler::IsJicOrJialc(instr2)) {
158 Assembler::instr_at_put(pc + 1 * kInstrSize, instr2 | jic_offset_u);
163 Assembler::instr_at_put(pc + 1 * kInstrSize, instr2 | (imm & kImm16Mask));
226 Instr instr2 = Assembler::instr_at(pc_ + 1 * kInstrSize); local
228 DCHECK(Assembler::IsOri(instr2) || Assembler::IsJicOrJialc(instr2));
    [all...]
assembler-mips.cc 892 Instr instr2 = instr_at(pos + 1 * kInstrSize); local
893 DCHECK(IsOri(instr2) || IsJicOrJialc(instr2));
895 if (IsJicOrJialc(instr2)) {
896 imm = CreateTargetAddress(instr1, instr2);
899 imm |= (instr2 & static_cast<int32_t>(kImm16Mask));
1020 Instr instr2 = instr_at(pos + 1 * kInstrSize); local
1021 DCHECK(IsOri(instr2) || IsJicOrJialc(instr2));
1024 DCHECK(IsLui(instr1) && (IsJicOrJialc(instr2) || IsOri(instr2)))
3755 Instr instr2 = instr_at(pc + 1 * kInstrSize); local
3967 Instr instr2 = instr_at(pc + kInstrSize); local
4006 Instr instr2 = instr_at(pc + kInstrSize); local
    [all...]
  /external/v8/src/ppc/
assembler-ppc-inl.h 280 Instr instr2 = instr_at(pc + kInstrSize); local
282 if (IsLis(instr1) && IsOri(instr2)) {
288 static_cast<uint32_t>(instr2 & kImm16Mask));
295 (instr2 & kImm16Mask));
398 Instr instr2 = instr_at(pc + kInstrSize); local
401 instr2 &= ~kImm16Mask;
402 instr2 |= (lo_word & kImm16Mask);
404 instr_at_put(pc + kInstrSize, instr2);
463 Instr instr2 = instr_at(pc + kInstrSize); local
465 if (IsLis(instr1) && IsOri(instr2)) {
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_compiler_test.cc 708 auto instr2 = c2.instructions(j); local
712 instr2.clear_name();
713 instr2.clear_id();
714 instr2.clear_operand_ids();
720 LOG(INFO) << "instr2 = " << instr2.DebugString();
722 instr2.AppendPartialToString(&str2);
    [all...]
  /external/icu/icu4c/source/test/intltest/
regextst.cpp 750 UnicodeString instr2 = "not abc"; local
761 m1->reset(instr2);
763 REGEX_ASSERT(m1->input() == instr2);
805 m1->reset(instr2);
846 m1->reset(instr2); // "not abc"
    [all...]
  /art/compiler/utils/mips/
assembler_mips.cc 958 uint32_t instr2 = buffer_.Load<uint32_t>(pos2); local
4360 uint32_t instr2 = buffer_.Load<uint32_t>(pos2); local
    [all...]

Completed in 492 milliseconds