numo-tiny_linalg 0.3.9 → 0.4.0

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: 7f1e5148fca68bf5d2b3f4434f4f8d75cdfa3f65193f3d2ba1261ebb6fc66466
4
- data.tar.gz: ff19d162e95c9dfe51d86729b5f37dfa86f2ff179e3da4ba7f7b1319cbb71851
3
+ metadata.gz: 9106b22c189141a3e61290e2015726299cc8fc46b80a0155e9b0f848ceb29370
4
+ data.tar.gz: 7a8dd56ecfbb80e74dec6f42e8a14f20bb7f6a2f3f5303eb23b83a1b08158032
5
5
  SHA512:
6
- metadata.gz: d03e0a6c68532541cf52b0f91913ea361c2940cfac7fb299855ae181521e8fdaeaa6be13afc4eddbdc8c93e8a2a9c2f9aca253b60e3844b11adb5bdbf814d8ad
7
- data.tar.gz: 0ddae9f1f9e8eeb7ea8e5398928cdeaed5f787909aeeb506b3594139546f0bf80f8df9c53a05bfe56a092c04057fbd6b569e77982addf1350fc1e3c1ff2d2d73
6
+ metadata.gz: d5ff9c3a9d5e00bfbf2770e4c1bd56da741a5befe4875cd919e10446b21282f7f6d618f7992b1da851809b203e40ba77ab86f3e3f504f88ef5c6e5421428480d
7
+ data.tar.gz: 4e5ba2f94e1ff75157cc72520894b4088a794e5a84ff2a9498019b789c3a130c4955edcfb3e4b38be5f7278a80e75ee6576df9a73b1c42449b067183e67752b9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [[0.4.0](https://github.com/yoshoku/numo-tiny_linalg/compare/v0.3.9...v0.4.0)] - 2025-04-27
4
+
5
+ - Add `shared` target to make command of OpenBLAS for reducing build time.
6
+
3
7
  ## [[0.3.9](https://github.com/yoshoku/numo-tiny_linalg/compare/v0.3.8...v0.3.9)] - 2025-01-13
4
8
 
5
9
  - Bump OpenBLAS to be downloaded from 0.3.28 to 0.3.29.
@@ -69,7 +69,7 @@ if build_openblas
69
69
  end
70
70
 
71
71
  Dir.chdir("#{VENDOR_DIR}/tmp/OpenBLAS-#{OPENBLAS_VER}") do
72
- mkstdout, _mkstderr, mkstatus = Open3.capture3("make -j#{Etc.nprocessors}")
72
+ mkstdout, _mkstderr, mkstatus = Open3.capture3("make -j#{Etc.nprocessors} shared")
73
73
  File.open("#{VENDOR_DIR}/tmp/openblas.log", 'w') { |f| f.puts(mkstdout) }
74
74
  abort("Failed to build OpenBLAS. Check the openblas.log file for more details: #{VENDOR_DIR}/tmp/openblas.log") unless mkstatus.success?
75
75
 
@@ -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.9'
8
+ VERSION = '0.4.0'
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: numo-tiny_linalg
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.9
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-01-13 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  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.6.2
100
+ rubygems_version: 3.6.7
101
101
  specification_version: 4
102
102
  summary: Numo::TinyLinalg is a subset library from Numo::Linalg consisting only of
103
103
  methods used in Machine Learning algorithms.