numo-linalg-alt 0.7.1 → 0.7.2

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: 7eeac3bb724777fb9b247445c0519c21d95744c9e07fbfd6ab0af51d490b6232
4
- data.tar.gz: 05ae98f73325fa3328217bcc17231d92e465d37f3b766fd609b18e2c752a8649
3
+ metadata.gz: 074a79c2f0a7c299dfe6332f47440698030b04546274ea93bd76907bb5cf5af7
4
+ data.tar.gz: 4539bee85382917fd99ef2744673b796d4234562f6573b1441f17a51ed90552b
5
5
  SHA512:
6
- metadata.gz: 61e88804d88190e1e01307cec2ffb7f6cbaaa799b760fa56cf77778d697b83ccb143f802f46a58fcbe4ed984caa6cc9b8b27f66ea4ef78989e781af81c7a5aab
7
- data.tar.gz: 1a618efe98fc6d464d4924402c37ab133085edfa7b0faf420f3c4c4c913d838396dd27fe1f0080e754dbbe85685760b63c83938cc53fc499302063e217376b6d
6
+ metadata.gz: b219e82e41d7a6b29286d2450abe548a86cff6c2bb888d0ed9e3954ef6d22153db849995feb7fbb3673f68190eba932df63ba566fce66d7d15fdef1568c35f9d
7
+ data.tar.gz: a69dbd9f8f6d695949a7220ef27e56ca5591d550a1799c813d5130dd9d0985602ce658b0afb4683afb7be9a49db50e0a5b30e1739fe4fc4ca34eb0da9c921fc5
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [[0.7.2](https://github.com/yoshoku/numo-linalg-alt/compare/v0.7.1...v0.7.2)] - 2026-01-16
2
+
3
+ - bump OpenBLAS from 0.3.30 to 0.3.31.
4
+
1
5
  ## [[0.7.1](https://github.com/yoshoku/numo-linalg-alt/compare/v0.7.0...v0.7.1)] - 2025-11-19
2
6
 
3
7
  - set the required version of numo-narray-alt to 0.9.10 or higher.
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2025 Atsushi Tatsuma
1
+ Copyright (c) 2025-2026 Atsushi Tatsuma
2
2
  All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without
@@ -71,8 +71,8 @@ if build_openblas
71
71
 
72
72
  VENDOR_DIR = File.expand_path("#{__dir__}/../../../vendor")
73
73
  LINALG_DIR = File.expand_path("#{__dir__}/../../../lib/numo/linalg")
74
- OPENBLAS_VER = '0.3.30'
75
- OPENBLAS_KEY = '8db3d57f4d4485c6ae3f21ea465660e7'
74
+ OPENBLAS_VER = '0.3.31'
75
+ OPENBLAS_KEY = '05050271d9196f65bc4ac3a89c6a3b05'
76
76
  OPENBLAS_URI = "https://github.com/OpenMathLib/OpenBLAS/archive/v#{OPENBLAS_VER}.tar.gz"
77
77
  OPENBLAS_TGZ = "#{VENDOR_DIR}/tmp/openblas.tgz"
78
78
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright (c) 2025 Atsushi Tatsuma
2
+ * Copyright (c) 2025-2026 Atsushi Tatsuma
3
3
  * All rights reserved.
4
4
  *
5
5
  * Redistribution and use in source and binary forms, with or without
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright (c) 2025 Atsushi Tatsuma
2
+ * Copyright (c) 2025-2026 Atsushi Tatsuma
3
3
  * All rights reserved.
4
4
  *
5
5
  * Redistribution and use in source and binary forms, with or without
@@ -5,6 +5,6 @@ module Numo
5
5
  # Numo::Linalg Alternative (numo-linalg-alt) is an alternative to Numo::Linalg.
6
6
  module Linalg
7
7
  # The version of numo-linalg-alt you install.
8
- VERSION = '0.7.1'
8
+ VERSION = '0.7.2'
9
9
  end
10
10
  end
data/lib/numo/linalg.rb CHANGED
@@ -2,10 +2,10 @@
2
2
 
3
3
  require 'numo/narray/alt'
4
4
 
5
- # On distributions like Rocky Linux, native extensions are installed in a separate
6
- # directory from Ruby code, so use require to load them.
7
- require 'numo/linalg/linalg'
8
5
  require_relative 'linalg/version'
6
+ # On RHEL-based Linux distributions, native extensions are installed in a separate
7
+ # directory from Ruby scripts, so use require to load them.
8
+ require 'numo/linalg/linalg'
9
9
 
10
10
  # Ruby/Numo (NUmerical MOdules)
11
11
  module Numo
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: numo-linalg-alt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
@@ -145,7 +145,7 @@ metadata:
145
145
  homepage_uri: https://github.com/yoshoku/numo-linalg-alt
146
146
  source_code_uri: https://github.com/yoshoku/numo-linalg-alt
147
147
  changelog_uri: https://github.com/yoshoku/numo-linalg-alt/blob/main/CHANGELOG.md
148
- documentation_uri: https://gemdocs.org/gems/numo-linalg-alt/0.7.1/
148
+ documentation_uri: https://gemdocs.org/gems/numo-linalg-alt/0.7.2/
149
149
  rubygems_mfa_required: 'true'
150
150
  rdoc_options: []
151
151
  require_paths:
@@ -161,7 +161,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
161
161
  - !ruby/object:Gem::Version
162
162
  version: '0'
163
163
  requirements: []
164
- rubygems_version: 3.7.2
164
+ rubygems_version: 4.0.3
165
165
  specification_version: 4
166
166
  summary: Numo::Linalg Alternative (numo-linalg-alt) is an alternative to Numo::Linalg.
167
167
  test_files: []