Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions blog/2024-11-21-optimizing-matrix-mul/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -414,9 +414,8 @@ Testing the kernel in isolation is useful, but it does not reflect how the GPU e
it with multiple invocations across workgroups and dispatches. To test the kernel
end-to-end, I needed a test harness that simulated this behavior on the CPU.

Building the harness was straightforward due to due to Rust. By enforcing the
same invariants as the GPU I could validate the kernel under the same conditions the GPU
would run it:
Building the harness was straightforward due to Rust. By enforcing the same invariants
as the GPU I could validate the kernel under the same conditions the GPU would run it:

import { RustCpuBackendHarness } from './snippets/party.tsx';

Expand Down