Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
62d061fc
Commit
62d061fc
authored
May 01, 2020
by
smutch
Committed by
Stefan Behnel
May 01, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix buffer parsing for memoryviews of arrays of structs (GH-3562)
See #1407.
parent
a3d9bc71
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
98 additions
and
5 deletions
+98
-5
Cython/Utility/Buffer.c
Cython/Utility/Buffer.c
+7
-5
tests/buffers/buffmt.pyx
tests/buffers/buffmt.pyx
+53
-0
tests/memoryview/numpy_memoryview.pyx
tests/memoryview/numpy_memoryview.pyx
+38
-0
No files found.
Cython/Utility/Buffer.c
View file @
62d061fc
...
...
@@ -602,9 +602,8 @@ static PyObject *
__pyx_buffmt_parse_array
(
__Pyx_BufFmt_Context
*
ctx
,
const
char
**
tsp
)
{
const
char
*
ts
=
*
tsp
;
int
i
=
0
,
number
;
int
ndim
=
ctx
->
head
->
field
->
type
->
ndim
;
;
int
i
=
0
,
number
,
ndim
;
++
ts
;
if
(
ctx
->
new_count
!=
1
)
{
PyErr_SetString
(
PyExc_ValueError
,
...
...
@@ -615,6 +614,9 @@ __pyx_buffmt_parse_array(__Pyx_BufFmt_Context* ctx, const char** tsp)
/* Process the previous element */
if
(
__Pyx_BufFmt_ProcessTypeChunk
(
ctx
)
==
-
1
)
return
NULL
;
// store ndim now, as field advanced by __Pyx_BufFmt_ProcessTypeChunk call
ndim
=
ctx
->
head
->
field
->
type
->
ndim
;
/* Parse all numbers in the format string */
while
(
*
ts
&&
*
ts
!=
')'
)
{
// ignore space characters (not using isspace() due to C/C++ problem on MacOS-X)
...
...
@@ -757,8 +759,8 @@ static const char* __Pyx_BufFmt_CheckString(__Pyx_BufFmt_Context* ctx, const cha
case
'l'
:
case
'L'
:
case
'q'
:
case
'Q'
:
case
'f'
:
case
'd'
:
case
'g'
:
case
'O'
:
case
'p'
:
if
(
ctx
->
enc_type
==
*
ts
&&
got_Z
==
ctx
->
is_complex
&&
ctx
->
enc_packmode
==
ctx
->
new_packmode
)
{
if
(
(
ctx
->
enc_type
==
*
ts
)
&&
(
got_Z
==
ctx
->
is_complex
)
&&
(
ctx
->
enc_packmode
==
ctx
->
new_packmode
)
&&
(
!
ctx
->
is_valid_array
)
)
{
/* Continue pooling same type */
ctx
->
enc_count
+=
ctx
->
new_count
;
ctx
->
new_count
=
1
;
...
...
tests/buffers/buffmt.pyx
View file @
62d061fc
...
...
@@ -406,6 +406,59 @@ def packed_struct_with_strings(fmt):
fmt
,
sizeof
(
PackedStructWithCharArrays
))
ctypedef
struct
PackedStructWithArrays
:
double
a
[
16
]
double
b
[
16
]
double
c
ctypedef
struct
UnpackedStructWithArrays
:
int
a
float
b
[
8
]
float
c
unsigned
long
d
int
e
[
5
]
int
f
int
g
double
h
[
4
]
int
i
ctypedef
struct
PackedStructWithNDArrays
:
double
a
double
b
[
2
][
2
]
float
c
float
d
@
testcase
def
packed_struct_with_arrays
(
fmt
):
"""
>>> packed_struct_with_arrays("T{(16)d:a:(16)d:b:d:c:}")
"""
cdef
object
[
PackedStructWithArrays
]
buf
=
MockBuffer
(
fmt
,
sizeof
(
PackedStructWithArrays
))
@
testcase
def
unpacked_struct_with_arrays
(
fmt
):
"""
>>> unpacked_struct_with_arrays("T{i:a:(8)f:b:f:c:L:d:(5)i:e:i:f:i:g:xxxx(4)d:h:i:i:}")
"""
cdef
object
[
UnpackedStructWithArrays
]
buf
=
MockBuffer
(
fmt
,
sizeof
(
UnpackedStructWithArrays
))
@
testcase
def
packed_struct_with_ndarrays
(
fmt
):
"""
>>> packed_struct_with_ndarrays("T{d:a:(2,2)d:b:f:c:f:d:}")
"""
cdef
object
[
PackedStructWithNDArrays
]
buf
=
MockBuffer
(
fmt
,
sizeof
(
PackedStructWithNDArrays
))
# TODO: empty struct
# TODO: Incomplete structs
# TODO: mixed structs
tests/memoryview/numpy_memoryview.pyx
View file @
62d061fc
...
...
@@ -718,3 +718,41 @@ def test_boundscheck_and_wraparound(double[:, :] x):
x
[
i
]
x
[
i
,
...]
x
[
i
,
:]
ctypedef
struct
SameTypeAfterArraysStructSimple
:
double
a
[
16
]
double
b
[
16
]
double
c
@
testcase
def
same_type_after_arrays_simple
():
"""
>>> same_type_after_arrays_simple()
"""
cdef
SameTypeAfterArraysStructSimple
element
arr
=
np
.
ones
(
2
,
np
.
asarray
(
<
SameTypeAfterArraysStructSimple
[:
1
]
>&
element
).
dtype
)
cdef
SameTypeAfterArraysStructSimple
[:]
memview
=
arr
ctypedef
struct
SameTypeAfterArraysStructComposite
:
int
a
float
b
[
8
]
float
c
unsigned
long
d
int
e
[
5
]
int
f
int
g
double
h
[
4
]
int
i
@
testcase
def
same_type_after_arrays_composite
():
"""
>>> same_type_after_arrays_composite()
"""
cdef
SameTypeAfterArraysStructComposite
element
arr
=
np
.
ones
(
2
,
np
.
asarray
(
<
SameTypeAfterArraysStructComposite
[:
1
]
>&
element
).
dtype
)
cdef
SameTypeAfterArraysStructComposite
[:]
memview
=
arr
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment