-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[profiling] Review the existing DXPAIRS instrumentation #29
Comments
Here's a patch I was using (via `python3 -m pyperformance compile --patch ...`):diff --git a/Include/Python.h b/Include/Python.h
index 86dbbcf6bd..48e26491d4 100644
--- a/Include/Python.h
+++ b/Include/Python.h
@@ -2,6 +2,9 @@
#define Py_PYTHON_H
/* Since this is a "meta-include" file, no #ifdef __cplusplus / extern "C" { */
+#define DYNAMIC_EXECUTION_PROFILE 1
+#define DXPAIRS 1
+
/* Include nearly all Python header files */
#include "patchlevel.h"
diff --git a/Modules/main.c b/Modules/main.c
index 2684d23067..28137d7509 100644
--- a/Modules/main.c
+++ b/Modules/main.c
@@ -658,6 +658,27 @@ pymain_exit_error(PyStatus status)
}
+static const char *dump_dxp_script = "\
+import sys\n\
+\n\
+dxp = sys.getdxp()\n\
+\n\
+import json\n\
+import os\n\
+import os.path\n\
+\n\
+outdir = os.environ.get('ARTIFACTS_DIR') or '.'\n\
+filename = os.path.join(outdir, 'dxp.json')\n\
+with open(filename, 'w') as outfile:\n\
+ json.dump(dxp, outfile)\n\
+";
+
+static void dump_dxp(void)
+{
+ PyRun_SimpleString(dump_dxp_script);
+ PyErr_Clear();
+}
+
int
Py_RunMain(void)
{
@@ -665,6 +686,8 @@ Py_RunMain(void)
pymain_run_python(&exitcode);
+ dump_dxp();
+
if (Py_FinalizeEx() < 0) {
/* Value unlikely to be confused with a non-error exit status or
other special meaning */ |
I have a branch that updates the existing script: https://github.com/ericsnowcurrently/cpython/tree/update-dxp-script. |
Here are results from a short run (only runtime startup?):
|
Curious how this would change after merging my add-opcodes branch.
|
What I would love to see (not sure if your version does this yet): allow running the script as a main followed by arguments that make it run another module or script. See example in prof.py. |
I'm closing this in favor of #44. |
If "DYNAMIC_EXECUTION_PROFILE" and "DXPAIRS" are defined then in the eval loop we keep a count for each opcode pair encountered (i.e. a 256x256 array of int). This is exposed by
sys.getdxp()
and there's a module to help review the results (Tools/scripts/analyze_dxp.py).This information may be useful, particularly relative to work on superinstructions (#16), if gathered against meaningful workloads.
The text was updated successfully, but these errors were encountered: