numo-openblas 0.5.1 → 0.5.2

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: cf40e512665cf76384e8c9e3f9fe1a8af60922a4ab56d35cc9bcd39d80284b50
4
- data.tar.gz: 21c6c9c958b3896cb0c1a48c487167392ec2b4071afd34230f68f21ab21361aa
3
+ metadata.gz: 8bdf5b440d195065a8e5030b2999e205d3dc8b65995ed6be7e0628277b8224df
4
+ data.tar.gz: d9c5e034f3170b40dcf884894d617dbdc67f23d2e32e473b431ea61e723a1c0b
5
5
  SHA512:
6
- metadata.gz: 4ec3a844f0a888262ec4a68f6d8a129192e0f7c2d5889ecee644ba973beef6e2712b24e14ce932d854a725ddae8e378a0ea144a9ccd58e619c24c75cfb1336a0
7
- data.tar.gz: e1def7bd1ab8572444702244d39bab8347a7b26b8f01f0a606ba634206da72a18d872493c3a1a070604793a119cf5ca91e99a94455e4e3dda0bf1151ab7183da
6
+ metadata.gz: 47e48e1c6a4275732a2b54e182070bcd8ac76a8948d9a5bedb90b100350468dcc40ae1601551e906861bcc2a4b7085f8a8dd19bafce0888a3f55141701c14583
7
+ data.tar.gz: 85af5feab3bea3305cd8bf3d05eaf450befa5ca55186459f1af98fb964cb1a93eda28f90f430289106910c92d33a78d59e2411fa8526bff4f286ad6a6b4569b3
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [[0.5.2](https://github.com/yoshoku/numo-openblas/compare/v0.5.1...v0.5.2)]
2
+
3
+ - Change the version of OpenBLAS to be downloaded to [0.3.31](https://github.com/OpenMathLib/OpenBLAS/releases/tag/v0.3.31).
4
+
1
5
  ## [[0.5.1](https://github.com/yoshoku/numo-openblas/compare/v0.5.0...v0.5.1)]
2
6
 
3
7
  - Change the version of OpenBLAS to be downloaded to [0.3.30](https://github.com/OpenMathLib/OpenBLAS/releases/tag/v0.3.30).
@@ -8,8 +8,8 @@ require 'open-uri'
8
8
  require 'open3'
9
9
  require 'rubygems/package'
10
10
 
11
- OPENBLAS_VER = '0.3.30'
12
- OPENBLAS_KEY = '8db3d57f4d4485c6ae3f21ea465660e7'
11
+ OPENBLAS_VER = '0.3.31'
12
+ OPENBLAS_KEY = '05050271d9196f65bc4ac3a89c6a3b05'
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.1'
8
+ VERSION = '0.5.2'
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.1
4
+ version: 0.5.2
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.9
68
+ rubygems_version: 4.0.3
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.