mirror of
https://github.com/ROCm/ROCm.git
synced 2026-02-21 03:00:39 -05:00
[Why] To maintain the "pitchfork layout" convention used by the repository. [How] - Update README.md - Update INFRA_REPO in ROCm.mk - Updated to new path: ROCm/tools/rocm-build --------- Signed-off-by: David Galiffi <David.Galiffi@amd.com>
15 lines
286 B
Bash
Executable File
15 lines
286 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
source "$(dirname "${BASH_SOURCE[0]}")/compute_helper.sh"
|
|
|
|
stage2_command_args "$@"
|
|
|
|
case $TARGET in
|
|
build) echo "end of rocm-dev build..." ;;
|
|
outdir) ;;
|
|
clean) echo "Cleaning rocm-dev is not required..." ;;
|
|
*) die "Invalid target $TARGET" ;;
|
|
esac
|