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
20
21
21
--help Show this help message and exit.
22
-
--mpi Enable MPI instrumentation (equivalent to --mpp=mpi).
23
22
--keep-files Keep temporary files after execution.
24
23
--verbose, -v Enable verbose output for debugging and tracing.
25
24
--nopython Disable instrumentation of Python code.
@@ -30,7 +29,7 @@ def print_help():
30
29
--instrumenter-file=<file>
31
30
Path to a Python script that is executed before the application.
32
31
Allows instrumentation of specific modules and functions without modifying their source code.
33
-
-- Stop parsing Score-P options; pass following args to your script.
32
+
-- Stop parsing Score-P options; interpret all following arguments verbatim as the program with its arguments.
34
33
35
34
Other options starting with '-' are passed directly to 'scorep-config'.
36
35
To view all available Score-P configuration options, run: scorep-config --help
@@ -43,7 +42,7 @@ def print_help():
43
42
if configured.
44
43
You can enable Python instrumentation manually from within your application's source code,
45
44
e.g., by calling 'scorep.instrumenter.enable()'.
46
-
""")
45
+
""")# noqa: E501
47
46
48
47
49
48
defscorep_main(argv=None):
@@ -73,6 +72,8 @@ def scorep_main(argv=None):
73
72
show_help=True
74
73
break
75
74
elifelem=="--mpi":
75
+
print_err(f"scorep: Warning: The option '{elem}' is deprecated "
0 commit comments