15 lines
345 B
C
15 lines
345 B
C
|
|
// sherpa-onnx/python/csrc/sherpa-onnx.h
|
||
|
|
//
|
||
|
|
// Copyright (c) 2023 Xiaomi Corporation
|
||
|
|
|
||
|
|
#ifndef SHERPA_ONNX_PYTHON_CSRC_SHERPA_ONNX_H_
|
||
|
|
#define SHERPA_ONNX_PYTHON_CSRC_SHERPA_ONNX_H_
|
||
|
|
|
||
|
|
#include "pybind11/numpy.h"
|
||
|
|
#include "pybind11/pybind11.h"
|
||
|
|
#include "pybind11/stl.h"
|
||
|
|
|
||
|
|
namespace py = pybind11;
|
||
|
|
|
||
|
|
#endif // SHERPA_ONNX_PYTHON_CSRC_SHERPA_ONNX_H_
|