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
3ddd89a7
Commit
3ddd89a7
authored
Sep 10, 2017
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Suggest in Jupyter magic help page that PGO profile executions should be repeated.
parent
5bdfbcb5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
Cython/Build/IpythonMagic.py
Cython/Build/IpythonMagic.py
+5
-3
No files found.
Cython/Build/IpythonMagic.py
View file @
3ddd89a7
...
@@ -268,14 +268,16 @@ class CythonMagics(Magics):
...
@@ -268,14 +268,16 @@ class CythonMagics(Magics):
for item in data:
for item in data:
...
...
from somewhere import typical_data
# execute function several times to build profile
critical_function(typical_data) # execute function to build profile
from somewhere import some_typical_data
for _ in range(100):
critical_function(some_typical_data)
In Python 3.5 and later, you can distinguish between the profile and
In Python 3.5 and later, you can distinguish between the profile and
non-profile runs as follows::
non-profile runs as follows::
if "_pgo_" in __name__:
if "_pgo_" in __name__:
critical_function(profile_data) # generate execution profil
e
... # execute critical code her
e
"""
"""
args
=
magic_arguments
.
parse_argstring
(
self
.
cython
,
line
)
args
=
magic_arguments
.
parse_argstring
(
self
.
cython
,
line
)
code
=
cell
if
cell
.
endswith
(
'
\
n
'
)
else
cell
+
'
\
n
'
code
=
cell
if
cell
.
endswith
(
'
\
n
'
)
else
cell
+
'
\
n
'
...
...
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