onnxruntime/onnxruntime/python/numpy_helper.h
2021-12-19 20:54:29 -08:00

12 lines
No EOL
342 B
C++

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#pragma once
#include <numpy/arrayobject.h>
namespace onnxruntime {
namespace python {
constexpr bool IsNumericNumpyType(int npy_type) {
return npy_type < NPY_OBJECT || npy_type == NPY_HALF;
}
} // namespace python
} // namespace onnxruntime