From e49d6262e903ea2e2b2b229dcb85fd1cd23b2159 Mon Sep 17 00:00:00 2001 From: resonantsky Date: Fri, 3 Apr 2026 12:25:06 +0200 Subject: [PATCH] UI edits, small corrections --- scripts/rocm_ext.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/rocm_ext.py b/scripts/rocm_ext.py index 6ea9c0143..d3a5f1467 100644 --- a/scripts/rocm_ext.py +++ b/scripts/rocm_ext.py @@ -74,9 +74,9 @@ class ROCmScript(scripts_manager.Script): rules.append(f"#rocm_var_{v.lower()} {{ opacity: 0.45; pointer-events: none; }}") return f"" if rules else "" - with gr.Accordion('Windows ROCm: Advanced Config', open=False, elem_id='rocm_config'): + with gr.Accordion('ROCm: Advanced Config', open=False, elem_id='rocm_config'): with gr.Row(): - gr.HTML("

Advanced configuration for Windows ROCm users.


This script aims to take the guesswork out of configuring MIOpen and rocBLAS on Windows ROCm, but also to expose the functioning switches of MIOpen for advanced configurations.


For best performance ensure that cuDNN and PyTorch tunable ops are set to default in Backend Settings.

") + gr.HTML("

Advanced configuration for ROCm users.


This script aims to take the guesswork out of configuring MIOpen and rocBLAS on Windows ROCm, but also to expose the functioning switches of MIOpen for advanced configurations.


For best performance ensure that cuDNN and PyTorch tunable ops are set to default in Backend Settings.


This script was written with the intent to support ROCm Windows users, it should however, function identically for Linux users.


") with gr.Row(): btn_info = gr.Button("Refresh Info", variant="primary", elem_id="rocm_btn_info", size="sm") btn_apply = gr.Button("Apply", variant="primary", elem_id="rocm_btn_apply", size="sm")