File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 30
30
sudo apt-get install -y libxrandr-dev
31
31
32
32
- name : Build
33
- run : make all
33
+ run : make all-portable
34
34
35
35
- name : Run hello world
36
36
run : make
Original file line number Diff line number Diff line change @@ -69,6 +69,15 @@ all: dawnlib check-clang check-linux-vulkan lib pch
69
69
cd examples/shadertui && make build/shadertui
70
70
cd examples/transpose && make build/transpose
71
71
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
+
72
81
# Test 16-bit floating point type
73
82
test-half : dawnlib check-clang
74
83
$(LIBSPEC ) && clang++ -std=c++17 $(INCLUDES ) numeric_types/half.cpp -L$(LIBDIR ) -lwebgpu_dawn -ldl -o build/half && ./build/half
You can’t perform that action at this time.
0 commit comments