Skip to content

Commit

Permalink
Fixed label args.
Browse files Browse the repository at this point in the history
  • Loading branch information
emeryberger committed Jan 23, 2023
1 parent a04e47d commit 2c18f59
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scalene/scalene-gui/index.html.template
Original file line number Diff line number Diff line change
Expand Up @@ -2613,18 +2613,18 @@ Prism.languages.py = Prism.languages.python;
<br />
<div>
<input type="radio" name="optimize-radio" id="optimize-performance" value="performance" checked>
<label style="font-size: 0.8rem" for="performance">
<label style="font-size: 0.8rem" for="optimize-performance">
Optimize runtime performance
</label>
</div>
<div>
<input type="radio" name="optimize-radio" id="optimize-memory" value="memory">
<label style="font-size: 0.8rem" for="memory">
<label style="font-size: 0.8rem" for="optimize-memory">
Optimize memory efficiency
</label>
</div>
<input type="checkbox" id="use-gpu-checkbox" name="use-gpu-checkbox-label" onclick="try { window.localStorage.setItem('scalene-gpu-checkbox', document.getElementById('use-gpu-checkbox').checked); } catch {}">
<label style="font-size: 0.8rem" for="use-gpu-checkbox-label">
<label style="font-size: 0.8rem" for="use-gpu-checkbox">
Include GPU optimizations
</label>
<br />
Expand Down

0 comments on commit 2c18f59

Please sign in to comment.