torch-rb 0.21.0 → 0.22.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1bed4c93f03c4aecffc8c8aee3ada9bc2b24c7a24374e624138dd2d74f2ec893
4
- data.tar.gz: d146d7528ded15065781fe3ecacf85b7da2e6d4ff38e0f27a869b1a158f48873
3
+ metadata.gz: c6d84711879346fb2ee772ba127520ab533b5171a05a0609aa5ed96ca244db4d
4
+ data.tar.gz: 0ad9c5a15d4e645240061fa19f3d56eb40770dfdc3594a1306ffde0c17792d5a
5
5
  SHA512:
6
- metadata.gz: c722f4cd32f6a718ffe8689d14f367f7086c6ed3ad6fbf1f813b35f93ab54b51732ffd2d3bbf2c6b049ae425be6b4d1606932ed711ca0c248d2b885ceb74d21f
7
- data.tar.gz: 1a1040215585b2683b3b150cb41298f56c145bb3aa4f7711924d00c08e427bbedaeee168cd5438c285d36422546fbff4fd13b92fe79ba721dcc479abfc44839e
6
+ metadata.gz: be84a03edc6bc7c62ac42ada37e104ed4df05f9fb7588730f2b8e5e9f6b2137dd7793b6bb71c85cd46b4ef8020c95fc9fef07aa2d4de86999c7ef683e955ad86
7
+ data.tar.gz: 669b7cc9d525c3a305d6c1eead7a65d0290da32c40049653d5f4a0c4fcc5d9650234b1f3c6027e91465d950944a746e738daea9ec775b02fdaffe33978feb650
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 0.22.0 (2025-10-15)
2
+
3
+ - Updated LibTorch to 2.9.0
4
+ - Improved error classes
5
+
1
6
  ## 0.21.0 (2025-08-07)
2
7
 
3
8
  - Updated LibTorch to 2.8.0
data/README.md CHANGED
@@ -22,7 +22,7 @@ As well as:
22
22
  First, [download LibTorch](https://pytorch.org/get-started/locally/). For Mac arm64, use:
23
23
 
24
24
  ```sh
25
- curl -L https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.8.0.zip > libtorch.zip
25
+ curl -L https://download.pytorch.org/libtorch/cpu/libtorch-macos-arm64-2.9.0.zip > libtorch.zip
26
26
  unzip -q libtorch.zip
27
27
  ```
28
28
 
@@ -418,12 +418,11 @@ Here’s the list of compatible versions.
418
418
 
419
419
  Torch.rb | LibTorch
420
420
  --- | ---
421
+ 0.22.x | 2.9.x
421
422
  0.21.x | 2.8.x
422
423
  0.20.x | 2.7.x
423
424
  0.19.x | 2.6.x
424
425
  0.18.x | 2.5.x
425
- 0.17.x | 2.4.x
426
- 0.16.x | 2.3.x
427
426
 
428
427
  ## Performance
429
428
 
@@ -55,7 +55,11 @@ def skip_functions(functions)
55
55
  f.base_name == "sym_storage_offset" ||
56
56
  f.base_name == "sym_stride" ||
57
57
  # TODO fix LibTorch 2.6 changes
58
- f.base_name == "rrelu_with_noise"
58
+ f.base_name == "rrelu_with_noise" ||
59
+ # TODO fix LibTorch 2.9 changes
60
+ f.base_name == "sym_is_contiguous" ||
61
+ f.base_name == "fbgemm_linear_fp16_weight" ||
62
+ f.base_name == "fbgemm_linear_fp16_weight_fp32_activation"
59
63
  end
60
64
  end
61
65