numo-openblas 0.4.14 → 0.4.16

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: 0b5c53c2da8f20723549690434124826282240eb6cdec0307fc5eb83739958e9
4
- data.tar.gz: 9f7f801ee6c7881df8bfa766f3e659c7eec4d78c82951ee52cace5ca90bbd228
3
+ metadata.gz: 81f0638c96cfd312753b3e81b90138d1e2cd6e3ce51a7f035d53e45c35233e74
4
+ data.tar.gz: f7ab9044fa3dbdf578b0846db564011da3a7da023a2ab7d33c0be0ce1e17a0bc
5
5
  SHA512:
6
- metadata.gz: 3b680ab0abaf8689f62bec9374b0b0c09f23ddabf5c55b5562397ea3585647bebcc3484967acd9692c8ddc33e787259bfabc8492a7c67fab8b64b19d909ccca4
7
- data.tar.gz: 22dfa3fa14bad15db3921e5e97539848ef31f7016f9385cd05442bf44bd3ebb05cebd1dc83b72382cc351525c15321592a6e4fb50c1568af29de2a7f2fbe1471
6
+ metadata.gz: 9fa61da0e16aab40cd122052addfc87078d52f4bfcb811f3433af210564e1a0527daf744e1ead14031d1ba8cf30953e04aab960e23df1855eeca03b541652d70
7
+ data.tar.gz: 5f2fe7322e5f7449e0fc81a8912d805e1fa8081b09adeed363b70236d4146929db7d4b6feb7cada557e3e5ae124d20bf1fea8bfdc5e5ebbd43b784d0a33e4157
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [[0.4.16](https://github.com/yoshoku/numo-openblas/compare/v0.4.15...v0.4.16)]
2
+ - Change the version of OpenBLAS to be downloaded to [0.3.29](https://github.com/OpenMathLib/OpenBLAS/releases/tag/v0.3.29).
3
+
4
+ ## [[0.4.15](https://github.com/yoshoku/numo-openblas/compare/v0.4.14...v0.4.15)]
5
+ - Change the version of OpenBLAS to be downloaded to [0.3.28](https://github.com/OpenMathLib/OpenBLAS/releases/tag/v0.3.28).
6
+
1
7
  ## [[0.4.14](https://github.com/yoshoku/numo-openblas/compare/v0.4.13...v0.4.14)]
2
8
  - Change the version of OpenBLAS to be downloaded to [0.3.27](https://github.com/OpenMathLib/OpenBLAS/releases/tag/v0.3.27).
3
9
 
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2020-2024 Atsushi Tatsuma
1
+ Copyright (c) 2020-2025 Atsushi Tatsuma
2
2
  All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without
@@ -8,8 +8,8 @@ require 'open-uri'
8
8
  require 'open3'
9
9
  require 'rubygems/package'
10
10
 
11
- OPENBLAS_VER = '0.3.27'
12
- OPENBLAS_KEY = 'ef71c66ffeb1ab0f306a37de07d2667f'
11
+ OPENBLAS_VER = '0.3.29'
12
+ OPENBLAS_KEY = '853a0c5c0747c5943e7ef4bbb793162d'
13
13
  OPENBLAS_URI = "https://github.com/OpenMathLib/OpenBLAS/archive/v#{OPENBLAS_VER}.tar.gz"
14
14
  OPENBLAS_DIR = File.expand_path("#{__dir__}/../../../vendor")
15
15
 
@@ -5,6 +5,6 @@ module Numo
5
5
  # Numo::OpenBLAS loads Numo::NArray and Linalg with OpenBLAS used as backend library.
6
6
  module OpenBLAS
7
7
  # The version of Numo::OpenBLAS you install.
8
- VERSION = '0.4.14'
8
+ VERSION = '0.4.16'
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: numo-openblas
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.14
4
+ version: 0.4.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-04-06 00:00:00.000000000 Z
10
+ date: 2025-01-13 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: numo-linalg
@@ -52,7 +51,6 @@ metadata:
52
51
  changelog_uri: https://github.com/yoshoku/numo-openblas/blob/main/CHANGELOG.md
53
52
  documentation_uri: https://github.com/yoshoku/numo-openblas/blob/main/README.md
54
53
  rubygems_mfa_required: 'true'
55
- post_install_message:
56
54
  rdoc_options: []
57
55
  require_paths:
58
56
  - lib
@@ -67,8 +65,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
67
65
  - !ruby/object:Gem::Version
68
66
  version: '0'
69
67
  requirements: []
70
- rubygems_version: 3.5.7
71
- signing_key:
68
+ rubygems_version: 3.6.2
72
69
  specification_version: 4
73
70
  summary: Numo::OpenBLAS downloads and builds OpenBLAS during installation and uses
74
71
  that as a background library for Numo::Linalg.