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

  /external/tensorflow/tensorflow/lite/toco/tflite/
export.h 42 const std::map<OperatorType, std::unique_ptr<BaseOperator>>& ops_by_type);
60 const std::map<OperatorType, std::unique_ptr<BaseOperator>>& ops_by_type) {
64 auto status = Export(model, output_file_contents, params, ops_by_type);
92 const std::map<OperatorType, std::unique_ptr<BaseOperator>>& ops_by_type,
167 const std::map<OperatorType, std::unique_ptr<BaseOperator>>& ops_by_type,
export.cc 110 const std::map<OperatorType, std::unique_ptr<BaseOperator>>& ops_by_type,
118 if (ops_by_type.count(op.type) != 0) {
119 version_ = ops_by_type.at(op.type)->GetVersion(op_signature);
120 name = ops_by_type.at(op.type)->name();
189 const std::map<OperatorType, std::unique_ptr<BaseOperator>>& ops_by_type,
195 keys.insert(OperatorKey(op_signature, ops_by_type, enable_select_tf_ops));
289 const std::map<OperatorType, std::unique_ptr<BaseOperator>>& ops_by_type,
309 op_signature, ops_by_type, params.enable_select_tf_ops);
332 const std::map<OperatorType, std::unique_ptr<BaseOperator>>& ops_by_type,
357 const auto key = details::OperatorKey(op_signature, ops_by_type,
430 const auto ops_by_type = BuildOperatorByTypeMap(params.enable_select_tf_ops); local
    [all...]
export_test.cc 204 const auto ops_by_type = BuildOperatorByTypeMap(); local
205 details::LoadOperatorsMap(input_model_, &operators, ops_by_type, false);
431 const auto ops_by_type = BuildFakeOperatorByTypeMap(); local
432 details::LoadOperatorsMap(input_model_, &operators, ops_by_type, false);
443 const auto ops_by_type = BuildFakeOperatorByTypeMap(); local
444 details::LoadOperatorsMap(input_model_, &operators, ops_by_type, false);
456 const auto ops_by_type = BuildFakeOperatorByTypeMap(); local
457 details::LoadOperatorsMap(input_model_, &operators, ops_by_type, false);
471 const auto ops_by_type = BuildFakeOperatorByTypeMap(); local
472 Export(input_model_, true, false, &result, ops_by_type);
509 const auto ops_by_type = BuildOperatorByTypeMap(); local
529 const auto ops_by_type = BuildOperatorByTypeMap(); local
545 const auto ops_by_type = BuildOperatorByTypeMap(); local
559 const auto ops_by_type = BuildOperatorByTypeMap(); local
589 const auto ops_by_type = BuildOperatorByTypeMap(); local
607 const auto ops_by_type = BuildOperatorByTypeMap(); local
628 const auto ops_by_type = BuildOperatorByTypeMap(); local
    [all...]
  /external/tensorflow/tensorflow/lite/toco/
tooling_util.cc 468 std::unordered_multiset<OperatorType> ops_by_type; local
470 ops_by_type.insert(op->type);
472 auto it = ops_by_type.begin();
473 while (it != ops_by_type.end()) {
474 int count = ops_by_type.count(*it);
1224 std::unordered_multiset<OperatorType> ops_by_type; local
    [all...]

Completed in 118 milliseconds