onnxruntime/onnxruntime/python/numpy_helper.h

12 lines
342 B
C
Raw Normal View History

2021-12-20 04:54:29 +00:00
// 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