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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
dae4c13b
Commit
dae4c13b
authored
Nov 23, 2012
by
Lars Buitinck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make sure memoryview example actually runs (fix typing errors)
parent
cfac0913
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
9 deletions
+10
-9
docs/src/userguide/memoryviews.rst
docs/src/userguide/memoryviews.rst
+10
-9
No files found.
docs/src/userguide/memoryviews.rst
View file @
dae4c13b
...
...
@@ -28,20 +28,21 @@ Quickstart
::
from cython.view cimport array as cvarray
from libc.stdint cimport int32_t
import numpy as np
# Memoryview on a NumPy array
narr = np.arange(27
).reshape((3,3,
3))
cdef int [:, :, :] narr_view = narr
narr = np.arange(27
, dtype=np.int32).reshape((3, 3,
3))
cdef int
32_t
[:, :, :] narr_view = narr
# Memoryview on a C array
cdef int carr[3][3][3]
cdef int [:, :, :] carr_view = carr
cdef int
32_t
carr[3][3][3]
cdef int
32_t
[:, :, :] carr_view = carr
# Memoryview on a Cython array
cyarr = cvarray(shape=(3, 3, 3), itemsize=sizeof(int), format="i")
cdef int [:, :, :] cyarr_view = cyarr
cyarr = cvarray(shape=(3, 3, 3), itemsize=sizeof(int
32_t
), format="i")
cdef int
32_t
[:, :, :] cyarr_view = cyarr
# Show the sum of all the arrays before altering it
print "Numpy sum of the Numpy array before assignments:", narr.sum()
...
...
@@ -63,8 +64,8 @@ Quickstart
print "Numpy sum of Numpy array after assignments:", narr.sum()
# A function using a memoryview does not usually need the GIL
cpdef int
sum3d(in
t[:, :, :] arr) nogil:
cdef int total = 0
cpdef int
32_t sum3d(int32_
t[:, :, :] arr) nogil:
cdef int
32_t
total = 0
I = arr.shape[0]
J = arr.shape[1]
K = arr.shape[2]
...
...
@@ -82,7 +83,7 @@ Quickstart
# ... and of course, a memoryview.
print "Memoryview sum of C memoryview is", sum3d(carr_view)
This code
gives
output::
This code
should give the following
output::
Numpy sum of the Numpy array before assignments: 351
Numpy sum of Numpy array after assignments: 81
...
...
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