Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <github@jessfraz.com>
  • Loading branch information
jessfraz committed Dec 9, 2023
1 parent 3c31e32 commit fb2235c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
run: cargo fmt --all -- --check

- name: Build
run: cargo build --all
run: cargo build

# Don't currently test because many tests rely on the system having a CUDA GPU
# - name: Test
Expand All @@ -69,5 +69,5 @@ jobs:
- name: Clippy
env:
RUSTFLAGS: -Dwarnings
run: cargo clippy --all --tests
run: cargo clippy --tests

5 changes: 0 additions & 5 deletions src/gpu_day08.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,6 @@ fn graph_traversal(

let grid_size = (length as u32 + block_size - 1) / block_size;

println!(
"using {} blocks and {} threads per block",
grid_size, block_size
);

// Actually launch the GPU kernel. This will queue up the launch on the
// stream, it will not block the thread until the kernel is finished.
unsafe {
Expand Down

0 comments on commit fb2235c

Please sign in to comment.