Skip to content

Commit

Permalink
tools: Remove cudabench
Browse files Browse the repository at this point in the history
We stopped using cudabench quite a while ago; it only measured half
precision matmul which is basically not interesting, and it's the only
external dependency on helpers.cuh so it makes reorganizing that code
harder.
  • Loading branch information
zeux committed Apr 13, 2024
1 parent 3731786 commit 57e93ef
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 146 deletions.
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,6 @@ format:
$(BUILD)/fuzz-tensors: src/tensors.c
clang $(CFLAGS) -DFUZZING -O1 -fsanitize=address,fuzzer -o $@ $^

$(BUILD)/cudabench: tools/cudabench.cu
$(NVCC) $< $(CUFLAGS) -MMD -MP -o $@

$(BUILD)/cudaprof: tools/cudaprof.cu
$(NVCC) $< $(CUFLAGS) -Xcompiler -fPIC -shared -lcupti -MMD -MP -o $@

Expand All @@ -89,7 +86,6 @@ $(BUILD)/%.cu.o: %.cu
$(NVCC) $< $(CUFLAGS) -c -MMD -MP -o $@

-include $(OBJECTS:.o=.d)
-include $(BUILD)/cudabench.d
-include $(BUILD)/cudaprof.d

clean:
Expand Down
142 changes: 0 additions & 142 deletions tools/cudabench.cu

This file was deleted.

0 comments on commit 57e93ef

Please sign in to comment.