MLCompilerBridge
Tools for streamlining communication with ML models for compiler optimizations.
Loading...
Searching...
No Matches
utils.h
Go to the documentation of this file.
1//=== MLModelRunner/ONNXModelRunner/utils.h - C++ ------------------------===//
2//
3// Part of the MLCompilerBridge Project, under the Apache License v2.0 with LLVM
4// Exceptions. See the LICENSE file for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef ONNX_MODELRUNNER_UTILS_H
10#define ONNX_MODELRUNNER_UTILS_H
11
12#include "llvm/ADT/SmallVector.h"
13
14namespace MLBridge {
15typedef llvm::SmallVector<float, 300> Observation;
16
17} // namespace MLBridge
18
19#endif // ONNX_MODELRUNNER_UTILS_H
llvm::SmallVector< float, 300 > Observation
Definition utils.h:15