mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-24 22:25:10 +00:00
Dtype kind vs char (#2864)
* [dtype]: add type() method to access type attribute of PyArray_Descr (eq. to dtype.char in Python) * [dtype] change type() name method to char_() to be compliant with Python numpy interface * [dtype] fix by pre-commit * [dtype] Change comments and solutions format for test * Clarify documentation and move note about dtype.char vs PyArray_Descr::type to a plain, non-doxygen comment * Fix and extend tests * Fix the supposedly fixed tests * Fix the fixed tests again Co-authored-by: Bertrand MICHEL <bertrand.michel@onera.fr> Co-authored-by: Yannick Jadoul <yannick.jadoul@belgacom.net>
This commit is contained in:
parent
c0fbb02c9f
commit
74a767d429
@ -507,11 +507,21 @@ public:
|
|||||||
return detail::array_descriptor_proxy(m_ptr)->names != nullptr;
|
return detail::array_descriptor_proxy(m_ptr)->names != nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Single-character type code.
|
/// Single-character code for dtype's kind.
|
||||||
|
/// For example, floating point types are 'f' and integral types are 'i'.
|
||||||
char kind() const {
|
char kind() const {
|
||||||
return detail::array_descriptor_proxy(m_ptr)->kind;
|
return detail::array_descriptor_proxy(m_ptr)->kind;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Single-character for dtype's type.
|
||||||
|
/// For example, ``float`` is 'f', ``double`` 'd', ``int`` 'i', and ``long`` 'd'.
|
||||||
|
char char_() const {
|
||||||
|
// Note: The signature, `dtype::char_` follows the naming of NumPy's
|
||||||
|
// public Python API (i.e., ``dtype.char``), rather than its internal
|
||||||
|
// C API (``PyArray_Descr::type``).
|
||||||
|
return detail::array_descriptor_proxy(m_ptr)->type;
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
static object _dtype_from_pep3118() {
|
static object _dtype_from_pep3118() {
|
||||||
static PyObject *obj = module_::import("numpy.core._internal")
|
static PyObject *obj = module_::import("numpy.core._internal")
|
||||||
|
@ -358,6 +358,14 @@ TEST_SUBMODULE(numpy_dtypes, m) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// test_dtype
|
// test_dtype
|
||||||
|
std::vector<const char *> dtype_names{
|
||||||
|
"byte", "short", "intc", "int_", "longlong",
|
||||||
|
"ubyte", "ushort", "uintc", "uint", "ulonglong",
|
||||||
|
"half", "single", "double", "longdouble",
|
||||||
|
"csingle", "cdouble", "clongdouble",
|
||||||
|
"bool_", "datetime64", "timedelta64", "object_"
|
||||||
|
};
|
||||||
|
|
||||||
m.def("print_dtypes", []() {
|
m.def("print_dtypes", []() {
|
||||||
py::list l;
|
py::list l;
|
||||||
for (const py::handle &d : {
|
for (const py::handle &d : {
|
||||||
@ -376,6 +384,18 @@ TEST_SUBMODULE(numpy_dtypes, m) {
|
|||||||
return l;
|
return l;
|
||||||
});
|
});
|
||||||
m.def("test_dtype_ctors", &test_dtype_ctors);
|
m.def("test_dtype_ctors", &test_dtype_ctors);
|
||||||
|
m.def("test_dtype_kind", [dtype_names]() {
|
||||||
|
py::list list;
|
||||||
|
for (auto& dt_name : dtype_names)
|
||||||
|
list.append(py::dtype(dt_name).kind());
|
||||||
|
return list;
|
||||||
|
});
|
||||||
|
m.def("test_dtype_char_", [dtype_names]() {
|
||||||
|
py::list list;
|
||||||
|
for (auto& dt_name : dtype_names)
|
||||||
|
list.append(py::dtype(dt_name).char_());
|
||||||
|
return list;
|
||||||
|
});
|
||||||
m.def("test_dtype_methods", []() {
|
m.def("test_dtype_methods", []() {
|
||||||
py::list list;
|
py::list list;
|
||||||
auto dt1 = py::dtype::of<int32_t>();
|
auto dt1 = py::dtype::of<int32_t>();
|
||||||
|
@ -169,6 +169,9 @@ def test_dtype(simple_dtype):
|
|||||||
np.zeros(1, m.trailing_padding_dtype())
|
np.zeros(1, m.trailing_padding_dtype())
|
||||||
)
|
)
|
||||||
|
|
||||||
|
assert m.test_dtype_kind() == list("iiiiiuuuuuffffcccbMmO")
|
||||||
|
assert m.test_dtype_char_() == list("bhilqBHILQefdgFDG?MmO")
|
||||||
|
|
||||||
|
|
||||||
def test_recarray(simple_dtype, packed_dtype):
|
def test_recarray(simple_dtype, packed_dtype):
|
||||||
elements = [(False, 0, 0.0, -0.0), (True, 1, 1.5, -2.5), (False, 2, 3.0, -5.0)]
|
elements = [(False, 0, 0.0, -0.0), (True, 1, 1.5, -2.5), (False, 2, 3.0, -5.0)]
|
||||||
|
Loading…
Reference in New Issue
Block a user