From 4ec7d5db02b3393b8bdadccd576d52182013e014 Mon Sep 17 00:00:00 2001 From: cm4ker Date: Fri, 20 Feb 2026 00:07:56 +0600 Subject: [PATCH 1/6] Windows Arm Support --- Directory.Build.props | 14 +++--- Directory.Build.targets | 25 ++++++++-- pkg/TorchAudio/TorchAudio.nupkgproj | 2 +- pkg/TorchVision/TorchVision.nupkgproj | 2 +- .../libtorch-cpu-win-arm64.nupkgproj | 16 ++++++ pkg/libtorch-cpu/libtorch-cpu.nupkgproj | 1 + pkg/pack.proj | 6 ++- src/Native/build.cmd | 19 +++---- src/Native/gen-buildsys-win.bat | 1 + src/Redist/libtorch-cpu/libtorch-cpu.proj | 16 +++++- ...arm64-shared-with-deps-2.7.1%2Bcpu.zip.sha | 1 + ...shared-with-deps-debug-2.7.1%2Bcpu.zip.sha | 1 + src/TorchSharp/Torch.cs | 50 +++++++++++++++++-- 13 files changed, 122 insertions(+), 32 deletions(-) create mode 100644 pkg/libtorch-cpu-win-arm64/libtorch-cpu-win-arm64.nupkgproj create mode 100644 src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-2.7.1%2Bcpu.zip.sha create mode 100644 src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-debug-2.7.1%2Bcpu.zip.sha diff --git a/Directory.Build.props b/Directory.Build.props index e8e44ee50..8beac9f83 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -52,14 +52,13 @@ mac linux + $(TargetOS)-$(TargetArchitecture) - win-x64 + win-arm64 + win-x64 linux-x64 osx-arm64 - - win-x64 - linux-x64 osx-$(TargetArchitecture) @@ -95,8 +94,8 @@ - true - false + true + false false @@ -141,7 +140,8 @@ cpu cu$(CudaVersionNoDot) libtorch-win-shared-with-deps$(LibTorchDebug) - libtorch-shared-with-deps + libtorch-win-arm64-shared-with-deps$(LibTorchDebug) + libtorch-cxx11-abi-shared-with-deps libtorch-macos-x86_64 libtorch-macos-arm64 $(LibTorchArchiveCoreName)-$(LibTorchVersion)$(LibTorchCpuArchiveNameSuffix) diff --git a/Directory.Build.targets b/Directory.Build.targets index 4ab3c814c..d8588f1ab 100644 --- a/Directory.Build.targets +++ b/Directory.Build.targets @@ -1,7 +1,12 @@ - + + + + + + - + @@ -18,6 +23,20 @@ + + + + + + + + + + + + + + @@ -113,5 +132,5 @@ - + \ No newline at end of file diff --git a/pkg/TorchAudio/TorchAudio.nupkgproj b/pkg/TorchAudio/TorchAudio.nupkgproj index 52735b7c6..69dbe72cc 100644 --- a/pkg/TorchAudio/TorchAudio.nupkgproj +++ b/pkg/TorchAudio/TorchAudio.nupkgproj @@ -8,7 +8,7 @@ - + diff --git a/pkg/TorchVision/TorchVision.nupkgproj b/pkg/TorchVision/TorchVision.nupkgproj index fd9446c25..269ae9b3c 100644 --- a/pkg/TorchVision/TorchVision.nupkgproj +++ b/pkg/TorchVision/TorchVision.nupkgproj @@ -8,7 +8,7 @@ - + diff --git a/pkg/libtorch-cpu-win-arm64/libtorch-cpu-win-arm64.nupkgproj b/pkg/libtorch-cpu-win-arm64/libtorch-cpu-win-arm64.nupkgproj new file mode 100644 index 000000000..766c20d0d --- /dev/null +++ b/pkg/libtorch-cpu-win-arm64/libtorch-cpu-win-arm64.nupkgproj @@ -0,0 +1,16 @@ + + + + netstandard2.0 + + + + + + + + + + + + \ No newline at end of file diff --git a/pkg/libtorch-cpu/libtorch-cpu.nupkgproj b/pkg/libtorch-cpu/libtorch-cpu.nupkgproj index 97c3ffe67..97296c6c8 100644 --- a/pkg/libtorch-cpu/libtorch-cpu.nupkgproj +++ b/pkg/libtorch-cpu/libtorch-cpu.nupkgproj @@ -8,6 +8,7 @@ + diff --git a/pkg/pack.proj b/pkg/pack.proj index 3c9db2f98..d5f0f86f3 100644 --- a/pkg/pack.proj +++ b/pkg/pack.proj @@ -22,8 +22,10 @@ - + + diff --git a/src/Native/build.cmd b/src/Native/build.cmd index c0c26c600..cdb32d2fb 100644 --- a/src/Native/build.cmd +++ b/src/Native/build.cmd @@ -23,6 +23,7 @@ if /i [%1] == [Debug] ( set CMAKE_BUILD_TYPE=Debug&&shift&goto Arg_Loop) if /i [%1] == [x86] ( set __BuildArch=x86&&set __VCBuildArch=x86&&shift&goto Arg_Loop) if /i [%1] == [x64] ( set __BuildArch=x64&&set __VCBuildArch=x86_amd64&&shift&goto Arg_Loop) if /i [%1] == [amd64] ( set __BuildArch=x64&&set __VCBuildArch=x86_amd64&&shift&goto Arg_Loop) +if /i [%1] == [arm64] ( set __BuildArch=arm64&&set __VCBuildArch=x86_arm64&&shift&goto Arg_Loop) if /i [%1] == [--libtorchpath] ( set LIBTORCH_PATH=%2&&shift&goto Arg_Loop) @@ -86,30 +87,24 @@ goto :SetupDirs :: Setup vars for VS2019 set __PlatformToolset=v142 set __VSVersion=16 2019 -if NOT "%__BuildArch%" == "arm64" ( - :: Set the environment for the native build - call "%VS160COMNTOOLS%..\..\VC\Auxiliary\Build\vcvarsall.bat" %__VCBuildArch% -) +:: Set the environment for the native build +call "%VS160COMNTOOLS%..\..\VC\Auxiliary\Build\vcvarsall.bat" %__VCBuildArch% goto :SetupDirs :VS2017 :: Setup vars for VS2017 set __PlatformToolset=v141 set __VSVersion=15 2017 -if NOT "%__BuildArch%" == "arm64" ( - :: Set the environment for the native build - call "%VS150COMNTOOLS%..\..\VC\Auxiliary\Build\vcvarsall.bat" %__VCBuildArch% -) +:: Set the environment for the native build +call "%VS150COMNTOOLS%..\..\VC\Auxiliary\Build\vcvarsall.bat" %__VCBuildArch% goto :SetupDirs :VS2015 :: Setup vars for VS2015build set __PlatformToolset=v140 set __VSVersion=14 2015 -if NOT "%__BuildArch%" == "arm64" ( - :: Set the environment for the native build - call "%VS140COMNTOOLS%..\..\VC\vcvarsall.bat" %__VCBuildArch% -) +:: Set the environment for the native build +call "%VS140COMNTOOLS%..\..\VC\vcvarsall.bat" %__VCBuildArch% :SetupDirs :: Setup to cmake the native components diff --git a/src/Native/gen-buildsys-win.bat b/src/Native/gen-buildsys-win.bat index b3870c171..e8ec2fd39 100644 --- a/src/Native/gen-buildsys-win.bat +++ b/src/Native/gen-buildsys-win.bat @@ -30,6 +30,7 @@ popd :: Set the target architecture to a format cmake understands. if /i "%3" == "x64" (set __ExtraCmakeParams=%__ExtraCmakeParams% -A x64) if /i "%3" == "x86" (set __ExtraCmakeParams=%__ExtraCmakeParams% -A Win32) +if /i "%3" == "arm64" (set __ExtraCmakeParams=%__ExtraCmakeParams% -A ARM64) echo "%CMakePath%" "-DCMAKE_BUILD_TYPE=%CMAKE_BUILD_TYPE%" "-DCMAKE_INSTALL_PREFIX=%__CMakeBinDir%" "-DLIBTORCH_PATH=%LIBTORCH_PATH%" -G "Visual Studio %__VSString%" %__ExtraCmakeParams% -B. -H%1 "%CMakePath%" "-DCMAKE_BUILD_TYPE=%CMAKE_BUILD_TYPE%" "-DCMAKE_INSTALL_PREFIX=%__CMakeBinDir%" "-DLIBTORCH_PATH=%LIBTORCH_PATH%" -G "Visual Studio %__VSString%" %__ExtraCmakeParams% -B. -H%1 diff --git a/src/Redist/libtorch-cpu/libtorch-cpu.proj b/src/Redist/libtorch-cpu/libtorch-cpu.proj index adc8ba013..a1470611c 100644 --- a/src/Redist/libtorch-cpu/libtorch-cpu.proj +++ b/src/Redist/libtorch-cpu/libtorch-cpu.proj @@ -30,7 +30,8 @@ $(MainPackageFolder)\.copied.SkipTests.$(SkipTests).IncludeLibTorchCpuPackages.$(IncludeLibTorchCpuPackages) - + + @@ -39,6 +40,19 @@ + + + + + + + + + + + + + diff --git a/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-2.7.1%2Bcpu.zip.sha b/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-2.7.1%2Bcpu.zip.sha new file mode 100644 index 000000000..2a96235c2 --- /dev/null +++ b/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-2.7.1%2Bcpu.zip.sha @@ -0,0 +1 @@ +F9DD47C792C900601F08265DDC0186036E01503ADA7895F0C7C90F8AF64FBC4B diff --git a/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-debug-2.7.1%2Bcpu.zip.sha b/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-debug-2.7.1%2Bcpu.zip.sha new file mode 100644 index 000000000..f35825d9a --- /dev/null +++ b/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-debug-2.7.1%2Bcpu.zip.sha @@ -0,0 +1 @@ +DFDD2BECA32B1B3D4894EFA801DC60570849F0ED47A318734BA798A5C4D6513B diff --git a/src/TorchSharp/Torch.cs b/src/TorchSharp/Torch.cs index dd7a07689..4711414a2 100644 --- a/src/TorchSharp/Torch.cs +++ b/src/TorchSharp/Torch.cs @@ -38,13 +38,13 @@ public static partial class torch RuntimeInformation.OSArchitecture == Architecture.Arm64; static string nativeRid => - RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? $"win-x64" : + RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? ($"win-{(RuntimeInformation.OSArchitecture == Architecture.Arm64 ? "arm64" : "x64")}") : RuntimeInformation.IsOSPlatform(OSPlatform.Linux) ? $"linux-x64" : isAppleSilicon ? "osx-arm64" : "any"; static string nativeGlob => - RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? @".*\.dll" : + RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? @".*\.dll(\.dll)?" : RuntimeInformation.IsOSPlatform(OSPlatform.OSX) ? @".*\.dylib\.*" : // must match // lib.so @@ -129,7 +129,7 @@ private static void LoadNativeBackend(bool useCudaBackend, out StringBuilder? tr if (useCudaBackend) { var isWindows = RuntimeInformation.IsOSPlatform(OSPlatform.Windows); - if (isWindows) { + if (isWindows && RuntimeInformation.OSArchitecture != Architecture.Arm64) { trace.AppendLine($" Try loading Windows cuda native components"); // Preloading these DLLs on windows seems to iron out problems where one native DLL // requests a load of another through dynamic linking techniques. @@ -152,9 +152,49 @@ private static void LoadNativeBackend(bool useCudaBackend, out StringBuilder? tr ok = TryLoadNativeLibraryByName("torch_cuda", typeof(torch).Assembly, trace); ok = TryLoadNativeLibraryByName("LibTorchSharp", typeof(torch).Assembly, trace); + + // On Windows, also attempt direct absolute-path loads from the assembly directory + if (!ok && isWindows) { + var asmDir = Path.GetDirectoryName(typeof(torch).Assembly.Location)!; + var torchCudaPath = Path.Combine(asmDir, "torch_cuda.dll"); + var libTorchSharpPath = Path.Combine(asmDir, "LibTorchSharp.dll"); + trace.AppendLine($" Attempting absolute-path load of native components from {asmDir}..."); + ok = TryLoadNativeLibraryFromFile(torchCudaPath, trace); + if (ok) ok = TryLoadNativeLibraryFromFile(libTorchSharpPath, trace); + } } else { - ok = TryLoadNativeLibraryByName("torch_cpu", typeof(torch).Assembly, trace); - ok = TryLoadNativeLibraryByName("LibTorchSharp", typeof(torch).Assembly, trace); + var isWindows = RuntimeInformation.IsOSPlatform(OSPlatform.Windows); + if (isWindows) { + // Preload dependency chain explicitly on Windows: torch_global_deps -> c10 -> uv -> torch -> torch_cpu -> LibTorchSharp + trace.AppendLine($" Try loading Windows CPU native dependency chain: torch_global_deps -> c10 -> uv -> torch -> torch_cpu -> LibTorchSharp"); + ok = TryLoadNativeLibraryByName("torch_global_deps", typeof(torch).Assembly, trace); + if (ok) ok = TryLoadNativeLibraryByName("c10", typeof(torch).Assembly, trace); + if (ok) ok = TryLoadNativeLibraryByName("uv", typeof(torch).Assembly, trace); + if (ok) ok = TryLoadNativeLibraryByName("torch", typeof(torch).Assembly, trace); + if (ok) ok = TryLoadNativeLibraryByName("torch_cpu", typeof(torch).Assembly, trace); + if (ok) ok = TryLoadNativeLibraryByName("LibTorchSharp", typeof(torch).Assembly, trace); + } else { + ok = TryLoadNativeLibraryByName("torch_cpu", typeof(torch).Assembly, trace); + if (ok) ok = TryLoadNativeLibraryByName("LibTorchSharp", typeof(torch).Assembly, trace); + } + + // On Windows, also attempt direct absolute-path loads from the assembly directory + if (!ok && isWindows) { + var asmDir = Path.GetDirectoryName(typeof(torch).Assembly.Location)!; + var torchGlobalDepsPath = Path.Combine(asmDir, "torch_global_deps.dll"); + var c10Path = Path.Combine(asmDir, "c10.dll"); + var uvPath = Path.Combine(asmDir, "uv.dll"); + var torchPath = Path.Combine(asmDir, "torch.dll"); + var torchCpuPath = Path.Combine(asmDir, "torch_cpu.dll"); + var libTorchSharpPath = Path.Combine(asmDir, "LibTorchSharp.dll"); + trace.AppendLine($" Attempting absolute-path load of native components from {asmDir}..."); + ok = TryLoadNativeLibraryFromFile(torchGlobalDepsPath, trace); + if (ok) ok = TryLoadNativeLibraryFromFile(c10Path, trace); + if (ok) ok = TryLoadNativeLibraryFromFile(uvPath, trace); + if (ok) ok = TryLoadNativeLibraryFromFile(torchPath, trace); + if (ok) ok = TryLoadNativeLibraryFromFile(torchCpuPath, trace); + if (ok) ok = TryLoadNativeLibraryFromFile(libTorchSharpPath, trace); + } } trace.AppendLine($" Result from regular native load of LibTorchSharp is {ok}"); From c39acc37e805377f541d84c476910dbd1d6d1180 Mon Sep 17 00:00:00 2001 From: cm4ker Date: Sun, 31 Aug 2025 02:47:26 +0600 Subject: [PATCH 2/6] Update src/TorchSharp/Torch.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/TorchSharp/Torch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TorchSharp/Torch.cs b/src/TorchSharp/Torch.cs index 4711414a2..5e46fc5de 100644 --- a/src/TorchSharp/Torch.cs +++ b/src/TorchSharp/Torch.cs @@ -44,7 +44,7 @@ public static partial class torch "any"; static string nativeGlob => - RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? @".*\.dll(\.dll)?" : + RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? @".*\.dll$" : RuntimeInformation.IsOSPlatform(OSPlatform.OSX) ? @".*\.dylib\.*" : // must match // lib.so From af4f5bd730fe25ff0e8668845eec5f6130bde8a1 Mon Sep 17 00:00:00 2001 From: cm4ker Date: Sun, 31 Aug 2025 02:48:03 +0600 Subject: [PATCH 3/6] Update src/TorchSharp/Torch.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/TorchSharp/Torch.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/TorchSharp/Torch.cs b/src/TorchSharp/Torch.cs index 5e46fc5de..d73b11a22 100644 --- a/src/TorchSharp/Torch.cs +++ b/src/TorchSharp/Torch.cs @@ -129,7 +129,8 @@ private static void LoadNativeBackend(bool useCudaBackend, out StringBuilder? tr if (useCudaBackend) { var isWindows = RuntimeInformation.IsOSPlatform(OSPlatform.Windows); - if (isWindows && RuntimeInformation.OSArchitecture != Architecture.Arm64) { + // CUDA is not supported on Windows ARM64. Only attempt to load CUDA components on Windows x64. + if (isWindows && RuntimeInformation.OSArchitecture == Architecture.X64) { trace.AppendLine($" Try loading Windows cuda native components"); // Preloading these DLLs on windows seems to iron out problems where one native DLL // requests a load of another through dynamic linking techniques. From 4b99c29e0195374552bedbf43b6297cf14cfde8e Mon Sep 17 00:00:00 2001 From: cm4ker Date: Fri, 20 Feb 2026 00:17:50 +0600 Subject: [PATCH 4/6] Fix win-arm64 libtorch SHA for 2.10 --- Directory.Build.props | 4 ++-- .../libtorch-win-arm64-shared-with-deps-2.10.0%2Bcpu.zip.sha | 1 + .../libtorch-win-arm64-shared-with-deps-2.7.1%2Bcpu.zip.sha | 1 - ...torch-win-arm64-shared-with-deps-debug-2.7.1%2Bcpu.zip.sha | 1 - 4 files changed, 3 insertions(+), 4 deletions(-) create mode 100644 src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-2.10.0%2Bcpu.zip.sha delete mode 100644 src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-2.7.1%2Bcpu.zip.sha delete mode 100644 src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-debug-2.7.1%2Bcpu.zip.sha diff --git a/Directory.Build.props b/Directory.Build.props index 8beac9f83..5b58796b8 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -61,8 +61,8 @@ osx-arm64 osx-$(TargetArchitecture) - - -debug + + -debug $(BaseOutputPath)$(NativeTargetArchitecture).$(NativeConfiguration)\Native\ $(NativeOutputPath)cuda\ diff --git a/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-2.10.0%2Bcpu.zip.sha b/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-2.10.0%2Bcpu.zip.sha new file mode 100644 index 000000000..71c5d048e --- /dev/null +++ b/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-2.10.0%2Bcpu.zip.sha @@ -0,0 +1 @@ +38D666A9030BA098D1AC5DABFD995CF3D113A12D512252080978B0CC206AF205 \ No newline at end of file diff --git a/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-2.7.1%2Bcpu.zip.sha b/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-2.7.1%2Bcpu.zip.sha deleted file mode 100644 index 2a96235c2..000000000 --- a/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-2.7.1%2Bcpu.zip.sha +++ /dev/null @@ -1 +0,0 @@ -F9DD47C792C900601F08265DDC0186036E01503ADA7895F0C7C90F8AF64FBC4B diff --git a/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-debug-2.7.1%2Bcpu.zip.sha b/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-debug-2.7.1%2Bcpu.zip.sha deleted file mode 100644 index f35825d9a..000000000 --- a/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-debug-2.7.1%2Bcpu.zip.sha +++ /dev/null @@ -1 +0,0 @@ -DFDD2BECA32B1B3D4894EFA801DC60570849F0ED47A318734BA798A5C4D6513B From a2e420128f52a81b87a57c0ee9f1f68094aedde5 Mon Sep 17 00:00:00 2001 From: cm4ker Date: Fri, 20 Feb 2026 00:29:21 +0600 Subject: [PATCH 5/6] Add win-arm64 debug libtorch SHA (2.10) --- Directory.Build.props | 4 ++-- ...orch-win-arm64-shared-with-deps-debug-2.10.0%2Bcpu.zip.sha | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-debug-2.10.0%2Bcpu.zip.sha diff --git a/Directory.Build.props b/Directory.Build.props index 5b58796b8..9e426f5b1 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -61,8 +61,8 @@ osx-arm64 osx-$(TargetArchitecture) - - -debug + + -debug $(BaseOutputPath)$(NativeTargetArchitecture).$(NativeConfiguration)\Native\ $(NativeOutputPath)cuda\ diff --git a/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-debug-2.10.0%2Bcpu.zip.sha b/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-debug-2.10.0%2Bcpu.zip.sha new file mode 100644 index 000000000..6ad3f997b --- /dev/null +++ b/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-debug-2.10.0%2Bcpu.zip.sha @@ -0,0 +1 @@ +A6B6C3D9FF25113F8E48F6C7A5DD14EFCA5BCA6DE300DE0BD003FCC309439F2C \ No newline at end of file From 1b9222aeaf69133e9983ee90838c8934ad0cab9a Mon Sep 17 00:00:00 2001 From: cm4ker Date: Fri, 20 Feb 2026 00:34:23 +0600 Subject: [PATCH 6/6] Restore win-arm64 libtorch 2.7.1 SHA files --- .../libtorch-win-arm64-shared-with-deps-2.7.1%2Bcpu.zip.sha | 1 + ...libtorch-win-arm64-shared-with-deps-debug-2.7.1%2Bcpu.zip.sha | 1 + 2 files changed, 2 insertions(+) create mode 100644 src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-2.7.1%2Bcpu.zip.sha create mode 100644 src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-debug-2.7.1%2Bcpu.zip.sha diff --git a/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-2.7.1%2Bcpu.zip.sha b/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-2.7.1%2Bcpu.zip.sha new file mode 100644 index 000000000..7ea48d2ae --- /dev/null +++ b/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-2.7.1%2Bcpu.zip.sha @@ -0,0 +1 @@ +F9DD47C792C900601F08265DDC0186036E01503ADA7895F0C7C90F8AF64FBC4B \ No newline at end of file diff --git a/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-debug-2.7.1%2Bcpu.zip.sha b/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-debug-2.7.1%2Bcpu.zip.sha new file mode 100644 index 000000000..de33cca0b --- /dev/null +++ b/src/Redist/libtorch-cpu/libtorch-win-arm64-shared-with-deps-debug-2.7.1%2Bcpu.zip.sha @@ -0,0 +1 @@ +DFDD2BECA32B1B3D4894EFA801DC60570849F0ED47A318734BA798A5C4D6513B \ No newline at end of file