onnxruntime/onnxruntime/python/numpy_helper.h
Jian Chen 1ad2c0a4b2
fix Window_CI in Github Action (#21070)
### Description
fix Window_CI in Github Action
2024-06-18 23:14:08 -07:00

19 lines
No EOL
463 B
C++

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