This repository has been archived by the owner on May 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NgsLoaderConfig.xml
55 lines (52 loc) · 2.11 KB
/
NgsLoaderConfig.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="UTF-8"?>
<LoaderConfig>
<Image Path="libngsengine-fma3.dylib">
<SupportsPlatform>OSX</SupportsPlatform>
<RequiresProcessorFeature>FMA3</RequiresProcessorFeature>
<RequiresProcessorFeature>AVX2</RequiresProcessorFeature>
</Image>
<Image Path="libngsengine-avx2.dylib">
<SupportsPlatform>OSX</SupportsPlatform>
<RequiresProcessorFeature>AVX2</RequiresProcessorFeature>
</Image>
<Image Path="libngsengine-avx.dylib">
<SupportsPlatform>OSX</SupportsPlatform>
<RequiresProcessorFeature>AVX</RequiresProcessorFeature>
</Image>
<Image Path="libngsengine-fma3.so">
<SupportsPlatform>Linux</SupportsPlatform>
<RequiresProcessorFeature>FMA3</RequiresProcessorFeature>
<RequiresProcessorFeature>AVX2</RequiresProcessorFeature>
</Image>
<Image Path="libngsengine-avx2.so">
<SupportsPlatform>Linux</SupportsPlatform>
<RequiresProcessorFeature>AVX2</RequiresProcessorFeature>
</Image>
<Image Path="libngsengine-avx.so">
<SupportsPlatform>Linux</SupportsPlatform>
<RequiresProcessorFeature>AVX</RequiresProcessorFeature>
</Image>
<Image Path="ngsengine-fma3.dll">
<SupportsPlatform>Windows</SupportsPlatform>
<RequiresProcessorFeature>FMA3</RequiresProcessorFeature>
<RequiresProcessorFeature>AVX2</RequiresProcessorFeature>
</Image>
<Image Path="ngsengine-avx2.dll">
<SupportsPlatform>Windows</SupportsPlatform>
<RequiresProcessorFeature>AVX2</RequiresProcessorFeature>
</Image>
<Image Path="ngsengine-avx.dll">
<SupportsPlatform>Windows</SupportsPlatform>
<RequiresProcessorFeature>AVX</RequiresProcessorFeature>
</Image>
<!-- The generic version that requires minimum features -->
<Image Path="libngsengine.dylib">
<SupportsPlatform>OSX</SupportsPlatform>
</Image>
<Image Path="libngsengine.so">
<SupportsPlatform>Linux</SupportsPlatform>
</Image>
<Image Path="ngsengine.dll">
<SupportsPlatform>Windows</SupportsPlatform>
</Image>
</LoaderConfig>