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
3f788f04
Commit
3f788f04
authored
Feb 01, 2013
by
Yury V. Zaytsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Introduce more consistent capitalization of Python, Cython and NumPy
parent
2328ce75
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
32 additions
and
32 deletions
+32
-32
docs/src/reference/interfacing_with_other_code.rst
docs/src/reference/interfacing_with_other_code.rst
+1
-1
docs/src/reference/language_basics.rst
docs/src/reference/language_basics.rst
+1
-1
docs/src/tutorial/profiling_tutorial.rst
docs/src/tutorial/profiling_tutorial.rst
+7
-7
docs/src/tutorial/pure.rst
docs/src/tutorial/pure.rst
+5
-5
docs/src/userguide/memoryviews.rst
docs/src/userguide/memoryviews.rst
+18
-18
No files found.
docs/src/reference/interfacing_with_other_code.rst
View file @
3f788f04
...
...
@@ -19,7 +19,7 @@ Fortran
=======
=====
Num
p
y
Num
P
y
=====
...
...
docs/src/reference/language_basics.rst
View file @
3f788f04
...
...
@@ -239,7 +239,7 @@ Parameters
* New references are returned
.. todo::
link or label here the one ref count caveat for
nump
y.
link or label here the one ref count caveat for
NumP
y.
* The name ``object`` can be used to explicitly declare something as a Python Object.
...
...
docs/src/tutorial/profiling_tutorial.rst
View file @
3f788f04
...
...
@@ -8,7 +8,7 @@ Profiling
This part describes the profiling abilities of Cython. If you are familiar
with profiling pure Python code, you can only read the first section
(:ref:`profiling_basics`). If you are not familiar with
p
ython profiling you
(:ref:`profiling_basics`). If you are not familiar with
P
ython profiling you
should also read the tutorial (:ref:`profiling_tutorial`) which takes you
through a complete example step by step.
...
...
@@ -58,7 +58,7 @@ function only::
Profiling Tutorial
==================
This will be a complete tutorial, start to finish, of profiling
p
ython code,
This will be a complete tutorial, start to finish, of profiling
P
ython code,
turning it into Cython code and keep profiling until it is fast enough.
As a toy example, we would like to evaluate the summation of the reciprocals of
...
...
@@ -73,7 +73,7 @@ relation we want to use has been proven by Euler in 1735 and is known as the
\frac{1}{2^2} + \dots + \frac{1}{k^2} \big) \approx
6 \big( \frac{1}{1^2} + \frac{1}{2^2} + \dots + \frac{1}{n^2} \big)
A simple
p
ython code for evaluating the truncated sum looks like this::
A simple
P
ython code for evaluating the truncated sum looks like this::
#!/usr/bin/env python
# encoding: utf-8
...
...
@@ -90,7 +90,7 @@ A simple python code for evaluating the truncated sum looks like this::
On my box, this needs approximately 4 seconds to run the function with the
default n. The higher we choose n, the better will be the approximation for
:math:`\pi`. An experienced
p
ython programmer will already see plenty of
:math:`\pi`. An experienced
P
ython programmer will already see plenty of
places to optimize this code. But remember the golden rule of optimization:
Never optimize without having profiled. Let me repeat this: **Never** optimize
without having profiled your code. Your thoughts about which part of your
...
...
@@ -130,7 +130,7 @@ Running this on my box gives the following output::
This contains the information that the code runs in 6.2 CPU seconds. Note that
the code got slower by 2 seconds because it ran inside the cProfile module. The
table contains the real valuable information. You might want to check the
p
ython `profiling documentation <http://docs.python.org/library/profile.html>`_
P
ython `profiling documentation <http://docs.python.org/library/profile.html>`_
for the nitty gritty details. The most important columns here are totime (total
time spent in this function **not** counting functions that were called by this
function) and cumtime (total time spent in this function **also** counting the
...
...
@@ -140,7 +140,7 @@ in recip_square. Also half a second is spent in range ... of course we should
have used xrange for such a big iteration. And in fact, just changing range to
xrange makes the code run in 5.8 seconds.
We could optimize a lot in the pure
p
ython version, but since we are interested
We could optimize a lot in the pure
P
ython version, but since we are interested
in Cython, let's move forward and bring this module to Cython. We would do this
anyway at some time to get the loop run faster. Here is our first Cython version::
...
...
@@ -294,7 +294,7 @@ approx_pi with a call to sqrt from the C stdlib; but this is not necessarily
faster than calling pow(x,0.5).
Even so, the result we achieved here is quite satisfactory: we came up with a
solution that is much faster then our original
p
ython version while retaining
solution that is much faster then our original
P
ython version while retaining
functionality and readability.
docs/src/tutorial/pure.rst
View file @
3f788f04
...
...
@@ -99,9 +99,9 @@ would be interpreted as::
cpdef foo(self, int i):
print "Big" if i > 1000 else "Small"
The special
c
ython module can also be imported and used within the augmenting
:file:`.pxd` file. This makes it possible to add types to a pure
p
ython file without
changing the file itself. For example, the following
p
ython file
The special
C
ython module can also be imported and used within the augmenting
:file:`.pxd` file. This makes it possible to add types to a pure
P
ython file without
changing the file itself. For example, the following
P
ython file
:file:`dostuff.py`::
def dostuff(n):
...
...
@@ -128,14 +128,14 @@ signature, for instance.
Types
-----
There are numerous types built in to the
c
ython module. One has all the
There are numerous types built in to the
C
ython module. One has all the
standard C types, namely ``char``, ``short``, ``int``, ``long``, ``longlong``
as well as their unsigned versions ``uchar``, ``ushort``, ``uint``, ``ulong``,
``ulonglong``. One also has ``bint`` and ``Py_ssize_t``. For each type, there
are pointer types ``p_int``, ``pp_int``, . . ., up to three levels deep in
interpreted mode, and infinitely deep in compiled mode. The Python types int,
long and bool are interpreted as C ``int``, ``long`` and ``bint``
respectively. Also, the
p
ython types ``list``, ``dict``, ``tuple``, . . . may
respectively. Also, the
P
ython types ``list``, ``dict``, ``tuple``, . . . may
be used, as well as any user defined types.
Pointer types may be constructed with ``cython.pointer(cython.int)``, and
...
...
docs/src/userguide/memoryviews.rst
View file @
3f788f04
...
...
@@ -12,7 +12,7 @@ Memoryviews are similar to the current NumPy array buffer support
(``np.ndarray[np.float64_t, ndim=2]``), but
they have more features and cleaner syntax.
Memoryviews are more general than the old
nump
y aray buffer support, because
Memoryviews are more general than the old
NumP
y aray buffer support, because
they can handle a wider variety of sources of array data. For example, they can
handle C arrays and the Cython array type (:ref:`view_cython_arrays`).
...
...
@@ -43,7 +43,7 @@ Quickstart
cdef int [:, :, :] cyarr_view = cyarr
# Show the sum of all the arrays before altering it
print "Num
py sum of the Nump
y array before assignments:", narr.sum()
print "Num
Py sum of the NumP
y array before assignments:", narr.sum()
# We can copy the values from one memoryview into another using a single
# statement, by either indexing with ... or (NumPy-style) with a colon.
...
...
@@ -56,8 +56,8 @@ Quickstart
carr_view[0, 0, 0] = 100
cyarr_view[0, 0, 0] = 1000
# Assigning into the memoryview on the Num
p
y array alters the latter
print "Num
py sum of Nump
y array after assignments:", narr.sum()
# Assigning into the memoryview on the Num
P
y array alters the latter
print "Num
Py sum of NumP
y array after assignments:", narr.sum()
# A function using a memoryview does not usually need the GIL
cpdef int sum3d(int[:, :, :] arr) nogil:
...
...
@@ -71,9 +71,9 @@ Quickstart
total += arr[i, j, k]
return total
# A function accepting a memoryview knows how to use a Num
p
y array,
# A function accepting a memoryview knows how to use a Num
P
y array,
# a C array, a Cython array...
print "Memoryview sum of Num
p
y array is", sum3d(narr)
print "Memoryview sum of Num
P
y array is", sum3d(narr)
print "Memoryview sum of C array is", sum3d(carr)
print "Memoryview sum of Cython array is", sum3d(cyarr)
# ... and of course, a memoryview.
...
...
@@ -81,9 +81,9 @@ Quickstart
This code should give the following output::
Num
py sum of the Nump
y array before assignments: 351
Num
py sum of Nump
y array after assignments: 81
Memoryview sum of Num
p
y array is 81
Num
Py sum of the NumP
y array before assignments: 351
Num
Py sum of NumP
y array after assignments: 81
Memoryview sum of Num
P
y array is 81
Memoryview sum of C array is 451
Memoryview sum of Cython array is 1351
Memoryview sum of C memoryview is 451
...
...
@@ -95,7 +95,7 @@ Indexing and Slicing
--------------------
Indexing and slicing can be done with or without the GIL. It basically works
like Num
p
y. If indices are specified for every dimension you will get an element
like Num
P
y. If indices are specified for every dimension you will get an element
of the base type (e.g. `int`), otherwise you will get a new view. An Ellipsis
means you get consecutive slices for every unspecified dimension::
...
...
@@ -130,7 +130,7 @@ Transposing
-----------
In most cases (see below), the memoryview can be transposed in the same way that
Num
p
y slices can be transposed::
Num
P
y slices can be transposed::
cdef int[:, ::1] c_contig = ...
cdef int[::1, :] f_contig = c_contig.T
...
...
@@ -144,7 +144,7 @@ See :ref:`view_general_layouts` for details.
Newaxis
-------
As for Num
p
y, new axes can be introduced by indexing an array with ``None`` ::
As for Num
P
y, new axes can be introduced by indexing an array with ``None`` ::
cdef double[:] myslice = np.linspace(0, 10, num=50)
...
...
@@ -201,7 +201,7 @@ Python buffer support
Cython memoryviews support nearly all objects exporting the interface of Python
`new style buffers`_. This is the buffer interface described in `PEP 3118`_.
Num
p
y arrays support this interface, as do :ref:`view_cython_arrays`. The
Num
P
y arrays support this interface, as do :ref:`view_cython_arrays`. The
"nearly all" is because the Python buffer interface allows the *elements* in the
data array to themselves be pointers; Cython memoryviews do not yet support
this.
...
...
@@ -225,7 +225,7 @@ means either direct (no pointer) or indirect (pointer). Data packing means your
data may be contiguous or not contiguous in memory, and may use *strides* to
identify the jumps in memory consecutive indices need to take for each dimension.
Num
p
y arrays provide a good model of strided direct data access, so we'll use
Num
P
y arrays provide a good model of strided direct data access, so we'll use
them for a refresher on the concepts of C and Fortran contiguous arrays, and
data strides.
...
...
@@ -233,10 +233,10 @@ Brief recap on C, Fortran and strided memory layouts
----------------------------------------------------
The simplest data layout might be a C contiguous array. This is the default
layout in Num
p
y and Cython arrays. C contiguous means that the array data is
layout in Num
P
y and Cython arrays. C contiguous means that the array data is
continuous in memory (see below) and that neighboring elements in the first
dimension of the array are furthest apart in memory, whereas neighboring
elements in the last dimension are closest together. For example, in Num
p
y::
elements in the last dimension are closest together. For example, in Num
P
y::
In [2]: arr = np.array([['0', '1', '2'], ['3', '4', '5']], dtype='S1')
...
...
@@ -275,7 +275,7 @@ An array can be contiguous without being C or Fortran order::
In [10]: c_contig.transpose((1, 0, 2)).strides
Out[10]: (4, 12, 1)
Slicing an Num
p
y array can easily make it not contiguous::
Slicing an Num
P
y array can easily make it not contiguous::
In [11]: sliced = c_contig[:,1,:]
In [12]: sliced.strides
...
...
@@ -309,7 +309,7 @@ memoryview will be on top of a 3D C contiguous layout, you could write::
cdef int[:, :, ::1] c_contiguous = c_contig
where ``c_contig`` could be a C contiguous Num
p
y array. The ``::1`` at the 3rd
where ``c_contig`` could be a C contiguous Num
P
y array. The ``::1`` at the 3rd
position means that the elements in this 3rd dimension will be one element apart
in memory. If you know you will have a 3D Fortran contiguous array::
...
...
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