public static bool IsAvailable(string hintPath = null) { if (_loaded) { return(true); } if (AppSwitches.DisableNativeProviders || AppSwitches.DisableCudaNativeProvider) { return(false); } try { if (!NativeProviderLoader.TryLoad(SafeNativeMethods.DllName, hintPath)) { return(false); } int a = SafeNativeMethods.query_capability(0); int b = SafeNativeMethods.query_capability(1); int nativeRevision = SafeNativeMethods.query_capability((int)ProviderConfig.Revision); return(a == 0 && b == -1 && nativeRevision >= MinimumCompatibleRevision); } catch { return(false); } }
/// <returns>Revision</returns> public static int Load(string hintPath = null) { if (_loaded) { return(_nativeRevision); } if (AppSwitches.DisableNativeProviders || AppSwitches.DisableCudaNativeProvider) { throw new NotSupportedException("CUDA Native Provider support is actively disabled by AppSwitches."); } int a, b; try { NativeProviderLoader.TryLoad(SafeNativeMethods.DllName, hintPath); a = SafeNativeMethods.query_capability(0); b = SafeNativeMethods.query_capability(1); _nativeRevision = SafeNativeMethods.query_capability((int)ProviderConfig.Revision); _nativeX86 = SafeNativeMethods.query_capability((int)ProviderPlatform.x86) > 0; _nativeX64 = SafeNativeMethods.query_capability((int)ProviderPlatform.x64) > 0; _nativeIA64 = SafeNativeMethods.query_capability((int)ProviderPlatform.ia64) > 0; } catch (DllNotFoundException e) { throw new NotSupportedException("Cuda Native Provider not found.", e); } catch (BadImageFormatException e) { throw new NotSupportedException("Cuda Native Provider found but failed to load. Please verify that the platform matches (x64 vs x32, Windows vs Linux).", e); } catch (EntryPointNotFoundException e) { throw new NotSupportedException("Cuda Native Provider does not support capability querying and is therefore not compatible. Consider upgrading to a newer version.", e); } if (a != 0 || b != -1 || _nativeRevision < MinimumCompatibleRevision) { throw new NotSupportedException("Cuda Native Provider too old. Consider upgrading to a newer version."); } _loaded = true; return(_nativeRevision); }