Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SubGraphT (0.2 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

    }
    
    // Returns indices of the given tensors in the subgraph. Returns error if a
    // tensor name cannot be found in the subgraph.
    StatusOr<std::vector<int>> GetTensorIndices(
        const tflite::SubGraphT& subgraph,
        const std::vector<std::string>& tensor_names) {
      absl::flat_hash_map<std::string, int> name_to_index;
      for (const auto& index_and_tensor : llvm::enumerate(subgraph.tensors)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema_generated.h

    struct SubGraphT : public ::flatbuffers::NativeTable {
      typedef SubGraph TableType;
      std::vector<std::unique_ptr<tflite::TensorT>> tensors{};
      std::vector<int32_t> inputs{};
      std::vector<int32_t> outputs{};
      std::vector<std::unique_ptr<tflite::OperatorT>> operators{};
      std::string name{};
      SubGraphT() = default;
      SubGraphT(const SubGraphT &o);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

          }
        }
        EXPECT_THAT(quantization_params->zero_point,
                    Eq(expected_quantization_params->zero_point));
      }
    }
    
    TensorT* FindMatchingExpectedTensor(const SubGraphT& expected_graph,
                                        const ModelT& expected_model,
                                        const ModelT& quant_model,
                                        const OperatorT& quant_op, int 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)
Back to top