-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·16 lines (14 loc) · 782 Bytes
/
Copy pathsetup.sh
File metadata and controls
executable file
·16 lines (14 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env bash
# Hearthwave setup — compatibility shim.
#
# Setup is now split by compute backend (build-from-source Docker path):
# bash setup-cpu.sh && docker compose -f docker-compose.yml up --build
# bash setup-rocm.sh && docker compose -f docker-compose.rocm.yml up --build # AMD GPU final pass
# bash setup-cuda.sh && docker compose -f docker-compose.cuda.yml up --build # NVIDIA (stub)
#
# This shim forwards to setup-cpu.sh (the previous default) so existing
# `bash setup.sh ...` invocations keep working. Pass any setup-cpu.sh args.
set -euo pipefail
echo "==> setup.sh now forwards to setup-cpu.sh (CPU profile)." >&2
echo " For GPU, use setup-rocm.sh (AMD) or setup-cuda.sh (NVIDIA, stub)." >&2
exec bash "$(dirname "$0")/setup-cpu.sh" "$@"