numo-tiny_linalg 0.3.2 → 0.3.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3379a2dcd3ccd4ec37e0d8edca6e10e954891df2fc563b78adb9709a7160df61
4
- data.tar.gz: 4d52946c1fa66687c590aa5c591057756766b385317585104d75e16d519486b8
3
+ metadata.gz: d640eb16ee97cc31ec5a5c15d9600b9cd3b01395954e5fab80110251445ff56b
4
+ data.tar.gz: 5133899439b92170f1cffd13a3ce10f792ce5e4434e733d7767b88a7ce3f30a2
5
5
  SHA512:
6
- metadata.gz: 7238ec5a839348a060bb9eac27c3096600e489a9cf78f20e6bef608f84d1d2899e35e97b02180dfd3622ad966115c9fc0545cc471306418eed25039d15a89cfa
7
- data.tar.gz: e15c5fa82989ca11aeca1eba79b6f690a20d4b3ad071b8a595bc469f16afc651df6ee1c9c92f9f9a01257354dae5b4b837a81e0e4ed6d6c9e87c725f38ea186b
6
+ metadata.gz: d53553a0e5aabb16012377acaf2b1b3ff47e039dad2f44ec7c70a8e62a038153366b1b5a6d57a7d2c6e44c5ffb991d29132f3eda3a0cb6ff38987b117f7f6ccb
7
+ data.tar.gz: e8fa35b07eac5f69d4a1a98118cb34bc2cbcfd506852659b0c4a59990a047326348b5d7a612940fb861b635d03ec4efa4420302f01f616f979b58b63b965defa
data/CHANGELOG.md CHANGED
@@ -1,6 +1,12 @@
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
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
+
6
+ ## [[0.3.3](https://github.com/yoshoku/numo-tiny_linalg/compare/v0.3.2...v0.3.3)] - 2023-09-27
7
+ - Remove unnecessary `-std=c++11` option.
8
+
9
+ ## [[0.3.2](https://github.com/yoshoku/numo-tiny_linalg/compare/v0.3.1...v0.3.2)] - 2023-09-04
4
10
  - Bump OpenBLAS to be downloaded from 0.3.23 to 0.3.24.
5
11
 
6
12
  ## [[0.3.1](https://github.com/yoshoku/numo-tiny_linalg/compare/v0.3.0...v0.3.1)] - 2023-08-15
@@ -31,7 +31,6 @@ if on_windows
31
31
  end
32
32
 
33
33
  abort 'libstdc++ is not found.' unless have_library('stdc++')
34
- $CXXFLAGS << ' -std=c++11'
35
34
 
36
35
  build_openblas = false
37
36
  unless find_library('openblas', 'LAPACKE_dsyevr')
@@ -47,9 +46,9 @@ if build_openblas
47
46
 
48
47
  VENDOR_DIR = File.expand_path("#{__dir__}/../../../vendor")
49
48
  TINYLINALG_DIR = File.expand_path("#{__dir__}/../../../lib/numo/tiny_linalg")
50
- OPENBLAS_VER = '0.3.24'
51
- OPENBLAS_KEY = '23599a30e4ce887590957d94896789c8'
52
- 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"
53
52
  OPENBLAS_TGZ = "#{VENDOR_DIR}/tmp/openblas.tgz"
54
53
 
55
54
  unless File.exist?("#{VENDOR_DIR}/installed_#{OPENBLAS_VER}")
@@ -127,8 +127,7 @@ static VALUE tiny_linalg_blas_call(int argc, VALUE* argv, VALUE self) {
127
127
  return Qnil;
128
128
  }
129
129
 
130
- std::string type_str{ type };
131
- std::string fn_str = type_str + std::string(rb_id2name(rb_to_id(rb_to_symbol(fn_name))));
130
+ std::string fn_str = type + std::string(rb_id2name(rb_to_id(rb_to_symbol(fn_name))));
132
131
  ID fn_id = rb_intern(fn_str.c_str());
133
132
  size_t n = RARRAY_LEN(nary_arr);
134
133
  VALUE ret = Qnil;
@@ -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.2'
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.2
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-04 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.3.26
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