From bc2e2f6547df2f26dc6a172f169c97fdbad3e65c Mon Sep 17 00:00:00 2001 From: Kleis Auke Wolthuizen Date: Sat, 18 Nov 2023 11:25:14 +0100 Subject: [PATCH] Remove mentions of liborc' run-time compiler libvips 8.15 uses Highway instead, see: https://libvips.org/2023/10/10/What's-new-in-8.15.html#performance-improvements --- src/NetVips/NetVips.cs | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/src/NetVips/NetVips.cs b/src/NetVips/NetVips.cs index 4cc5a55e..0e6bc891 100644 --- a/src/NetVips/NetVips.cs +++ b/src/NetVips/NetVips.cs @@ -162,14 +162,9 @@ public static int Concurrency } /// - /// Enable or disable SIMD and the run-time compiler. + /// Enable or disable SIMD. /// - /// - /// This can give a nice speed-up, but can also be unstable on - /// some systems or with some versions of the run-time compiler. - /// - /// Bool indicating if SIMD and the run-time - /// compiler should be turned on. + /// Bool indicating if SIMD should be turned on. [Obsolete("NetVips.VectorSet is deprecated, please use the NetVips.Vector setter instead.")] public static void VectorSet(bool enabled) { @@ -177,12 +172,8 @@ public static void VectorSet(bool enabled) } /// - /// Enable or disable SIMD and the run-time compiler. + /// Enable or disable SIMD. /// - /// - /// This can give a nice speed-up, but can also be unstable on - /// some systems or with some versions of the run-time compiler. - /// public static bool Vector { get => Vips.VectorIsEnabled();