diff --git a/src/components/tool/guide/Config.js b/src/components/tool/guide/Config.js index 768296e8..36f9e6d1 100644 --- a/src/components/tool/guide/Config.js +++ b/src/components/tool/guide/Config.js @@ -286,12 +286,17 @@ export const getGpuModules = (config, onChange) => () => { selected={selected} inputProps={{ value: config?.gpuModules, - label: "modules", + label: config?.gpuModules > 1 ? "GPUs" : "GPU", min: 1, max: 8, step: 1, onChange: onChange("gpuModules"), }} + showAlert={config?.gpuModules > 1} + alertType={"warning"} + alertMsg={ + "Only use more than 1 GPU if your job is capable of utilising multiple GPUs simultaneously." + } /> ), show: (config) => isLyra(config) && isGPU(config),