diff --git a/apps/rocm/src/dash_seam.rs b/apps/rocm/src/dash_seam.rs index 7ffb86e1..b9a5c577 100644 --- a/apps/rocm/src/dash_seam.rs +++ b/apps/rocm/src/dash_seam.rs @@ -1,3 +1,7 @@ +// Copyright Advanced Micro Devices, Inc. +// +// SPDX-License-Identifier: Apache-2.0 + //! Bin-side implementation of the dash execution seam. //! //! The dash crates stay free of `rocm-core`; this module lives in the bin diff --git a/apps/rocm/tests/daemon_run.rs b/apps/rocm/tests/daemon_run.rs index 3829d388..f772bf2a 100644 --- a/apps/rocm/tests/daemon_run.rs +++ b/apps/rocm/tests/daemon_run.rs @@ -1,3 +1,7 @@ +// Copyright Advanced Micro Devices, Inc. +// +// SPDX-License-Identifier: Apache-2.0 + //! Integration test proving `rocm daemon` runs the real foreground automation //! loop (embedded `rocmd`) instead of only printing the status panel. //! diff --git a/crates/rocm-core/src/diagnose.rs b/crates/rocm-core/src/diagnose.rs index 20b1db87..8b0262f4 100644 --- a/crates/rocm-core/src/diagnose.rs +++ b/crates/rocm-core/src/diagnose.rs @@ -1,3 +1,7 @@ +// Copyright Advanced Micro Devices, Inc. +// +// SPDX-License-Identifier: Apache-2.0 + //! ROCm failure-mode diagnosis. //! //! Rust port of the `rocm-doctor` skill's `diagnose.py`. It matches an diff --git a/crates/rocm-core/src/examine.rs b/crates/rocm-core/src/examine.rs index 217aae5b..63245a48 100644 --- a/crates/rocm-core/src/examine.rs +++ b/crates/rocm-core/src/examine.rs @@ -1,3 +1,7 @@ +// Copyright Advanced Micro Devices, Inc. +// +// SPDX-License-Identifier: Apache-2.0 + //! Host examination probe. //! //! Rust port of the `rocm-doctor` skill's `examine.py`. It gathers the host diff --git a/crates/rocm-core/src/fix.rs b/crates/rocm-core/src/fix.rs index 766fea7a..6d45c791 100644 --- a/crates/rocm-core/src/fix.rs +++ b/crates/rocm-core/src/fix.rs @@ -1,3 +1,7 @@ +// Copyright Advanced Micro Devices, Inc. +// +// SPDX-License-Identifier: Apache-2.0 + //! Apply remediations for diagnosed ROCm failure modes. //! //! Rust port of the `rocm-doctor` skill's `apply_fix.py`. Only small, safe, diff --git a/crates/rocm-dash-tui/src/tool_exec.rs b/crates/rocm-dash-tui/src/tool_exec.rs index 0f2e7773..8985ad0d 100644 --- a/crates/rocm-dash-tui/src/tool_exec.rs +++ b/crates/rocm-dash-tui/src/tool_exec.rs @@ -1,3 +1,7 @@ +// Copyright Advanced Micro Devices, Inc. +// +// SPDX-License-Identifier: Apache-2.0 + //! rocm-core-free tool-call boundary (the execution seam). //! //! Plain-data signatures ONLY (serde_json / std / serde). The bin (`apps/rocm`,