numo-tiny_linalg 0.3.8 → 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: fb204dd3c65d588ffb42018d62e1dedb13a55bf2f97e16b7b31c0e8721ded4ee
4
- data.tar.gz: 9ccc3cb60073776f684fad8be20169fd7ca912f81293deae2700ce60802ee4ca
3
+ metadata.gz: 7f1e5148fca68bf5d2b3f4434f4f8d75cdfa3f65193f3d2ba1261ebb6fc66466
4
+ data.tar.gz: ff19d162e95c9dfe51d86729b5f37dfa86f2ff179e3da4ba7f7b1319cbb71851
5
5
  SHA512:
6
- metadata.gz: 417dc5ba3f93b64a231ac6d04384d3dbac576785fe18c61ce69e55ac53067208c8bc8540fc8a7b8e8be80022a26b72842d120e2ce9612841bbccb5696e2c1cf3
7
- data.tar.gz: c2c27b86d6fdb355f80615e1f187fca1f19fa6abe0ddee857392a336daa3c336ccdd5174eb5cdbc104349e3d713aa96e0afa6368b2a591a32b05d4c9bb2545b4
6
+ metadata.gz: d03e0a6c68532541cf52b0f91913ea361c2940cfac7fb299855ae181521e8fdaeaa6be13afc4eddbdc8c93e8a2a9c2f9aca253b60e3844b11adb5bdbf814d8ad
7
+ data.tar.gz: 0ddae9f1f9e8eeb7ea8e5398928cdeaed5f787909aeeb506b3594139546f0bf80f8df9c53a05bfe56a092c04057fbd6b569e77982addf1350fc1e3c1ff2d2d73
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ## [[0.3.8](https://github.com/yoshoku/numo-tiny_linalg/compare/v0.3.7...v0.3.8)] - 2024-08-11
4
8
 
5
9
  - Bump OpenBLAS to be downloaded from 0.3.27 to 0.3.28.
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.28'
50
- OPENBLAS_KEY = '0f54185b6ef804173c01b9a40520a0e8'
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.8'
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.8
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-08-11 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.9
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.