Searched refs:PRED (Results 1 - 25 of 56) sorted by relevance

123

/external/tensorflow/tensorflow/compiler/xla/client/lib/
H A Darithmetic.cc37 if (type == PRED) {
94 "and", PRED, builder,
101 "or", PRED, builder,
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DShrinkWrapping.cpp245 MachineBasicBlock* PRED = *PI; local
246 if (PRED != MBB)
247 predecessors.push_back(PRED);
253 MachineBasicBlock* PRED = predecessors[i]; local
255 AvailIn[MBB] = AvailOut[PRED];
257 PRED = predecessors[i];
258 AvailIn[MBB] &= AvailOut[PRED];
571 MachineBasicBlock* PRED = *PI; local
572 if (PRED->succ_size() > 1) {
612 MachineBasicBlock* PRED local
685 MachineBasicBlock* PRED = *PI; local
691 MachineBasicBlock* PRED = predecessors[i]; local
[all...]
/external/tensorflow/tensorflow/compiler/xla/
H A Dprimitive_util.h54 return PRED;
151 struct PrimitiveTypeToNative<PRED> {
H A Dprimitive_util.cc43 case PRED:
H A Dshape_util_test.cc187 Shape shape_2 = ShapeUtil::MakeShape(PRED, {3, 2});
193 {ShapeUtil::MakeShape(F32, {3, 2}), ShapeUtil::MakeShape(PRED, {4, 5})});
195 {ShapeUtil::MakeShape(F32, {3, 2}), ShapeUtil::MakeShape(PRED, {4, 5})});
209 {ShapeUtil::MakeShape(PRED, {4, 5}), ShapeUtil::MakeShape(F32, {3, 2})});
211 {ShapeUtil::MakeShape(F32, {3, 2}), ShapeUtil::MakeShape(PRED, {4, 5})});
226 {ShapeUtil::MakeShape(PRED, {4, 5}), ShapeUtil::MakeShape(F32, {3, 2})});
228 {ShapeUtil::MakeShape(PRED, {4, 5}), ShapeUtil::MakeShape(S32, {3, 2})});
235 {ShapeUtil::MakeShape(PRED, {4, 5}), ShapeUtil::MakeShape(F32, {3, 2})});
237 {ShapeUtil::MakeShape(PRED, {4, 5}), ShapeUtil::MakeShape(F32, {4, 2})});
509 ShapeUtil::MakeShape(PRED, {3
[all...]
H A Dliteral_util.cc342 COPY_ELEMENTS(PRED, bool);
488 case PRED:
522 case PRED:
561 case PRED:
603 case PRED:
649 case PRED:
672 ShapeUtil::MakeShape(PRED, {static_cast<int64>(values.bits())}));
681 CHECK_EQ(shape().element_type(), PRED);
887 case PRED:
928 case PRED
[all...]
/external/tensorflow/tensorflow/compiler/tf2xla/
H A Dtype_util.cc26 *type = xla::PRED;
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dcall_inliner_test.cc82 const Shape pred = ShapeUtil::MakeShape(PRED, {});
121 const Shape pred = ShapeUtil::MakeShape(PRED, {});
H A Dflatten_call_graph_test.cc76 // Build and return a computation which takes a scalar and returns a PRED
85 ShapeUtil::MakeShape(PRED, {}), HloOpcode::kGt, param0, zero));
158 0, ShapeUtil::MakeShape(PRED, {}), "param0"));
162 HloInstruction::CreateBinary(ShapeUtil::MakeShape(PRED, {}),
173 ShapeUtil::MakeShape(PRED, {}), cond_computation, cond_computation,
H A Dhlo_scheduling_test.cc49 // Free cond_param[] (16 bytes), Alloc PRED[] (1 byte)
51 HloInstruction::CreateBinary(ShapeUtil::MakeShape(PRED, {}),
H A Dreshape_mover_test.cc268 0, ShapeUtil::MakeShape(PRED, {3, 2}), "pred"));
405 auto pred_shape = ShapeUtil::MakeShape(PRED, {8, 7});
411 2, ShapeUtil::MakeShape(PRED, {1, 8, 1, 7}), "pred"));
438 auto pred_shape = ShapeUtil::MakeShape(PRED, {});
444 2, ShapeUtil::MakeShape(PRED, {1, 1, 1}), "pred"));
H A Dwhile_util.cc33 // This is needed so that the root instruction is shaped as a PRED[] -- we
46 HloInstruction::CreateCall(ShapeUtil::MakeShape(PRED, {}),
H A Dwhile_loop_simplifier_test.cc34 // returns PRED[]{true}. This is useful as a dummy loop condition.
61 ShapeUtil::MakeShape(PRED, {}), HloOpcode::kLt, loop_induction_var,
193 ShapeUtil::MakeShape(PRED, {}), HloOpcode::kLt, param,
361 ShapeUtil::MakeShape(PRED, {}), HloOpcode::kEq,
H A Dhlo_ordering_test.cc169 // %convert = Convert<PRED>(%param)
189 ShapeUtil::MakeShape(xla::PRED, {}), cond_param));
231 // %convert = Convert<PRED>(%param)
252 ShapeUtil::MakeShape(xla::PRED, {}), cond_param));
H A Dshape_inference_test.cc40 const Shape pred_ = ShapeUtil::MakeShape(PRED, {});
126 auto predarray = ShapeUtil::MakeShape(PRED, {64, 48});
144 HasSubstr("pred operand must have PRED"));
147 TernaryOperation::TRIOP_SELECT, ShapeUtil::MakeShape(PRED, {64}),
160 HasSubstr("pred operand must have PRED element type"));
365 HasSubstr("select function must have rank-0 PRED"));
818 ASSERT_TRUE(ShapeUtil::Equal(ShapeUtil::MakeShape(PRED, {10}),
827 ASSERT_TRUE(ShapeUtil::Equal(ShapeUtil::MakeShape(PRED, {10}),
836 ASSERT_TRUE(ShapeUtil::Equal(ShapeUtil::MakeShape(PRED, {10}),
845 ASSERT_TRUE(ShapeUtil::Equal(ShapeUtil::MakeShape(PRED, {1
[all...]
H A Delemental_ir_emitter.cc194 from_type == PRED); local
207 op->operand(0)->shape().element_type() == PRED) {
222 CHECK(primitive_util::IsIntegralType(from_type) || from_type == PRED); local
251 from_type == PRED) {
317 if (type == PRED) {
318 // It is not sufficient to just call CreateNot() here because a PRED
324 llvm_ir::PrimitiveTypeToIrType(PRED, module_));
452 result_i1, llvm_ir::PrimitiveTypeToIrType(PRED, module_));
664 operand_type == PRED) {
H A Dliveness_util_test.cc151 Shape out_shape = ShapeUtil::MakeShape(PRED, {8});
387 ShapeUtil::MakeShape(PRED, {}), HloOpcode::kEq, data, data));
/external/webp/src/dsp/
H A Dfilters_mips_dsp_r2.c109 #define DO_PREDICT_LINE_VERTICAL(SRC, PRED, DST, LENGTH, INVERSE) do { \
111 const uint8_t* ppred = (uint8_t*)(PRED); \
168 #define PREDICT_LINE_ONE_PASS(SRC, PRED, DST) do { \
176 : [pred]"r"((PRED)), [dst]"r"((DST)), [src]"r"((SRC)) \
/external/libbrillo/brillo/dbus/
H A Ddata_serialization.h713 template<typename KEY, typename VALUE, typename PRED, typename ALLOC>
716 const std::map<KEY, VALUE, PRED, ALLOC>& value) {
732 template<typename KEY, typename VALUE, typename PRED, typename ALLOC>
735 std::map<KEY, VALUE, PRED, ALLOC>* value) {
767 typename PRED,
776 const std::map<KEY, VALUE, PRED, ALLOC>& value) {
780 std::map<KEY, VALUE, PRED, ALLOC>* value) {
786 template<typename KEY, typename VALUE, typename PRED, typename ALLOC>
787 struct DBusMapType<false, KEY, VALUE, PRED, ALLOC> : public Unsupported {};
791 template<typename KEY, typename VALUE, typename PRED, typenam
[all...]
/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
H A Dtuple_ops.cc42 llvm::ConstantInt::get(PrimitiveTypeToIrType(PRED, module), 0),
/external/tensorflow/tensorflow/compiler/xla/tests/
H A Dconditional_test.cc262 Shape r0bool = ShapeUtil::MakeShape(PRED, {});
462 Shape r0bool = ShapeUtil::MakeShape(PRED, {});
482 Shape r0bool = ShapeUtil::MakeShape(PRED, {});
504 Shape r0bool = ShapeUtil::MakeShape(PRED, {});
534 Shape r0bool = ShapeUtil::MakeShape(PRED, {});
/external/tensorflow/tensorflow/compiler/xla/python/
H A Dnumpy_bridge.cc28 case PRED:
62 return PRED;
/external/tensorflow/tensorflow/compiler/tf2xla/lib/
H A Dutil.cc92 case xla::PRED:
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
H A Dwhile_transformer_test.cc39 condition_result_shape_(ShapeUtil::MakeShape(PRED, {})) {}
/external/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp337 for (const BasicBlock *PRED : make_range(pred_begin(BB), pred_end(BB))) {
338 if (!PDT->dominates(BB, PRED))

Completed in 517 milliseconds

123