numo-tiny_linalg 0.3.3 → 0.3.4

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: d37da5bae8e6c01756da489bd80912f9ece5174bfffc5f0b229571fd3fc361ae
4
- data.tar.gz: dc0760b99d157b8ef8acbfd39171e3a8edf82c9055217b9a798b543c5d295dde
3
+ metadata.gz: d640eb16ee97cc31ec5a5c15d9600b9cd3b01395954e5fab80110251445ff56b
4
+ data.tar.gz: 5133899439b92170f1cffd13a3ce10f792ce5e4434e733d7767b88a7ce3f30a2
5
5
  SHA512:
6
- metadata.gz: ce0679d7053e38e23f0e7def844addf1042960cf2a7e92552106185b2c51192c65bf192a117ccf7904e5b7abf5b02180b17a2224ab090a426627ee8a2cbe128c
7
- data.tar.gz: 4015334a3ac6ca5700aea0a3dce5691090f918fbf111e7c8b11f94e37d8dc6725df5d6d7c35e92d76e4b0fc16228037feb862b959352fa01f6e94561c0970f76
6
+ metadata.gz: d53553a0e5aabb16012377acaf2b1b3ff47e039dad2f44ec7c70a8e62a038153366b1b5a6d57a7d2c6e44c5ffb991d29132f3eda3a0cb6ff38987b117f7f6ccb
7
+ data.tar.gz: e8fa35b07eac5f69d4a1a98118cb34bc2cbcfd506852659b0c4a59990a047326348b5d7a612940fb861b635d03ec4efa4420302f01f616f979b58b63b965defa
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [[0.3.4](https://github.com/yoshoku/numo-tiny_linalg/compare/v0.3.3...v0.3.4)] - 2023-11-19
4
+ - Bump OpenBLAS to be downloaded from 0.3.24 to 0.3.25.
5
+
3
6
  ## [[0.3.3](https://github.com/yoshoku/numo-tiny_linalg/compare/v0.3.2...v0.3.3)] - 2023-09-27
4
7
  - Remove unnecessary `-std=c++11` option.
5
8
 
@@ -46,9 +46,9 @@ if build_openblas
46
46
 
47
47
  VENDOR_DIR = File.expand_path("#{__dir__}/../../../vendor")
48
48
  TINYLINALG_DIR = File.expand_path("#{__dir__}/../../../lib/numo/tiny_linalg")
49
- OPENBLAS_VER = '0.3.24'
50
- OPENBLAS_KEY = '23599a30e4ce887590957d94896789c8'
51
- OPENBLAS_URI = "https://github.com/xianyi/OpenBLAS/archive/v#{OPENBLAS_VER}.tar.gz"
49
+ OPENBLAS_VER = '0.3.25'
50
+ OPENBLAS_KEY = '48384e324cd1cdcfbdb0d2e16ca55327'
51
+ OPENBLAS_URI = "https://github.com/OpenMathLib/OpenBLAS/archive/v#{OPENBLAS_VER}.tar.gz"
52
52
  OPENBLAS_TGZ = "#{VENDOR_DIR}/tmp/openblas.tgz"
53
53
 
54
54
  unless File.exist?("#{VENDOR_DIR}/installed_#{OPENBLAS_VER}")
@@ -5,6 +5,6 @@ module Numo
5
5
  # Numo::TinyLinalg is a subset library from Numo::Linalg consisting only of methods used in Machine Learning algorithms.
6
6
  module TinyLinalg
7
7
  # The version of Numo::TinyLinalg you install.
8
- VERSION = '0.3.3'
8
+ VERSION = '0.3.4'
9
9
  end
10
10
  end
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.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-09-27 00:00:00.000000000 Z
11
+ date: 2023-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: numo-narray
@@ -97,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
97
  - !ruby/object:Gem::Version
98
98
  version: '0'
99
99
  requirements: []
100
- rubygems_version: 3.4.19
100
+ rubygems_version: 3.4.20
101
101
  signing_key:
102
102
  specification_version: 4
103
103
  summary: Numo::TinyLinalg is a subset library from Numo::Linalg consisting only of