Skip to content

Commit 29dc3f7

Browse files
maleadtclaude
andcommitted
Fix GPU header width in CUDATestRecord print_header.
The top-band GPU label spanned 30 columns but the bottom-band GPU cells (GC/Alloc/RSS) sum to 33, shifting every pipe after the GPU section three columns left. Widen the dashes (12 + 13) to match. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 6871725 commit 29dc3f7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/setup.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ function ParallelTestRunner.print_header(::Type{CUDATestRecord}, ctx::ParallelTe
137137
printstyled(ctx.stdout, " Test │", color = :white)
138138
ctx.verbose && printstyled(ctx.stdout, " Init │", color = :white)
139139
VERSION >= v"1.11" && ctx.verbose && printstyled(ctx.stdout, " Compile │", color = :white)
140-
printstyled(ctx.stdout, " ─────────── GPU ─────────── │", color = :white)
140+
printstyled(ctx.stdout, " ─────────── GPU ───────────── │", color = :white)
141141
printstyled(ctx.stdout, " ──────────────── CPU ──────────────── │\n", color = :white)
142142

143143
# lower band

0 commit comments

Comments
 (0)