Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for OpMetadata (0.11 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter_test.cc

             ++j) {
          auto result_op_metadata =
              result_subgraph_metadata->op_metadata()->GetAs<OpMetadata>(j);
          auto expected_op_metadata =
              expected_subgraph_metadata->op_metadata()->GetAs<OpMetadata>(j);
          EXPECT_EQ(result_op_metadata->index(), expected_op_metadata->index());
          EXPECT_EQ(result_op_metadata->hardware(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter.cc

        const std::map<std::string, uint8_t>& hardware_map, mlir::Region* Region,
        flatbuffers::FlatBufferBuilder* builder) {
      auto& block = Region->front();
      int index = 0;
      std::vector<flatbuffers::Offset<tflite::OpMetadata>> ops;
      for (auto& inst : block) {
        // Const nodes are mapped to const vectors in flatbuffer, so skip.
        if (IsConst(&inst)) continue;
    
        // The model may contain quant stats op which is unrelevant to the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top