diff --git a/README.md b/README.md index 793b947..cb5e434 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# radeon_gpu_detective +# Radeon™ GPU Detective (RGD) RGD is a tool for post-mortem analysis of GPU crashes. The tool performs offline processing of AMD GPU crash dump files and generates crash analysis reports in text and JSON formats. diff --git a/build/fetch_dependencies.py b/build/fetch_dependencies.py index 7d18f87..f0d81cb 100644 --- a/build/fetch_dependencies.py +++ b/build/fetch_dependencies.py @@ -3,10 +3,7 @@ # # Script to fetch all external git and/or downloadable dependencies needed to build the project # -# fetch_dependencies.py (--internal) -# -# If --internal is specified, then any additional dependencies required for internal builds will also -# be checked out. +# fetch_dependencies.py # # Each git repo will be updated to the commit specified in the "gitMapping" table. @@ -162,7 +159,6 @@ def do_fetch_dependencies(update, internal): # parse the command line arguments parser = argparse.ArgumentParser(description="A script that fetches all the necessary build dependencies for the project") - parser.add_argument("--internal", action="store_true", help="fetch dependencies required for internal builds of the tool (only used within AMD") args = parser.parse_args() do_fetch_dependencies(True, args.internal)