torch-rb 0.24.0 → 0.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +2 -4
- data/codegen/native_functions.yaml +74 -554
- data/ext/torch/extconf.rb +1 -1
- data/ext/torch/utils.h +1 -1
- data/lib/torch/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2eb7edfd72c2ee6f81637001d69c52090e3013cdd8e7580d7b66b10d2f00b644
|
|
4
|
+
data.tar.gz: ccaeacce8afeca570ef26adad36082a4872320426001023ff32c91f8284a6864
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3d71a4a3a1973a84203892b3416442dfd96810a2d099b4420ff64db8fb70bf15477537171977c452a3c48965b759c15f7300298311e41d542ba21cf09e2d46db
|
|
7
|
+
data.tar.gz: 60930fd8e3f922de83e97c64907b7c616116bc1a5b82663b2b30cff59ebe8f39fd7e35a12f07f99e857406cc9a84010c654765ed75b3389410431363cb2e8017
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -23,7 +23,7 @@ As well as:
|
|
|
23
23
|
First, [download LibTorch](https://pytorch.org/get-started/locally/). For Mac arm64, use:
|
|
24
24
|
|
|
25
25
|
```sh
|
|
26
|
-
curl -L https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.
|
|
26
|
+
curl -L https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.13.0.zip > libtorch.zip
|
|
27
27
|
unzip -q libtorch.zip
|
|
28
28
|
```
|
|
29
29
|
|
|
@@ -419,13 +419,11 @@ Here’s the list of compatible versions.
|
|
|
419
419
|
|
|
420
420
|
Torch.rb | LibTorch
|
|
421
421
|
--- | ---
|
|
422
|
+
0.25.x | 2.13.x
|
|
422
423
|
0.24.x | 2.12.x
|
|
423
424
|
0.23.x | 2.10.x
|
|
424
425
|
0.22.x | 2.9.x
|
|
425
426
|
0.21.x | 2.8.x
|
|
426
|
-
0.20.x | 2.7.x
|
|
427
|
-
0.19.x | 2.6.x
|
|
428
|
-
0.18.x | 2.5.x
|
|
429
427
|
|
|
430
428
|
## Performance
|
|
431
429
|
|