Skip to content

Commit 34bfe35

Browse files
committed
style(compute): gofmt gpu_engine.go
1 parent 26bbd49 commit 34bfe35

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

compute/gpu_engine.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1269,7 +1269,8 @@ func (e *GPUEngine[T]) matMulQ4(ctx context.Context, qs *tensor.Q4Storage, a, b
12691269
// matMulQ4BWeight handles MatMul where B has Q4 storage (virtual-transposed weight).
12701270
// B's shape after virtual transpose is [K, N], but the Q4 data is laid out as [N, K].
12711271
// We compute C[M, N] = A[M, K] * dequant(B)^T by reformulating as:
1272-
// C_temp[N, M] = gemm_q4(B_q4[N, K], A^T[K, M])
1272+
//
1273+
// C_temp[N, M] = gemm_q4(B_q4[N, K], A^T[K, M])
12731274
//
12741275
// For GEMV (M=1), A^T[K,1] is just A's data as a column, and C_temp[N,1]
12751276
// can be reshaped to [1, N] without a physical transpose.

0 commit comments

Comments
 (0)