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

  /art/compiler/optimizing/
induction_var_range.cc 124 if (v.is_known && v.a_constant == 1 && v.b_constant <= 0) {
128 return InductionVarRange::Value(v.b_constant);
143 return InductionVarRange::Value(v.instruction->InputAt(0), 1, v.b_constant);
148 return InductionVarRange::Value(suitable, 1, v.b_constant);
170 return (IsConstantValue(v) && min <= v.b_constant && v.b_constant <= max)
451 IsConstantValue(max_val) && min_val.b_constant <= max_val.b_constant) {
452 if ((request == kExact && min_val.b_constant == max_val.b_constant) || request == kAtMost)
    [all...]
induction_var_range.h 46 Value() : instruction(nullptr), a_constant(0), b_constant(0), is_known(false) {}
48 : instruction(a != 0 ? i : nullptr), a_constant(a), b_constant(b), is_known(true) {}
50 // Representation as: a_constant x instruction + b_constant.
53 int32_t b_constant; member in struct:art::InductionVarRange::Value
bounds_check_elimination.cc     [all...]
induction_var_range_test.cc 46 EXPECT_EQ(v1.b_constant, v2.b_constant);
    [all...]
  /external/tensorflow/tensorflow/tools/quantization/
quantize_graph_test.py 53 b_constant_name = "b_constant"
60 b_constant = quantize_graph.create_constant_node(
62 float_graph_def.node.extend([b_constant])
353 b_constant_name = "b_constant"
366 b_constant = quantize_graph.create_constant_node(
371 float_graph_def.node.extend([b_constant])
457 b_constant_name = "b_constant"
476 b_constant = quantize_graph.create_constant_node(
478 graph_def.node.extend([b_constant])
499 b_constant = quantize_graph.create_constant_node
    [all...]
  /external/tensorflow/tensorflow/python/framework/
graph_util_test.py 314 b_constant_name = "b_constant"
330 b_constant = self.create_constant_node_def(
332 graph_def.node.extend([b_constant])
348 b_constant = self.create_constant_node_def(
350 expected_output.node.extend([b_constant])
  /external/tensorflow/tensorflow/python/tools/
optimize_for_inference_test.py 73 b_constant_name = "b_constant"
98 b_constant = self.create_constant_node_def(
100 graph_def.node.extend([b_constant])
120 b_constant = self.create_constant_node_def(
122 expected_output.node.extend([b_constant])
  /external/tensorflow/tensorflow/compiler/xla/tests/
array_elementwise_ops_test.cc 208 auto b_constant = builder.Parameter(1, a_literal->shape(), "b_param"); local
211 auto sum1 = builder.Add(a_constant, b_constant);
213 auto sum3 = builder.Add(a_param, b_constant);
    [all...]

Completed in 277 milliseconds