numo-openblas 0.5.0 → 0.5.1

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: 6f8c4ca1d2001e96161b86e7f49b9383d6d4011e859838533c01b704c6d44146
4
- data.tar.gz: fb2d59b0c3d38a0fc75fec19b74f1ed6ade347944e1eb29341fecec3ac665732
3
+ metadata.gz: cf40e512665cf76384e8c9e3f9fe1a8af60922a4ab56d35cc9bcd39d80284b50
4
+ data.tar.gz: 21c6c9c958b3896cb0c1a48c487167392ec2b4071afd34230f68f21ab21361aa
5
5
  SHA512:
6
- metadata.gz: 927f0f313aaab0292fb5280526f787a7315d620feb2c6783885eb79420b7ce43aa973319149fd92a609f23e890a6ad04d579f3361fcd11c0aae7ffbc97018aa9
7
- data.tar.gz: 15ac957497086c7f1c94e6e9d8dcc81af5bbfb2fa255110990bc14f74038f143d4da33a3ee6432cc88b49081f7aae6baad04359d3a24743e7afbcda6acc22286
6
+ metadata.gz: 4ec3a844f0a888262ec4a68f6d8a129192e0f7c2d5889ecee644ba973beef6e2712b24e14ce932d854a725ddae8e378a0ea144a9ccd58e619c24c75cfb1336a0
7
+ data.tar.gz: e1def7bd1ab8572444702244d39bab8347a7b26b8f01f0a606ba634206da72a18d872493c3a1a070604793a119cf5ca91e99a94455e4e3dda0bf1151ab7183da
data/CHANGELOG.md CHANGED
@@ -1,4 +1,9 @@
1
+ ## [[0.5.1](https://github.com/yoshoku/numo-openblas/compare/v0.5.0...v0.5.1)]
2
+
3
+ - Change the version of OpenBLAS to be downloaded to [0.3.30](https://github.com/OpenMathLib/OpenBLAS/releases/tag/v0.3.30).
4
+
1
5
  ## [[0.5.0](https://github.com/yoshoku/numo-openblas/compare/v0.4.16...v0.5.0)]
6
+
2
7
  - Add 'shared' target to make command of OpenBLAS for reducing build time.
3
8
 
4
9
  ## [[0.4.16](https://github.com/yoshoku/numo-openblas/compare/v0.4.15...v0.4.16)]
@@ -8,8 +8,8 @@ require 'open-uri'
8
8
  require 'open3'
9
9
  require 'rubygems/package'
10
10
 
11
- OPENBLAS_VER = '0.3.29'
12
- OPENBLAS_KEY = '853a0c5c0747c5943e7ef4bbb793162d'
11
+ OPENBLAS_VER = '0.3.30'
12
+ OPENBLAS_KEY = '8db3d57f4d4485c6ae3f21ea465660e7'
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.5.0'
8
+ VERSION = '0.5.1'
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: numo-openblas
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
@@ -65,7 +65,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
65
65
  - !ruby/object:Gem::Version
66
66
  version: '0'
67
67
  requirements: []
68
- rubygems_version: 3.6.7
68
+ rubygems_version: 3.6.9
69
69
  specification_version: 4
70
70
  summary: Numo::OpenBLAS downloads and builds OpenBLAS during installation and uses
71
71
  that as a background library for Numo::Linalg.