FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python/include/boost/python/numpy/dtype.hpp at develop · boostorg/python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
boostorg
/
python
Public
Notifications
You must be signed in to change notification settings
Fork
223
Star
537
Code
Issues
173
Pull requests
34
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python
/
include
/
boost
/
python
/
numpy
/
dtype.hpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
118 lines (91 loc) · 3.59 KB
Breadcrumbs
python
/
include
/
boost
/
python
/
numpy
/
dtype.hpp
Copy path
File metadata and controls
118 lines (91 loc) · 3.59 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
//
Copyright Jim Bosch 2010-2012.
//
Copyright Stefan Seefeld 2016.
//
Distributed under the Boost Software License, Version 1.0.
//
(See accompanying file LICENSE_1_0.txt or copy at
//
http://www.boost.org/LICENSE_1_0.txt)
#
ifndef
boost_python_numpy_dtype_hpp_
#
define
boost_python_numpy_dtype_hpp_
/*
*
* @file boost/python/numpy/dtype.hpp
* @brief Object manager for Python's numpy.dtype class.
*/
#
include
<
boost/python.hpp
>
#
include
<
boost/python/numpy/config.hpp
>
#
include
<
boost/python/numpy/numpy_object_mgr_traits.hpp
>
#
include
<
boost/mpl/for_each.hpp
>
#
include
<
boost/python/detail/type_traits.hpp
>
#
include
<
boost/type_traits/is_unsigned.hpp
>
namespace
boost
{
namespace
python
{
namespace
numpy
{
/*
*
* @brief A boost.python "object manager" (subclass of object) for numpy.dtype.
*
* @todo This could have a lot more interesting accessors.
*/
class
BOOST_NUMPY_DECL
dtype : public object {
static
python::detail::new_reference
convert
(object::object_cref arg,
bool
align);
public:
//
/ @brief Convert an arbitrary Python object to a data-type descriptor object.
template
<
typename
T>
explicit
dtype
(T arg,
bool
align=
false
) : object(convert(arg, align)) {}
/*
*
* @brief Get the built-in numpy dtype associated with the given scalar template type.
*
* This is perhaps the most useful part of the numpy API: it returns the dtype object
* corresponding to a built-in C++ type. This should work for any integer or floating point
* type supported by numpy, and will also work for std::complex if
* sizeof(std::complex<T>) == 2*sizeof(T).
*
* It can also be useful for users to add explicit specializations for POD structs
* that return field-based dtypes.
*/
template
<
typename
T>
static
dtype
get_builtin
();
//
/ @brief Return the size of the data type in bytes.
int
get_itemsize
()
const
;
/*
*
* @brief Compare two dtypes for equivalence.
*
* This is more permissive than equality tests. For instance, if long and int are the same
* size, the dtypes corresponding to each will be equivalent, but not equal.
*/
friend
BOOST_NUMPY_DECL
bool
equivalent
(dtype
const
& a, dtype
const
& b);
/*
*
* @brief Register from-Python converters for NumPy's built-in array scalar types.
*
* This is usually called automatically by initialize(), and shouldn't be called twice
* (doing so just adds unused converters to the Boost.Python registry).
*/
static
void
register_scalar_converters
();
BOOST_PYTHON_FORWARD_OBJECT_CONSTRUCTORS
(dtype, object);
};
BOOST_NUMPY_DECL
bool
equivalent
(dtype
const
& a, dtype
const
& b);
namespace
detail
{
template
<
int
bits,
bool
isUnsigned> dtype
get_int_dtype
();
template
<
int
bits> dtype
get_float_dtype
();
template
<
int
bits> dtype
get_complex_dtype
();
template
<
typename
T,
bool
isInt=boost::is_integral<T>::value>
struct
builtin_dtype
;
template
<
typename
T>
struct
builtin_dtype
<T,
true
> {
static
dtype
get
() {
return
get_int_dtype<
8
*
sizeof
(T), boost::is_unsigned<T>::value >(); }
};
template
<>
struct
BOOST_NUMPY_DECL
builtin_dtype<
bool
,
true
> {
static
dtype
get
();
};
template
<
typename
T>
struct
builtin_dtype
<T,
false
> {
static
dtype
get
() {
return
get_float_dtype<
8
*
sizeof
(T) >(); }
};
template
<
typename
T>
struct
builtin_dtype
< std::
complex
<T>,
false
> {
static
dtype
get
() {
return
get_complex_dtype<
16
*
sizeof
(T) >(); }
};
}
//
namespace detail
template
<
typename
T>
inline
dtype
dtype::get_builtin
() {
return
detail::builtin_dtype<T>::
get
(); }
}
//
namespace boost::python::numpy
namespace
converter
{
NUMPY_OBJECT_MANAGER_TRAITS
(numpy::dtype);
}}}
//
namespace boost::python::converter
#
endif
Back
|
FazBrowse Home
|
New Git URL