numo-openblas 0.5.1 → 0.5.3

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: 0bdb61f9c571cb6c7d7b63522b18ecd7332f46f37c56f174c49c404f6ba641d4
4
+ data.tar.gz: 4ace3c7b3076c456536a16c6d22e88bee7540e8eaacd9b30f2e2afbe66db71b8
5
5
  SHA512:
6
- metadata.gz: 4ec3a844f0a888262ec4a68f6d8a129192e0f7c2d5889ecee644ba973beef6e2712b24e14ce932d854a725ddae8e378a0ea144a9ccd58e619c24c75cfb1336a0
7
- data.tar.gz: e1def7bd1ab8572444702244d39bab8347a7b26b8f01f0a606ba634206da72a18d872493c3a1a070604793a119cf5ca91e99a94455e4e3dda0bf1151ab7183da
6
+ metadata.gz: 939fd7f2eb419ce9cc0f6628138a041103a2a80f385691c62eec32fc6a2aff382ebb38553e4a372519281da5d2eb97888460327ad2338e617f467dd6138917f1
7
+ data.tar.gz: ce576c3e63b1eea193d85cfd49811317b40239f1d2794734ac577a25d7974f11e7abf0b30c6b5b3fd84d8644ced1e8cd30a0de1d9251c38d24e1a1ab8d609e13
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [[0.5.3](https://github.com/yoshoku/numo-openblas/compare/v0.5.2...v0.5.3)]
2
+
3
+ - Change the version of OpenBLAS to be downloaded to [0.3.32](https://github.com/OpenMathLib/OpenBLAS/releases/tag/v0.3.322).
4
+
5
+ ## [[0.5.2](https://github.com/yoshoku/numo-openblas/compare/v0.5.1...v0.5.2)]
6
+
7
+ - Change the version of OpenBLAS to be downloaded to [0.3.31](https://github.com/OpenMathLib/OpenBLAS/releases/tag/v0.3.31).
8
+
1
9
  ## [[0.5.1](https://github.com/yoshoku/numo-openblas/compare/v0.5.0...v0.5.1)]
2
10
 
3
11
  - Change the version of OpenBLAS to be downloaded to [0.3.30](https://github.com/OpenMathLib/OpenBLAS/releases/tag/v0.3.30).
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Numo::OpenBLAS
2
2
 
3
+ **This library is no longer actively maintained. Please consider migrating to [numo-linalg-alt](https://github.com/yoshoku/numo-linalg-alt).**
4
+
3
5
  [![Build Status](https://github.com/yoshoku/numo-openblas/workflows/build/badge.svg)](https://github.com/yoshoku/numo-openblas/actions?query=workflow%3Abuild)
4
6
  [![Gem Version](https://badge.fury.io/rb/numo-openblas.svg)](https://badge.fury.io/rb/numo-openblas)
5
7
  [![BSD 3-Clause License](https://img.shields.io/badge/License-BSD%203--Clause-orange.svg)](https://github.com/yoshoku/numo-openblas/blob/main/LICENSE.txt)
@@ -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.32'
12
+ OPENBLAS_KEY = '021eb76c3fc66290b6ce14fa4c1ff3de'
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.3'
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.3
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.