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. Any unknown option are passed directly to 'scorep-config'.
20
+
21
+
--help Show this help message and exit.
22
+
--keep-files Keep temporary files after execution.
23
+
--verbose, -v Enable verbose output for debugging and tracing.
24
+
--nopython Disable instrumentation of Python code.
25
+
Instrumentation can still be enabled later from within the application's source code.
26
+
--noinstrumenter Same as --nopython.
27
+
--instrumenter-type=<type>
28
+
Specify custom instrumenter type (e.g., cProfile).
29
+
--instrumenter-file=<file>
30
+
Path to a Python script that is executed before the application.
31
+
Allows instrumentation of specific modules and functions without modifying their source code.
32
+
-- Stop parsing Score-P options; interpret all following arguments verbatim as the program with its arguments.
33
+
34
+
Other options starting with '-' are passed directly to 'scorep-config'.
35
+
To view all available Score-P configuration options, run: scorep-config --help
0 commit comments