-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.env
More file actions
65 lines (51 loc) · 2.57 KB
/
Copy pathconfig.example.env
File metadata and controls
65 lines (51 loc) · 2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# config.example.env
#
# Copy to config.env, fill in real values, and `source config.env`.
# config.env is git-ignored — never commit it.
#
# cp config.example.env config.env && $EDITOR config.env && source config.env
# ---------------------------------------------------------------------------
# Node access
# ---------------------------------------------------------------------------
# Your username on the GPU host.
GPU_USER="<USER>"
# The MI400 / gfx1250 host. Requires a live reservation from your lab's GPU
# reservation system AND a registered SSH key before it will accept a
# connection. The login banner is large ASCII art; ignore it.
GFX1250_NODE="<GFX1250_NODE>"
# Any other GPU host (e.g. a gfx942 or gfx950 box). NOTE: configs are NOT
# interchangeable across archs — see docs/01-concepts.md before reusing this
# pipeline on a non-gfx1250 machine.
GPU_NODE="<GPU_NODE>"
# ---------------------------------------------------------------------------
# Container
# ---------------------------------------------------------------------------
# The CK-Tile / ROCm container image tag your team is currently on.
# Image tags rot quickly — confirm the current one with your team rather than
# copying an old value from a document.
CK_IMAGE="<CK_IMAGE_TAG>"
# Container name. Keeping $USER in it avoids collisions on a shared host.
CK_CONTAINER="ck-$USER"
# Host workspace, bind-mounted to /ck inside the container.
# ALWAYS write results under /ck/... so they survive container removal.
CK_WS="$HOME/ck_ws"
# ---------------------------------------------------------------------------
# Run parameters
# ---------------------------------------------------------------------------
# GPU device list passed to the benchmark driver. Often only device 0 is
# actually usable inside the container even when the host shows 8 cards —
# check with /opt/rocm/bin/rocminfo before raising this.
CK_DEVICES="0"
# Target architecture. Changing this is NOT sufficient to retarget the sweep:
# the CI config file, -DGPU_TARGETS and the documented reference numbers are
# all arch-specific. See AGENTS.md section 4.
CK_ARCH="gfx1250"
# ---------------------------------------------------------------------------
# Optional
# ---------------------------------------------------------------------------
# Internal wiki page holding your organisation's copy of the human guide, if
# you keep one. Referenced from SKILL.md.
INTERNAL_WIKI_LINK="<INTERNAL_WIKI_LINK>"
# Internal CI / Jenkins host, if you pull shape sheets or build artifacts from
# one. Not required for a manual run.
INTERNAL_CI_HOST="<INTERNAL_CI_HOST>"