HomeSort by relevance Sort by last modified time
    Searched refs:operators (Results 76 - 100 of 331) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/contrib/lite/toco/graph_transformations/
drop_fake_quant.cc 29 const auto fakequant_it = model->operators.begin() + op_index;
ensure_bias_vectors.cc 45 auto* op = model->operators[op_index].get();
remove_trivial_concatenation_input.cc 36 const auto concat_it = model->operators.begin() + op_index;
remove_trivial_slice.cc 53 const auto reshape_it = model->operators.begin() + op_index;
resolve_batch_normalization.cc 29 auto bn_it = model->operators.begin() + op_index;
52 // Create the new Mul, Add operators
72 // Insert the new operators in the graph
73 auto add_it = model->operators.emplace(bn_it, add_op);
74 auto mul_it = model->operators.emplace(add_it, mul_op);
130 model->operators.erase(bn_it);
resolve_pad_attributes.cc 28 const auto pad_it = model->operators.begin() + op_index;
resolve_slice_attributes.cc 28 const auto slice_it = model->operators.begin() + op_index;
resolve_transpose_attributes.cc 28 const auto op_it = model->operators.begin() + op_index;
reorder_activation_functions.cc 29 const auto ac_it = model->operators.begin() + op_index;
40 if (exchange_it == model->operators.end()) return false;
96 // Finally, reorder operators. Note that this only works when there are no
resolve_constant_fake_quant.cc 28 const auto fakequant_it = model->operators.begin() + op_index;
72 model->operators.erase(fakequant_it);
identify_lstm_split_inputs.cc 30 auto op_it = model->operators.begin() + op_index;
153 model->operators.emplace(op_it, std::move(lstm_cell_op));
156 // Delete arrays and operators replaced by the LSTM cell operator. Order is
157 // important - DeleteArrayIfUnused() only succeeds if dependent operators
166 model->operators.erase(FindOp(*model, curr_op));
resolve_constant_fill.cc 45 const auto fill_it = model->operators.begin() + op_index;
115 model->operators.erase(fill_it);
resolve_constant_range.cc 23 const auto it = model->operators.begin() + op_index;
102 model->operators.erase(it);
resolve_constant_stack.cc 53 auto it = model->operators.begin() + op_index;
109 model->operators.erase(it);
resolve_multiply_by_zero.cc 55 const auto mul_it = model->operators.begin() + op_index;
147 model->operators.erase(mul_it);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toy.ml 8 (* Install standard binary operators.
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
toy.ml 8 (* Install standard binary operators.
  /external/tensorflow/tensorflow/python/kernel_tests/linalg/
linear_operator_composition_test.py 128 operators = [
133 linalg.LinearOperatorComposition(operators)
160 # Create 2 matrices/operators, A1, A2, which becomes A = A1 A2.
199 operators = [
203 operator = linalg.LinearOperatorComposition(operators)
207 operators = [
211 operator = linalg.LinearOperatorComposition(operators)
222 operators = [
226 operator = linalg.LinearOperatorComposition(operators)
  /frameworks/base/telephony/java/com/android/internal/telephony/
CellNetworkScanResult.java 47 public CellNetworkScanResult(int status, List<OperatorInfo> operators) {
49 mOperators = operators;
76 * @return the operators.
  /external/tensorflow/tensorflow/contrib/lite/toco/
tooling_util.cc 103 for (const auto& op : model.operators) {
133 for (auto it = model.operators.begin(); it != model.operators.end(); ++it) {
140 return model.operators.end();
145 for (auto it = model.operators.begin(); it != model.operators.end(); ++it) {
152 return model.operators.end();
157 return it == model.operators.end() ? nullptr : it->get();
163 for (auto it = model.operators.begin(); it != model.operators.end(); ++it)
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/toco/tflite/
import_test.cc 40 // conversions multiple times, and the conversion of operators is tested by
107 details::OperatorsTable operators; local
108 details::LoadOperatorsTable(*input_model_, &operators);
109 EXPECT_THAT(operators, ElementsAre("custom_op_one", "CONV_2D"));
136 // TODO(ahentz): still need tests for Operators and IOTensors.
  /prebuilts/go/darwin-x86/src/go/token/
token.go 34 // Operators and delimiters
227 // For operators, delimiters, and keywords the string is the actual
244 // Non-operators have lowest precedence, followed by operators
245 // starting with precedence 1 up to unary operators. The highest
250 LowestPrec = 0 // non-operators
300 // IsOperator returns true for tokens corresponding to operators and
  /prebuilts/go/linux-x86/src/go/token/
token.go 34 // Operators and delimiters
227 // For operators, delimiters, and keywords the string is the actual
244 // Non-operators have lowest precedence, followed by operators
245 // starting with precedence 1 up to unary operators. The highest
250 LowestPrec = 0 // non-operators
300 // IsOperator returns true for tokens corresponding to operators and
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue6671.go 7 // Issue 6671: Logical operators should produce untyped bool for untyped operands.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue6671.go 7 // Issue 6671: Logical operators should produce untyped bool for untyped operands.

Completed in 401 milliseconds

1 2 34 5 6 7 8 91011>>