File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,13 @@ jobs:
176
176
if : ${{ matrix.build == 'avx512' }}
177
177
continue-on-error : true
178
178
run : |
179
- echo "TODO: check avx512f"
179
+ cd build
180
+ $vcdir = $(vswhere -latest -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath)
181
+ $msvc = $(join-path $vcdir $('VC\Tools\MSVC\'+$(gc -raw $(join-path $vcdir 'VC\Auxiliary\Build\Microsoft.VCToolsVersion.default.txt')).Trim()))
182
+ $cl = $(join-path $msvc 'bin\Hostx64\x64\cl.exe')
183
+ echo 'int main(void){unsigned int a[4];__cpuid(a,7);return !(a[1]&65536);}' >> avx512f.c
184
+ & $cl /O2 /GS- /kernel avx512f.c /link /nodefaultlib /entry:main
185
+ .\avx512f.exe && echo "AVX512F: YES" && ( echo HAS_AVX512F=1 >> $env:GITHUB_ENV ) || echo "AVX512F: NO"
180
186
181
187
- name : Test
182
188
id : cmake_test
You can’t perform that action at this time.
0 commit comments