Skip to content

Commit

Permalink
Additional renaming of content visible to an average external user.
Browse files Browse the repository at this point in the history
  • Loading branch information
xuchen-amd committed Sep 24, 2024
1 parent 9bbacd7 commit 9f5da02
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
This directory contains all the source code files for the Omniperf project.
The top-level `omniperf` executable is the entry point and defines the flow for subsequent execution modes.
This directory contains all the source code files for the rocprof-compute project.
The top-level `rocprof-compute` executable is the entry point and defines the flow for subsequent execution modes.

To build Omniperf as a developer (from source) please add this directory to `PATH`.
You will find utilities and logic specific to Omniperf's different execution modes in their
To build rocprof-compute as a developer (from source) please add this directory to `PATH`.
You will find utilities and logic specific to rocprof-compute's different execution modes in their
respective subdirectories.
4 changes: 2 additions & 2 deletions src/omniperf
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def verify_deps():
localVersion, desiredVersion, operator
):
print(
"[ERROR] the '%s' distribution does not meet version requirements to use omniperf."
"[ERROR] the '%s' distribution does not meet version requirements to use rocprof-compute."
% dependency
)
print(" --> version installed :", localVersion)
Expand All @@ -106,7 +106,7 @@ def verify_deps():
print(
"Please verify all of the python dependencies called out in the requirements file"
)
print("are installed locally prior to running omniperf.")
print("are installed locally prior to running rocprof-compute.")
print("")
print("See: %s" % checkFile)
sys.exit(1)
Expand Down
2 changes: 1 addition & 1 deletion src/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def get_version_display(version, sha, mode):
"""Pretty print versioning info"""
buf = io.StringIO()
print("-" * 40, file=buf)
print("Omniperf version: %s (%s)" % (version, mode), file=buf)
print("rocprof-compute version: %s (%s)" % (version, mode), file=buf)
print("Git revision: %s" % sha, file=buf)
print("-" * 40, file=buf)
return buf.getvalue()
Expand Down

0 comments on commit 9f5da02

Please sign in to comment.