numo-openblas 0.5.2 → 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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +2 -0
- data/ext/numo/openblas/extconf.rb +2 -2
- data/lib/numo/openblas/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0bdb61f9c571cb6c7d7b63522b18ecd7332f46f37c56f174c49c404f6ba641d4
|
|
4
|
+
data.tar.gz: 4ace3c7b3076c456536a16c6d22e88bee7540e8eaacd9b30f2e2afbe66db71b8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 939fd7f2eb419ce9cc0f6628138a041103a2a80f385691c62eec32fc6a2aff382ebb38553e4a372519281da5d2eb97888460327ad2338e617f467dd6138917f1
|
|
7
|
+
data.tar.gz: ce576c3e63b1eea193d85cfd49811317b40239f1d2794734ac577a25d7974f11e7abf0b30c6b5b3fd84d8644ced1e8cd30a0de1d9251c38d24e1a1ab8d609e13
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
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
|
+
|
|
1
5
|
## [[0.5.2](https://github.com/yoshoku/numo-openblas/compare/v0.5.1...v0.5.2)]
|
|
2
6
|
|
|
3
7
|
- Change the version of OpenBLAS to be downloaded to [0.3.31](https://github.com/OpenMathLib/OpenBLAS/releases/tag/v0.3.31).
|
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
|
[](https://github.com/yoshoku/numo-openblas/actions?query=workflow%3Abuild)
|
|
4
6
|
[](https://badge.fury.io/rb/numo-openblas)
|
|
5
7
|
[](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.
|
|
12
|
-
OPENBLAS_KEY = '
|
|
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
|
|