#ifndef COMMON_TYPES_H_ #define COMMON_TYPES_H_ #include "Halide.h" #include "onnx_converter.h" struct HalideModel { std::shared_ptr model; std::shared_ptr rep; std::vector input_names; std::unordered_map input_types; std::vector output_names; std::vector output_types; }; #endif