From 39471a68b18c748ea9e9185dcc33ccda9bae09b3 Mon Sep 17 00:00:00 2001 From: Junji Hashimoto Date: Sun, 28 Jul 2024 14:58:10 +0900 Subject: [PATCH] Fix typo of Puzzle 13 --- examples/gpu_puzzles/run.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/gpu_puzzles/run.cpp b/examples/gpu_puzzles/run.cpp index 38c2156..0211f04 100644 --- a/examples/gpu_puzzles/run.cpp +++ b/examples/gpu_puzzles/run.cpp @@ -432,7 +432,7 @@ void puzzle12(Context &ctx) { } -=// Puzzle 13 : Axis Sum +// Puzzle 13 : Axis Sum // Implement a kernel that computes a sum over each column of a and stores it in out. const char *kPuzzle13 = R"( @@ -536,4 +536,4 @@ int main(int argc, char **argv) { // puzzle13(ctx); // puzzle14(ctx); return 0; -} \ No newline at end of file +}