Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for mutable_operator_ (0.22 sec)

  1. tensorflow/compiler/mlir/lite/metrics/types_util.cc

      if (!pass_name.empty()) {
        error.set_subcomponent(pass_name);
      }
    
      if (!error_message.empty()) {
        error.set_error_message(error_message);
      }
    
      if (!op_name.empty()) {
        error.mutable_operator_()->set_name(op_name);
      }
    
      error.set_error_code(error_code);
      LocationExtractor(location).Extract(&error);
      return error;
    }
    
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        return ret;
      }
    
      auto mutable_subgraphs = mutable_model->mutable_subgraphs();
      for (auto msubgraph : *mutable_subgraphs) {
        auto operators = msubgraph->mutable_operators();
        for (auto op : *operators) {
          auto opcode_idx = op->opcode_index();
          auto opcodes = mutable_model->operator_codes();
          auto opcode = (*opcodes)[opcode_idx]->builtin_code();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top