numo-openblas 0.4.1 → 0.4.2

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: dac840cfd521596aff0e739712307aaa0300d6e762084c507431a52a47161d7f
4
- data.tar.gz: 82207237a7b081a07a987b6751091f56aea6873e3245f7deb7b6cd241f3fb380
3
+ metadata.gz: 1e85f1e27fbff879cd1cafcb1b9d37b8050c15f15250a71fed1d579a59174185
4
+ data.tar.gz: a92717c0e1e0d1296b59f15481ed743df2e91eaf7a1b528238b454f3f2f54fdc
5
5
  SHA512:
6
- metadata.gz: 2452fa921c80cee725e36a3259eeb8054672d40b2b504afe9c3dc09f13fd2ee559146d3a8011e3d02a58aa89411fd9192dea8ec19959a6105a8204626053614d
7
- data.tar.gz: b450a9438c6cfdba4f700cc263e758d4ddc5c529fa5049f0f9e14159a32131d3a02e9e2048bea020b53a98be8fdcbcc3edbf11ea3b9f3ee23fff409fa1d178f0
6
+ metadata.gz: 6d8c6725132b3c7fde79d031557fbd3f8a7927328d20afbe0f1104cf0a6ef7272e4782c75cacd0f52e13774f46a6b5bf5ef4b56700ec3eb862e1f4b407a0f06d
7
+ data.tar.gz: c84021eca60b2943129e2cb9675bbd5183852f6a8c37df4a3c4de0afba899f1134d6a37c9a527850da7176291a0c0c2d420807ef1fbdff47eec3ab90006697cc
@@ -19,7 +19,4 @@ jobs:
19
19
  ruby-version: ${{ matrix.ruby }}
20
20
  bundler-cache: true
21
21
  - name: Build and test with Rake
22
- run: |
23
- gem install --no-document bundler
24
- bundle install --jobs 4 --retry 3
25
- bundle exec rake
22
+ run: bundle exec rake
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.4.2
2
+ - Change the version of OpenBLAS to be downloaded to 0.3.16.
3
+ - Fix API documentation.
4
+
1
5
  ## 0.4.1
2
6
  - Remove dependent gem's type declaration file from installation files.
3
7
 
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![Build Status](https://github.com/yoshoku/numo-openblas/workflows/build/badge.svg)](https://github.com/yoshoku/numo-openblas/actions?query=workflow%3Abuild)
4
4
  [![Gem Version](https://badge.fury.io/rb/numo-openblas.svg)](https://badge.fury.io/rb/numo-openblas)
5
- [![BSD 3-Clause License](https://img.shields.io/badge/License-BSD%203--Clause-orange.svg)](https://github.com/yoshoku/suika/blob/main/LICENSE.txt)
5
+ [![BSD 3-Clause License](https://img.shields.io/badge/License-BSD%203--Clause-orange.svg)](https://github.com/yoshoku/numo-openblas/blob/main/LICENSE.txt)
6
6
 
7
7
  Numo::OpenBLAS downloads and builds [OpenBLAS](https://www.openblas.net/) during installation and
8
8
  uses that as a background library for [Numo::Linalg](https://github.com/ruby-numo/numo-linalg).
@@ -8,8 +8,8 @@ require 'open-uri'
8
8
  require 'open3'
9
9
  require 'rubygems/package'
10
10
 
11
- OPENBLAS_VER = '0.3.15'
12
- OPENBLAS_KEY = 'd7d1f67c1ef0c14c93761bdf44f0da8d0dd4bc0f'
11
+ OPENBLAS_VER = '0.3.16'
12
+ OPENBLAS_KEY = 'dbb76d2316a135a8e73c98c926c8a596b3bb233f'
13
13
  OPENBLAS_URI = "https://github.com/xianyi/OpenBLAS/archive/v#{OPENBLAS_VER}.tar.gz"
14
14
  OPENBLAS_DIR = File.expand_path(__dir__ + '/../../../vendor')
15
15
 
@@ -18,7 +18,7 @@ void Init_openblas()
18
18
  mNumo = rb_define_module("Numo");
19
19
 
20
20
  /**
21
- * Document-module: Numo::Liblinear
21
+ * Document-module: Numo::OpenBLAS
22
22
  * Numo::OpenBLAS loads Numo::NArray and Linalg with OpenBLAS used as backend library.
23
23
  */
24
24
  mOpenBLAS = rb_define_module_under(mNumo, "OpenBLAS");
@@ -5,6 +5,6 @@ module Numo
5
5
  # Numo::OpenBLAS loads Numo::NArray and Linalg with OpenBLAS used as backend library.
6
6
  module OpenBLAS
7
7
  # The version of Numo::OpenBLAS you install.
8
- VERSION = '0.4.1'
8
+ VERSION = '0.4.2'
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: numo-openblas
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-07-10 00:00:00.000000000 Z
11
+ date: 2021-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: numo-linalg
@@ -59,7 +59,7 @@ metadata:
59
59
  source_code_uri: https://github.com/yoshoku/numo-openblas
60
60
  changelog_uri: https://github.com/yoshoku/numo-openblas/blob/main/CHANGELOG.md
61
61
  documentation_uri: https://github.com/yoshoku/numo-openblas/blob/main/README.md
62
- post_install_message:
62
+ post_install_message:
63
63
  rdoc_options: []
64
64
  require_paths:
65
65
  - lib
@@ -74,8 +74,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
74
  - !ruby/object:Gem::Version
75
75
  version: '0'
76
76
  requirements: []
77
- rubygems_version: 3.2.21
78
- signing_key:
77
+ rubygems_version: 3.2.22
78
+ signing_key:
79
79
  specification_version: 4
80
80
  summary: Numo::OpenBLAS downloads and builds OpenBLAS during installation and uses
81
81
  that as a background library for Numo::Linalg.