File tree Expand file tree Collapse file tree 8 files changed +328
-63
lines changed Expand file tree Collapse file tree 8 files changed +328
-63
lines changed Original file line number Diff line number Diff line change 57
57
- name : setupclang-win
58
58
if : matrix.c == '-DCMAKE_C_COMPILER=clang' && matrix.os == 'windows-11-arm' || matrix.os == 'windows-latest'
59
59
uses : egor-tensin/setup-clang@v1
60
-
60
+
61
+ - name : Install Vulkan SDK
62
+
61
63
62
64
- name : Test
63
65
run : ${{ matrix.bash }} ./test.sh ${{ matrix.c }} ${{ matrix.cc }} ${{ matrix.conf }}
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.20 )
2
2
enable_testing ()
3
3
option (ae2f_CXX "" ON )
4
- option (ae2fVK_needed "" OFF )
4
+ option (ae2fVK_needed "" ON )
5
5
option (ae2f_TEST "" ON )
6
6
option (ae2f_MAC_BUILD "" ON )
7
7
option (ae2f_IS_SHARED "" OFF )
8
- option (ae2f_DEVEL "" OFF )
8
+ option (ae2f_DEVEL "" ON )
9
9
10
10
include (cmake/Core.cmake )
11
11
@@ -65,7 +65,7 @@ if(NOT TARGET ae2f::Ann)
65
65
ae2f_CoreTestTent (${ae2f__Ann__TENT} "test/ann" )
66
66
endif ()
67
67
68
- if (ae2fVK_needed AND NOT TARGET ae2fVK::Ann )
68
+ if (NOT TARGET ae2fVK::Ann )
69
69
ae2f_CoreLibFetchX (ae2f VK-Core main )
70
70
file (GLOB AnnVK-inc ${PROJECT_SOURCE_DIR} /inc/ae2fVK/Ann/*.h )
71
71
@@ -84,6 +84,17 @@ if(ae2fVK_needed AND NOT TARGET ae2fVK::Ann)
84
84
${AnnVK-inc} ${AnnVK-src}
85
85
)
86
86
87
+ ae2f_Inc_init (100 100 100 ON ON ON )
88
+ ae2f_Macro_one (
89
+ ${PROJECT_SOURCE_DIR} /src/vk/Slp.glsl
90
+ ${PROJECT_SOURCE_DIR} /src/vk/Slp.auto.i.glsl
91
+ )
92
+ ae2f_Inc_Run_One (
93
+ ${PROJECT_SOURCE_DIR} /src/vk/Slp.auto.i.glsl
94
+ ${PROJECT_SOURCE_DIR} /src/vk/Slp.auto.glsl
95
+ )
96
+
97
+
87
98
add_library (ae2fVK::Ann ALIAS ${ae2fVK__VK-Ann__TENT} )
88
99
add_library (ae2f::VK-Ann ALIAS ${ae2fVK__VK-Ann__TENT} )
89
100
File renamed without changes.
Original file line number Diff line number Diff line change @@ -558,7 +558,7 @@ ae2f_MAC() _ae2f_AnnSlpMk(
558
558
ae2f_float_t learningrate_bias,
559
559
560
560
ae2f_opt ae2f_err_t * const err_opt
561
- )
561
+ )
562
562
{
563
563
if ((err_opt) && *(err_opt))
564
564
;
You can’t perform that action at this time.
0 commit comments