Spaces:
Running
Running
/* | |
* SPDX-License-Identifier: Apache-2.0 | |
*/ | |
namespace ONNX_NAMESPACE { | |
template <typename T> | |
TensorProto ToTensor(const T& value); | |
template <typename T> | |
TensorProto ToTensor(const std::vector<T>& values); | |
template <typename T> | |
const std::vector<T> ParseData(const TensorProto* tensor_proto); | |
} // namespace ONNX_NAMESPACE | |