numo-linalg 0.0.1 → 0.1.0

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
- SHA1:
3
- metadata.gz: a5f5428ade2504c871f78f77e76a74efaad30853
4
- data.tar.gz: 002524df9a6acb2c6701c234cc4216fde88a7e2e
2
+ SHA256:
3
+ metadata.gz: d78b166ec210437736f2153cbee645d9cb1fe43c99ebfdc8831e15b1fa46249f
4
+ data.tar.gz: ce602ae09a67e518a5e7bc539256b2e35ebc342c528860eb9a527d7446d4c871
5
5
  SHA512:
6
- metadata.gz: dfb994654259edc522233e5196bf461797fa0aa9d552e7530c3657da826c3e1ad8ca280e9fade6b3413bc961c81c39ce86314e31f2c37b7d3a282e476611fe49
7
- data.tar.gz: 1ec749584936a93a62717aa9073cd1b391d3fd64b9858b28fcefd3973c4f0c63cb2fe9ba429ed30e492ecff8af7d183aa35029bd9e9c06be3eaf82ff3f9ad597
6
+ metadata.gz: 79a092556b215e5a3667aab25ba97dc752fe3223dcca95d0a4018c71dd934d0eddad7816a94f87eb230e55cac5397ff430bdfb3d4ba8178eb443cf9f9dbd82da
7
+ data.tar.gz: 13774cf94a8b2724217bb3f00e6ed24337ad5c64db83f873bb5dfb7e6bf9b606311013d7eaeca8fcf99c4a2d98837cc2259d5389f5a9da1a784bb3d1d2c18176
data/README.md CHANGED
@@ -3,7 +3,8 @@
3
3
  [![Binder](http://mybinder.org/badge.svg)](http://mybinder.org/repo/ruby-numo/linalg)
4
4
  [![Build Status](https://travis-ci.org/ruby-numo/linalg.svg?branch=master)](https://travis-ci.org/ruby-numo/linalg)
5
5
 
6
- [GitHub](https://github.com/ruby-numo/linalg)
6
+ [GitHub](https://github.com/ruby-numo/linalg) |
7
+ [RubyGems](https://github.com/ruby-numo/linalg)
7
8
 
8
9
  Under development!
9
10
 
@@ -65,6 +66,14 @@ $ rake build
65
66
  $ gem install pkg/numo-linalg-*.gem
66
67
  ```
67
68
 
69
+ ## Using
70
+
71
+ * Load Numo::Linalg module with default backend:
72
+
73
+ ```ruby
74
+ require "numo/linalg"
75
+ ```
76
+
68
77
  * Read also instruction for [Selecting Backend Library](https://github.com/ruby-numo/linalg/tree/master/doc/select-backend.md).
69
78
 
70
79
  ## Authors
@@ -69,7 +69,7 @@ static void
69
69
  "a, b, [alpha:1, side:'L', uplo:'U', transa:'N', diag:'U'"
70
70
  else
71
71
  "a, b, [c, alpha:1, beta:0, side:'L', uplo:'U'"
72
- end + ", order:'R'"
72
+ end + ", order:'R']"
73
73
 
74
74
  params = [
75
75
  mat("a"),
@@ -70,7 +70,7 @@ static void
70
70
  "a, x, [uplo:'U', trans:'N', diag:'U'"
71
71
  else
72
72
  "a, x, [y, alpha:1, beta:0, uplo:'U'"
73
- end + ", order:'R'"
73
+ end + ", order:'R']"
74
74
  params = [
75
75
  mat("a"),
76
76
  vec("x"),
@@ -1,5 +1,5 @@
1
1
  module Numo
2
2
  module Linalg
3
- VERSION = "0.0.1"
3
+ VERSION = "0.1.0"
4
4
  end
5
5
  end
data/numo-linalg.gemspec CHANGED
@@ -6,10 +6,10 @@ require_relative "lib/numo/linalg/version"
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "numo-linalg"
8
8
  spec.version = Numo::Linalg::VERSION
9
- spec.authors = ["Masahiro TANAKA"]
9
+ spec.authors = ["Masahiro TANAKA","Makoto KISHIMOTO"]
10
10
  spec.email = ["masa16.tanaka@gmail.com"]
11
- spec.description = %q{Linalg development version.}
12
- spec.summary = %q{Linalg development version}
11
+ spec.description = %q{Ruby/Numo Linear Algebra library with interface to BLAS/LAPACK.}
12
+ spec.summary = %q{Ruby/Numo Linear Algebra library with BLAS/LAPACK}
13
13
  spec.homepage = "https://github.com/ruby-numo/numo-linalg"
14
14
  spec.license = "BSD-3-Clause"
15
15
 
@@ -22,5 +22,5 @@ Gem::Specification.new do |spec|
22
22
 
23
23
  spec.add_development_dependency "bundler", "~> 1.3"
24
24
  spec.add_development_dependency "rake", "~> 0"
25
- spec.add_runtime_dependency "numo-narray", "~> 0.9.0.7"
25
+ spec.add_runtime_dependency "numo-narray", "~> 0.9.0"
26
26
  end
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: numo-linalg
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Masahiro TANAKA
8
+ - Makoto KISHIMOTO
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2017-05-28 00:00:00.000000000 Z
12
+ date: 2017-12-28 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: bundler
@@ -44,15 +45,15 @@ dependencies:
44
45
  requirements:
45
46
  - - "~>"
46
47
  - !ruby/object:Gem::Version
47
- version: 0.9.0.7
48
+ version: 0.9.0
48
49
  type: :runtime
49
50
  prerelease: false
50
51
  version_requirements: !ruby/object:Gem::Requirement
51
52
  requirements:
52
53
  - - "~>"
53
54
  - !ruby/object:Gem::Version
54
- version: 0.9.0.7
55
- description: Linalg development version.
55
+ version: 0.9.0
56
+ description: Ruby/Numo Linear Algebra library with interface to BLAS/LAPACK.
56
57
  email:
57
58
  - masa16.tanaka@gmail.com
58
59
  executables: []
@@ -164,9 +165,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
164
165
  version: '0'
165
166
  requirements: []
166
167
  rubyforge_project:
167
- rubygems_version: 2.6.11
168
+ rubygems_version: 2.7.3
168
169
  signing_key:
169
170
  specification_version: 4
170
- summary: Linalg development version
171
+ summary: Ruby/Numo Linear Algebra library with BLAS/LAPACK
171
172
  test_files:
172
173
  - spec/lapack_spec.rb