numo-tiny_linalg 0.3.1 → 0.3.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 +4 -4
- data/CHANGELOG.md +3 -0
- data/ext/numo/tiny_linalg/extconf.rb +2 -2
- data/lib/numo/tiny_linalg/version.rb +1 -1
- metadata +5 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3379a2dcd3ccd4ec37e0d8edca6e10e954891df2fc563b78adb9709a7160df61
|
|
4
|
+
data.tar.gz: 4d52946c1fa66687c590aa5c591057756766b385317585104d75e16d519486b8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7238ec5a839348a060bb9eac27c3096600e489a9cf78f20e6bef608f84d1d2899e35e97b02180dfd3622ad966115c9fc0545cc471306418eed25039d15a89cfa
|
|
7
|
+
data.tar.gz: e15c5fa82989ca11aeca1eba79b6f690a20d4b3ad071b8a595bc469f16afc651df6ee1c9c92f9f9a01257354dae5b4b837a81e0e4ed6d6c9e87c725f38ea186b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [[0.3.2](https://github.com/yoshoku/numo-tiny_linalg/compare/v0.3.1...v0.4.0)] - 2023-09-04
|
|
4
|
+
- Bump OpenBLAS to be downloaded from 0.3.23 to 0.3.24.
|
|
5
|
+
|
|
3
6
|
## [[0.3.1](https://github.com/yoshoku/numo-tiny_linalg/compare/v0.3.0...v0.3.1)] - 2023-08-15
|
|
4
7
|
- Support automatic build of OpenBLAS on Windows.
|
|
5
8
|
- The author does not have a Windows PC. It will probably work.
|
|
@@ -47,8 +47,8 @@ if build_openblas
|
|
|
47
47
|
|
|
48
48
|
VENDOR_DIR = File.expand_path("#{__dir__}/../../../vendor")
|
|
49
49
|
TINYLINALG_DIR = File.expand_path("#{__dir__}/../../../lib/numo/tiny_linalg")
|
|
50
|
-
OPENBLAS_VER = '0.3.
|
|
51
|
-
OPENBLAS_KEY = '
|
|
50
|
+
OPENBLAS_VER = '0.3.24'
|
|
51
|
+
OPENBLAS_KEY = '23599a30e4ce887590957d94896789c8'
|
|
52
52
|
OPENBLAS_URI = "https://github.com/xianyi/OpenBLAS/archive/v#{OPENBLAS_VER}.tar.gz"
|
|
53
53
|
OPENBLAS_TGZ = "#{VENDOR_DIR}/tmp/openblas.tgz"
|
|
54
54
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: numo-tiny_linalg
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- yoshoku
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-09-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: numo-narray
|
|
@@ -24,10 +24,9 @@ dependencies:
|
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: 0.9.1
|
|
27
|
-
description:
|
|
28
|
-
of methods used in Machine Learning algorithms.
|
|
29
|
-
|
|
30
|
-
'
|
|
27
|
+
description: |
|
|
28
|
+
Numo::TinyLinalg is a subset library from Numo::Linalg consisting only of methods used in Machine Learning algorithms.
|
|
29
|
+
The functions Numo::TinyLinalg supports are dot, det, eigh, inv, pinv, qr, solve, cholesky, cho_solve and svd.
|
|
31
30
|
email:
|
|
32
31
|
- yoshoku@outlook.com
|
|
33
32
|
executables: []
|