Browse Source

Processing AVX512 branch on all dotnet versions

tags/v0.8.1
Martin Evans 2 years ago
parent
commit
e9f5dbba89
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      LLama/Native/NativeLibraryConfig.cs

+ 0
- 2
LLama/Native/NativeLibraryConfig.cs View File

@@ -136,9 +136,7 @@ namespace LLama.Native
AvxLevel.None => string.Empty, AvxLevel.None => string.Empty,
AvxLevel.Avx => "avx", AvxLevel.Avx => "avx",
AvxLevel.Avx2 => "avx2", AvxLevel.Avx2 => "avx2",
#if NET8_0_OR_GREATER
AvxLevel.Avx512 => "avx512", AvxLevel.Avx512 => "avx512",
#endif
_ => throw new ArgumentException($"Unknown AvxLevel '{level}'") _ => throw new ArgumentException($"Unknown AvxLevel '{level}'")
}; };
} }


Loading…
Cancel
Save