Skip to content

Commit 7dc064c

Browse files
committedFeb 2, 2025·
test float16 in CI
1 parent a8a44d3 commit 7dc064c

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed
 

‎.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
sudo apt-get install -y libxrandr-dev
3131
3232
- name: Build
33-
run: make all-portable
33+
run: make all
3434

3535
- name: Run hello world
3636
run: make

‎Makefile

-9
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,6 @@ all: dawnlib check-clang check-linux-vulkan lib pch
6969
cd examples/shadertui && make build/shadertui
7070
cd examples/transpose && make build/transpose
7171

72-
all-portable: dawnlib check-clang check-linux-vulkan lib pch
73-
cd examples/gpu_puzzles && make build/gpu_puzzles
74-
cd examples/hello_world && make build/hello_world
75-
cd examples/matmul && export MATMUL_VERSION=9 && make build/matmul
76-
cd examples/physics && make build/physics
77-
cd examples/render && make build/render
78-
cd examples/shadertui && make build/shadertui
79-
cd examples/transpose && make build/transpose
80-
8172
# Test 16-bit floating point type
8273
test-half: dawnlib check-clang
8374
$(LIBSPEC) && clang++ -std=c++17 $(INCLUDES) numeric_types/half.cpp -L$(LIBDIR) -lwebgpu_dawn -ldl -o build/half && ./build/half

0 commit comments

Comments
 (0)
Please sign in to comment.