Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for subgraph_idx (0.18 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      ASSERT_THAT(model.subgraphs, SizeIs(expected_model.subgraphs.size()));
      for (size_t subgraph_idx = 0; subgraph_idx < model.subgraphs.size();
           subgraph_idx++) {
        const auto graph = model.subgraphs[subgraph_idx].get();
        const auto expected_graph = expected_model.subgraphs[subgraph_idx].get();
        for (auto& op : graph->operators) {
          for (int idx = 0; idx < op->inputs.size(); idx++) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        uint32_t subgraph_idx = opts->update_computation_subgraph_index;
    
        if (subgraph_idx >= func_names.size()) {
          return absl::AbortedError(
              absl::StrCat("subgraph with index not found: ", subgraph_idx));
        }
        mlir::FlatSymbolRefAttr subgraph_attr = mlir::SymbolRefAttr::get(
            builder.getContext(), func_names.at(subgraph_idx));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
Back to top