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
692abf58
Commit
692abf58
authored
Jun 17, 2018
by
scoder
Committed by
GitHub
Jun 17, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2353 from gabrieldemarmiesse/test_memory_allocation_1
Added tests for "memory allocation" Part 1
parents
3464b14e
1b964d5e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
21 deletions
+31
-21
docs/examples/tutorial/memory_allocation/malloc.pyx
docs/examples/tutorial/memory_allocation/malloc.pyx
+19
-0
docs/src/tutorial/memory_allocation.rst
docs/src/tutorial/memory_allocation.rst
+12
-21
No files found.
docs/examples/tutorial/memory_allocation/malloc.pyx
0 → 100644
View file @
692abf58
import
random
from
libc.stdlib
cimport
malloc
,
free
def
random_noise
(
int
number
=
1
):
cdef
int
i
# allocate number * sizeof(double) bytes of memory
cdef
double
*
my_array
=
<
double
*>
malloc
(
number
*
sizeof
(
double
))
if
not
my_array
:
raise
MemoryError
()
try
:
ran
=
random
.
normalvariate
for
i
in
range
(
number
):
my_array
[
i
]
=
ran
(
0
,
1
)
return
[
x
for
x
in
my_array
[:
number
]]
finally
:
# return the previously allocated memory to the system
free
(
my_array
)
docs/src/tutorial/memory_allocation.rst
View file @
692abf58
...
@@ -32,27 +32,18 @@ in cython from ``clibc.stdlib``. Their signatures are:
...
@@ -32,27 +32,18 @@ in cython from ``clibc.stdlib``. Their signatures are:
void* realloc(void* ptr, size_t size)
void* realloc(void* ptr, size_t size)
void free(void* ptr)
void free(void* ptr)
A very simple example of malloc usage is the following::
A very simple example of malloc usage is the following:
import random
.. literalinclude:: ../../examples/tutorial/memory_allocation/malloc.pyx
from libc.stdlib cimport malloc, free
:linenos:
def random_noise(int number=1):
.. note::
cdef int i
# allocate number * sizeof(double) bytes of memory
Here we take Python doubles (with ``ran(0, 1)``) and convert
cdef double *my_array = <double *>malloc(number * sizeof(double))
them to C doubles when putting them in ``my_array``. After that,
if not my_array:
we put them back into a Python list at line 19. So those C doubles
raise MemoryError()
are converted again into Python doubles. This is highly inefficient,
and only for demo purposes.
try:
ran = random.normalvariate
for i in range(number):
my_array[i] = ran(0,1)
return [ my_array[i] for i in range(number) ]
finally:
# return the previously allocated memory to the system
free(my_array)
Note that the C-API functions for allocating memory on the Python heap
Note that the C-API functions for allocating memory on the Python heap
are generally preferred over the low-level C functions above as the
are generally preferred over the low-level C functions above as the
...
...
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