numo-tiny_linalg 0.3.2 → 0.3.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: 3379a2dcd3ccd4ec37e0d8edca6e10e954891df2fc563b78adb9709a7160df61
4
- data.tar.gz: 4d52946c1fa66687c590aa5c591057756766b385317585104d75e16d519486b8
3
+ metadata.gz: d37da5bae8e6c01756da489bd80912f9ece5174bfffc5f0b229571fd3fc361ae
4
+ data.tar.gz: dc0760b99d157b8ef8acbfd39171e3a8edf82c9055217b9a798b543c5d295dde
5
5
  SHA512:
6
- metadata.gz: 7238ec5a839348a060bb9eac27c3096600e489a9cf78f20e6bef608f84d1d2899e35e97b02180dfd3622ad966115c9fc0545cc471306418eed25039d15a89cfa
7
- data.tar.gz: e15c5fa82989ca11aeca1eba79b6f690a20d4b3ad071b8a595bc469f16afc651df6ee1c9c92f9f9a01257354dae5b4b837a81e0e4ed6d6c9e87c725f38ea186b
6
+ metadata.gz: ce0679d7053e38e23f0e7def844addf1042960cf2a7e92552106185b2c51192c65bf192a117ccf7904e5b7abf5b02180b17a2224ab090a426627ee8a2cbe128c
7
+ data.tar.gz: 4015334a3ac6ca5700aea0a3dce5691090f918fbf111e7c8b11f94e37d8dc6725df5d6d7c35e92d76e4b0fc16228037feb862b959352fa01f6e94561c0970f76
data/CHANGELOG.md CHANGED
@@ -1,6 +1,9 @@
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.3](https://github.com/yoshoku/numo-tiny_linalg/compare/v0.3.2...v0.3.3)] - 2023-09-27
4
+ - Remove unnecessary `-std=c++11` option.
5
+
6
+ ## [[0.3.2](https://github.com/yoshoku/numo-tiny_linalg/compare/v0.3.1...v0.3.2)] - 2023-09-04
4
7
  - Bump OpenBLAS to be downloaded from 0.3.23 to 0.3.24.
5
8
 
6
9
  ## [[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')
@@ -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.3'
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.3
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-09-27 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.19
101
101
  signing_key:
102
102
  specification_version: 4
103
103
  summary: Numo::TinyLinalg is a subset library from Numo::Linalg consisting only of