HomeSort by relevance Sort by last modified time
    Searched refs:is_min (Results 1 - 13 of 13) sorted by null

  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
index_ops.h 28 explicit XlaArgMinMaxOp(OpKernelConstruction* ctx, bool is_min);
index_ops.cc 34 XlaArgMinMaxOp::XlaArgMinMaxOp(OpKernelConstruction* ctx, bool is_min)
35 : XlaOpKernel(ctx), is_min_(is_min) {}
82 : XlaArgMinMaxOp(ctx, /*is_min=*/false) {}
95 : XlaArgMinMaxOp(ctx, /*is_min=*/true) {}
  /art/compiler/optimizing/
induction_var_range.h 221 bool is_min) const;
225 bool is_min) const;
229 bool is_min) const;
233 bool is_min) const;
237 bool is_min) const;
242 bool is_min) const;
247 bool is_min) const;
257 bool is_min) const;
262 bool is_min) const;
268 Value MergeVal(Value v1, Value v2, bool is_min) const
    [all...]
induction_var_range.cc 233 *min_val = SimplifyMin(GetVal(info, trip, in_body, /* is_min */ true));
234 *max_val = SimplifyMax(GetVal(info, trip, in_body, /* is_min */ false), chase_hint);
239 *min_val = SimplifyMin(GetVal(info, trip, in_body, /* is_min */ true));
448 Value min_val = GetVal(info, nullptr, /* in_body */ true, /* is_min */ true);
449 Value max_val = GetVal(info, nullptr, /* in_body */ true, /* is_min */ false);
548 bool is_min) const {
560 if (!is_min && stride_value == 1) {
571 return GetVal(&cancelled_trip, trip, in_body, is_min);
573 } else if (is_min && stride_value == -1) {
586 return SubValue(Value(0), GetVal(&cancelled_trip, trip, in_body, !is_min));
    [all...]
intrinsics_arm_vixl.cc 512 static void GenMinMaxFloat(HInvoke* invoke, bool is_min, CodeGeneratorARMVIXL* codegen) {
540 vixl32::ConditionType cond = is_min ? gt : lt;
554 if (is_min) {
586 GenMinMaxFloat(invoke, /* is_min */ true, codegen_);
595 GenMinMaxFloat(invoke, /* is_min */ false, codegen_);
598 static void GenMinMaxDouble(HInvoke* invoke, bool is_min, CodeGeneratorARMVIXL* codegen) {
623 vixl32::ConditionType cond = is_min ? gt : lt;
635 if (!is_min) {
654 GenMinMaxDouble(invoke, /* is_min */ true , codegen_);
662 GenMinMaxDouble(invoke, /* is_min */ false, codegen_)
    [all...]
intrinsics_mips.cc 862 bool is_min,
899 if (is_min) {
922 if (is_min) {
973 if (is_min) {
    [all...]
induction_var_range_test.cc 255 return range_.GetVal(info, trip, /* in_body */ true, /* is_min */ true);
260 return range_.GetVal(info, trip, /* in_body */ true, /* is_min */ false);
265 bool is_min) {
266 return range_.GetMul(info1, info2, nullptr, /* in_body */ true, is_min);
271 bool is_min) {
272 return range_.GetDiv(info1, info2, nullptr, /* in_body */ true, is_min);
    [all...]
intrinsics_x86.cc 491 bool is_min,
535 __ j(is_min ? Condition::kAbove : Condition::kBelow, &op2_label);
536 __ j(is_min ? Condition::kBelow : Condition::kAbove, &done);
539 if (is_min) {
615 /* is_min */ true,
627 /* is_min */ true,
639 /* is_min */ false,
651 /* is_min */ false,
657 static void GenMinMax(LocationSummary* locations, bool is_min, bool is_long,
693 Condition cond = is_min ? Condition::kGreaterEqual : Condition::kLess
    [all...]
intrinsics_mips64.cc 543 bool is_min,
578 if (is_min) {
601 if (is_min) {
625 GenMinMaxFP(invoke->GetLocations(), /* is_min */ true, DataType::Type::kFloat64, GetAssembler());
634 GenMinMaxFP(invoke->GetLocations(), /* is_min */ true, DataType::Type::kFloat32, GetAssembler());
643 GenMinMaxFP(invoke->GetLocations(), /* is_min */ false, DataType::Type::kFloat64, GetAssembler());
652 GenMinMaxFP(invoke->GetLocations(), /* is_min */ false, DataType::Type::kFloat32, GetAssembler());
656 bool is_min,
692 if (is_min) {
701 if (is_min) {
    [all...]
intrinsics_x86_64.cc 336 bool is_min,
379 __ j(is_min ? Condition::kAbove : Condition::kBelow, &op2_label);
380 __ j(is_min ? Condition::kBelow : Condition::kAbove, &done);
383 if (is_min) {
435 invoke->GetLocations(), /* is_min */ true, /* is_double */ true, GetAssembler(), codegen_);
444 invoke->GetLocations(), /* is_min */ true, /* is_double */ false, GetAssembler(), codegen_);
453 invoke->GetLocations(), /* is_min */ false, /* is_double */ true, GetAssembler(), codegen_);
462 invoke->GetLocations(), /* is_min */ false, /* is_double */ false, GetAssembler(), codegen_);
465 static void GenMinMax(LocationSummary* locations, bool is_min, bool is_long,
494 __ cmov(is_min ? Condition::kGreater : Condition::kLess, out, op2, is_long)
    [all...]
intrinsics_arm64.cc 595 bool is_min,
605 if (is_min) {
625 GenMinMaxFP(invoke->GetLocations(), /* is_min */ true, /* is_double */ true, GetVIXLAssembler());
633 GenMinMaxFP(invoke->GetLocations(), /* is_min */ true, /* is_double */ false, GetVIXLAssembler());
641 GenMinMaxFP(invoke->GetLocations(), /* is_min */ false, /* is_double */ true, GetVIXLAssembler());
650 invoke->GetLocations(), /* is_min */ false, /* is_double */ false, GetVIXLAssembler());
654 bool is_min,
666 __ Csel(out_reg, op1_reg, op2_reg, is_min ? lt : gt);
674 GenMinMax(invoke->GetLocations(), /* is_min */ true, /* is_long */ false, GetVIXLAssembler());
682 GenMinMax(invoke->GetLocations(), /* is_min */ true, /* is_long */ true, GetVIXLAssembler())
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_helpers.cc 37 DataType output_type, int axis, bool is_min,
41 if (is_min) {
189 axis, /*is_min=*/false, argmax);
199 axis, /*is_min=*/true, argmin);
  /external/webrtc/talk/media/base/
videoadapter.cc 535 bool is_min = IsMinimumFormat(cpu_desired_num_pixels_); local
536 if (is_min) {

Completed in 762 milliseconds