mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
Summary: - use Half instead of half in THC - clean up TH_float2half, TH_half2float, etc. conversions Pull Request resolved: https://github.com/pytorch/pytorch/pull/11322 Differential Revision: D9799553 Pulled By: li-roy fbshipit-source-id: 9aa3e003bff73d9df6224a393f3ec0624b1f44ed
181 lines
8.5 KiB
C++
181 lines
8.5 KiB
C++
#ifndef THP_UTILS_H
|
|
#define THP_UTILS_H
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <type_traits>
|
|
#include <ATen/ATen.h>
|
|
#include "torch/csrc/utils/object_ptr.h"
|
|
#include "torch/csrc/utils/python_numbers.h"
|
|
#include "torch/csrc/utils/python_compat.h"
|
|
|
|
#ifdef USE_CUDA
|
|
#include <THC/THC.h>
|
|
#endif
|
|
|
|
#define THPUtils_(NAME) TH_CONCAT_4(THP,Real,Utils_,NAME)
|
|
|
|
#define THPUtils_typename(obj) (Py_TYPE(obj)->tp_name)
|
|
|
|
#if defined(__GNUC__) || defined(__ICL) || defined(__clang__)
|
|
#define THP_EXPECT(x, y) (__builtin_expect((x), (y)))
|
|
#else
|
|
#define THP_EXPECT(x, y) (x)
|
|
#endif
|
|
|
|
#if PY_MAJOR_VERSION == 2
|
|
#define THPUtils_checkReal_FLOAT(object) \
|
|
(PyFloat_Check(object) || PyLong_Check(object) || PyInt_Check(object))
|
|
|
|
#define THPUtils_unpackReal_FLOAT(object) \
|
|
(PyFloat_Check(object) ? PyFloat_AsDouble(object) : \
|
|
PyLong_Check(object) ? PyLong_AsLongLong(object) : \
|
|
PyInt_Check(object) ? PyInt_AsLong(object) : \
|
|
(throw std::runtime_error("Could not parse real"), 0))
|
|
|
|
#define THPUtils_checkReal_INT(object) \
|
|
(PyLong_Check(object) || PyInt_Check(object))
|
|
|
|
#define THPUtils_unpackReal_INT(object) \
|
|
(PyLong_Check(object) ? PyLong_AsLongLong(object) : \
|
|
PyInt_Check(object) ? PyInt_AsLong(object) : \
|
|
(throw std::runtime_error("Could not parse real"), 0))
|
|
#else /* PY_MAJOR_VERSION == 2 */
|
|
#define THPUtils_checkReal_FLOAT(object) \
|
|
(PyFloat_Check(object) || PyLong_Check(object))
|
|
|
|
#define THPUtils_unpackReal_FLOAT(object) \
|
|
(PyFloat_Check(object) ? PyFloat_AsDouble(object) : \
|
|
PyLong_Check(object) ? PyLong_AsLongLong(object) : \
|
|
(throw std::runtime_error("Could not parse real"), 0))
|
|
|
|
#define THPUtils_checkReal_INT(object) \
|
|
PyLong_Check(object)
|
|
|
|
#define THPUtils_unpackReal_INT(object) \
|
|
(PyLong_Check(object) ? PyLong_AsLongLong(object) : \
|
|
(throw std::runtime_error("Could not parse real"), 0))
|
|
#endif
|
|
|
|
#define THPUtils_newReal_FLOAT(value) PyFloat_FromDouble(value)
|
|
// TODO: handle int overflows for py2
|
|
#define THPUtils_newReal_INT(value) PyInt_FromLong(value)
|
|
|
|
#define THPDoubleUtils_checkReal(object) THPUtils_checkReal_FLOAT(object)
|
|
#define THPDoubleUtils_unpackReal(object) (double)THPUtils_unpackReal_FLOAT(object)
|
|
#define THPDoubleUtils_newReal(value) THPUtils_newReal_FLOAT(value)
|
|
#define THPDoubleUtils_checkAccreal(object) THPUtils_checkReal_FLOAT(object)
|
|
#define THPDoubleUtils_unpackAccreal(object) (double)THPUtils_unpackReal_FLOAT(object)
|
|
#define THPDoubleUtils_newAccreal(value) THPUtils_newReal_FLOAT(value)
|
|
#define THPFloatUtils_checkReal(object) THPUtils_checkReal_FLOAT(object)
|
|
#define THPFloatUtils_unpackReal(object) (float)THPUtils_unpackReal_FLOAT(object)
|
|
#define THPFloatUtils_newReal(value) THPUtils_newReal_FLOAT(value)
|
|
#define THPFloatUtils_checkAccreal(object) THPUtils_checkReal_FLOAT(object)
|
|
#define THPFloatUtils_unpackAccreal(object) (double)THPUtils_unpackReal_FLOAT(object)
|
|
#define THPFloatUtils_newAccreal(value) THPUtils_newReal_FLOAT(value)
|
|
#define THPHalfUtils_checkReal(object) THPUtils_checkReal_FLOAT(object)
|
|
#define THPHalfUtils_unpackReal(object) (at::Half)THPUtils_unpackReal_FLOAT(object)
|
|
#define THPHalfUtils_newReal(value) PyFloat_FromDouble(value)
|
|
#define THPHalfUtils_checkAccreal(object) THPUtils_checkReal_FLOAT(object)
|
|
#define THPHalfUtils_unpackAccreal(object) (double)THPUtils_unpackReal_FLOAT(object)
|
|
#define THPHalfUtils_newAccreal(value) THPUtils_newReal_FLOAT(value)
|
|
|
|
#define THPLongUtils_checkReal(object) THPUtils_checkReal_INT(object)
|
|
#define THPLongUtils_unpackReal(object) (int64_t)THPUtils_unpackReal_INT(object)
|
|
#define THPLongUtils_newReal(value) THPUtils_newReal_INT(value)
|
|
#define THPLongUtils_checkAccreal(object) THPUtils_checkReal_INT(object)
|
|
#define THPLongUtils_unpackAccreal(object) (int64_t)THPUtils_unpackReal_INT(object)
|
|
#define THPLongUtils_newAccreal(value) THPUtils_newReal_INT(value)
|
|
#define THPIntUtils_checkReal(object) THPUtils_checkReal_INT(object)
|
|
#define THPIntUtils_unpackReal(object) (int)THPUtils_unpackReal_INT(object)
|
|
#define THPIntUtils_newReal(value) THPUtils_newReal_INT(value)
|
|
#define THPIntUtils_checkAccreal(object) THPUtils_checkReal_INT(object)
|
|
#define THPIntUtils_unpackAccreal(object) (int64_t)THPUtils_unpackReal_INT(object)
|
|
#define THPIntUtils_newAccreal(value) THPUtils_newReal_INT(value)
|
|
#define THPShortUtils_checkReal(object) THPUtils_checkReal_INT(object)
|
|
#define THPShortUtils_unpackReal(object) (short)THPUtils_unpackReal_INT(object)
|
|
#define THPShortUtils_newReal(value) THPUtils_newReal_INT(value)
|
|
#define THPShortUtils_checkAccreal(object) THPUtils_checkReal_INT(object)
|
|
#define THPShortUtils_unpackAccreal(object) (int64_t)THPUtils_unpackReal_INT(object)
|
|
#define THPShortUtils_newAccreal(value) THPUtils_newReal_INT(value)
|
|
#define THPCharUtils_checkReal(object) THPUtils_checkReal_INT(object)
|
|
#define THPCharUtils_unpackReal(object) (char)THPUtils_unpackReal_INT(object)
|
|
#define THPCharUtils_newReal(value) THPUtils_newReal_INT(value)
|
|
#define THPCharUtils_checkAccreal(object) THPUtils_checkReal_INT(object)
|
|
#define THPCharUtils_unpackAccreal(object) (int64_t)THPUtils_unpackReal_INT(object)
|
|
#define THPCharUtils_newAccreal(value) THPUtils_newReal_INT(value)
|
|
#define THPByteUtils_checkReal(object) THPUtils_checkReal_INT(object)
|
|
#define THPByteUtils_unpackReal(object) (unsigned char)THPUtils_unpackReal_INT(object)
|
|
#define THPByteUtils_newReal(value) THPUtils_newReal_INT(value)
|
|
#define THPByteUtils_checkAccreal(object) THPUtils_checkReal_INT(object)
|
|
#define THPByteUtils_unpackAccreal(object) (int64_t)THPUtils_unpackReal_INT(object)
|
|
#define THPByteUtils_newAccreal(value) THPUtils_newReal_INT(value)
|
|
|
|
#define THPUtils_assert(cond, ...) THPUtils_assertRet(nullptr, cond, __VA_ARGS__)
|
|
#define THPUtils_assertRet(value, cond, ...) \
|
|
if (THP_EXPECT(!(cond), 0)) { THPUtils_setError(__VA_ARGS__); return value; }
|
|
THP_API void THPUtils_setError(const char *format, ...);
|
|
THP_API void THPUtils_invalidArguments(
|
|
PyObject *given_args, PyObject *given_kwargs,
|
|
const char *function_name, size_t num_options, ...);
|
|
|
|
#ifdef _THP_CORE
|
|
|
|
bool THPUtils_checkIntTuple(PyObject *arg);
|
|
std::vector<int> THPUtils_unpackIntTuple(PyObject *arg);
|
|
|
|
void THPUtils_addPyMethodDefs(std::vector<PyMethodDef>& vector, PyMethodDef* methods);
|
|
|
|
int THPUtils_getCallable(PyObject *arg, PyObject **result);
|
|
|
|
#define THWStoragePtr TH_CONCAT_3(TH,Real,StoragePtr)
|
|
#define THWTensorPtr TH_CONCAT_3(TH,Real,TensorPtr)
|
|
#define THPStoragePtr TH_CONCAT_3(THP,Real,StoragePtr)
|
|
#define THPTensorPtr TH_CONCAT_3(THP,Real,TensorPtr)
|
|
#define THSPTensorPtr TH_CONCAT_3(THSP,Real,TensorPtr)
|
|
|
|
typedef THPPointer<THPGenerator> THPGeneratorPtr;
|
|
|
|
template <typename T>
|
|
struct THPUtils_typeTraits {};
|
|
|
|
#include "generic/utils.h"
|
|
#include <TH/THGenerateAllTypes.h>
|
|
|
|
#include "generic/utils.h"
|
|
#include <TH/THGenerateHalfType.h>
|
|
|
|
THLongStoragePtr THPUtils_unpackSize(PyObject *arg);
|
|
bool THPUtils_tryUnpackLongs(PyObject *arg, THLongStoragePtr& result);
|
|
std::vector<int64_t> THPUtils_unpackLongs(PyObject *arg);
|
|
bool THPUtils_tryUnpackLongVarArgs(PyObject *args, int ignore_first, THLongStoragePtr& result);
|
|
PyObject * THPUtils_dispatchStateless(PyObject *tensor, const char *name, PyObject *args, PyObject *kwargs);
|
|
|
|
template<typename _real, typename = void>
|
|
struct mod_traits {};
|
|
|
|
template<typename _real>
|
|
struct mod_traits<_real, typename std::enable_if<std::is_floating_point<_real>::value>::type> {
|
|
static _real mod(_real a, _real b) { return fmod(a, b); }
|
|
};
|
|
|
|
template<typename _real>
|
|
struct mod_traits<_real, typename std::enable_if<std::is_integral<_real>::value>::type> {
|
|
static _real mod(_real a, _real b) { return a % b; }
|
|
};
|
|
|
|
void setBackCompatBroadcastWarn(bool warn);
|
|
bool getBackCompatBroadcastWarn();
|
|
|
|
void setBackCompatKeepdimWarn(bool warn);
|
|
bool getBackCompatKeepdimWarn();
|
|
bool maybeThrowBackCompatKeepdimWarn(char *func);
|
|
|
|
#ifdef USE_CUDA
|
|
std::vector <THCStream*> THPUtils_PySequence_to_THCStreamList(PyObject *obj);
|
|
#endif
|
|
|
|
#endif /* _THP_CORE */
|
|
|
|
#endif
|