Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IterateFlatBuffer (0.2 sec)

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

        if (i) s += ", ";
      }
    };
    
    void ToString(const std::string& serialized_model) {
      IndentedToStringVisitor visitor(/*delimiter=*/"\n", /*indent=*/"  ");
      IterateFlatBuffer(reinterpret_cast<const uint8_t*>(serialized_model.c_str()),
                        ModelTypeTable(), &visitor);
      std::cout << visitor.s << "\n\n";
    }
    
    }  // end namespace
    }  // end namespace tflite
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 15:52:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top