You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Score-P Python instrumentation wrapper. The following options control how the program is instrumented and executed:
19
+
Score-P Python instrumentation wrapper. The following options control how the program is instrumented and executed. Any unknown option are passed directly to 'scorep-config'.
20
20
21
21
--help Show this help message and exit.
22
22
--mpi Enable MPI instrumentation (equivalent to --mpp=mpi).
@@ -26,16 +26,18 @@ def print_help():
26
26
--nopython Disable instrumentation of Python code.
27
27
Instrumentation can still be enabled later from within the application's source code.
28
28
--noinstrumenter Same as --nopython.
29
-
--instrumenter-type=<t> Specify custom instrumenter type (e.g., cProfile).
30
-
--instrumenter-file=<f> Path to a Python script that is executed before the application.
29
+
--instrumenter-type=<type>
30
+
Specify custom instrumenter type (e.g., cProfile).
31
+
--instrumenter-file=<file>
32
+
Path to a Python script that is executed before the application.
31
33
Allows instrumentation of specific modules and functions without modifying their source code.
32
34
-- Stop parsing Score-P options; pass following args to your script.
33
35
34
36
Other options starting with '-' are passed directly to 'scorep-config'.
35
37
To view all available Score-P configuration options, run: scorep-config --help
0 commit comments