numo-tiny_linalg 0.3.7 → 0.3.9

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: 7ec6d9ea3998861ed0974c7c73546f7dc7776815efe8e94dc4e193579a855877
4
- data.tar.gz: ca4bd2aa9b72f11a285531b7746b42588851b129c54e174e3c2398c5bfd32f6b
3
+ metadata.gz: 7f1e5148fca68bf5d2b3f4434f4f8d75cdfa3f65193f3d2ba1261ebb6fc66466
4
+ data.tar.gz: ff19d162e95c9dfe51d86729b5f37dfa86f2ff179e3da4ba7f7b1319cbb71851
5
5
  SHA512:
6
- metadata.gz: 69d36c3e5d1799061e40d7b60770128090477e683cfba8f7848bea330d5ae3c2f5ab1b8ff9e32d3ab27dd42eb62eac67bc433615f460aa453df5bb1e4b028e64
7
- data.tar.gz: 1e1891c1bc0d533328e8cf9eac99d159f65afade5b98be9a39f3bc1e3f7f2f2dd3a7a04bfaa006f89c3cdcd813c42477a6738373e128fc875cfb829604c11bcc
6
+ metadata.gz: d03e0a6c68532541cf52b0f91913ea361c2940cfac7fb299855ae181521e8fdaeaa6be13afc4eddbdc8c93e8a2a9c2f9aca253b60e3844b11adb5bdbf814d8ad
7
+ data.tar.gz: 0ddae9f1f9e8eeb7ea8e5398928cdeaed5f787909aeeb506b3594139546f0bf80f8df9c53a05bfe56a092c04057fbd6b569e77982addf1350fc1e3c1ff2d2d73
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [[0.3.9](https://github.com/yoshoku/numo-tiny_linalg/compare/v0.3.8...v0.3.9)] - 2025-01-13
4
+
5
+ - Bump OpenBLAS to be downloaded from 0.3.28 to 0.3.29.
6
+
7
+ ## [[0.3.8](https://github.com/yoshoku/numo-tiny_linalg/compare/v0.3.7...v0.3.8)] - 2024-08-11
8
+
9
+ - Bump OpenBLAS to be downloaded from 0.3.27 to 0.3.28.
10
+
3
11
  ## [[0.3.7](https://github.com/yoshoku/numo-tiny_linalg/compare/v0.3.6...v0.3.7)] - 2024-04-06
4
12
 
5
13
  - Bump OpenBLAS to be downloaded from 0.3.26 to 0.3.27.
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2023-2024 Atsushi Tatsuma
1
+ Copyright (c) 2023-2025 Atsushi Tatsuma
2
2
  All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without
@@ -46,8 +46,8 @@ 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.27'
50
- OPENBLAS_KEY = 'ef71c66ffeb1ab0f306a37de07d2667f'
49
+ OPENBLAS_VER = '0.3.29'
50
+ OPENBLAS_KEY = '853a0c5c0747c5943e7ef4bbb793162d'
51
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
 
@@ -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.7'
8
+ VERSION = '0.3.9'
9
9
  end
10
10
  end
@@ -180,7 +180,7 @@ module Numo
180
180
  end
181
181
  end
182
182
 
183
- raise ArgumentError, "the number of dimensions of axis is inappropriate for the norm: #{axis.size}" unless axis.size == 1 || axis.size == 2
183
+ raise ArgumentError, "the number of dimensions of axis is inappropriate for the norm: #{axis.size}" unless [1, 2].include?(axis.size)
184
184
  raise ArgumentError, "axis is out of range: #{axis}" unless axis.all? { |ax| (-a.ndim...a.ndim).cover?(ax) }
185
185
 
186
186
  if axis.size == 1
metadata CHANGED
@@ -1,14 +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.7
4
+ version: 0.3.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-04-06 00:00:00.000000000 Z
10
+ date: 2025-01-13 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: numo-narray
@@ -84,7 +83,6 @@ metadata:
84
83
  changelog_uri: https://github.com/yoshoku/numo-tiny_linalg/blob/main/CHANGELOG.md
85
84
  documentation_uri: https://yoshoku.github.io/numo-tiny_linalg/doc/
86
85
  rubygems_mfa_required: 'true'
87
- post_install_message:
88
86
  rdoc_options: []
89
87
  require_paths:
90
88
  - lib
@@ -99,8 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
99
97
  - !ruby/object:Gem::Version
100
98
  version: '0'
101
99
  requirements: []
102
- rubygems_version: 3.5.7
103
- signing_key:
100
+ rubygems_version: 3.6.2
104
101
  specification_version: 4
105
102
  summary: Numo::TinyLinalg is a subset library from Numo::Linalg consisting only of
106
103
  methods used in Machine Learning algorithms.