hornetseye-linalg 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,18 @@
1
+ #!/usr/bin/env ruby
2
+ # hornetseye-hypercomplex - Linalg integration for Hornetseye
3
+ # Copyright (C) 2011 Jan Wedekind
4
+ #
5
+ # This program is free software: you can redistribute it and/or modify
6
+ # it under the terms of the GNU General Public License as published by
7
+ # the Free Software Foundation, either version 3 of the License, or
8
+ # (at your option) any later version.
9
+ #
10
+ # This program is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ # GNU General Public License for more details.
14
+ #
15
+ # You should have received a copy of the GNU General Public License
16
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
17
+ require 'tc_hornetseye_linalg'
18
+
metadata ADDED
@@ -0,0 +1,118 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hornetseye-linalg
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.1.0
6
+ platform: ruby
7
+ authors:
8
+ - Jan Wedekind
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2011-09-07 00:00:00 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: malloc
17
+ prerelease: false
18
+ requirement: &id001 !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - ~>
22
+ - !ruby/object:Gem::Version
23
+ version: "1.1"
24
+ type: :runtime
25
+ version_requirements: *id001
26
+ - !ruby/object:Gem::Dependency
27
+ name: multiarray
28
+ prerelease: false
29
+ requirement: &id002 !ruby/object:Gem::Requirement
30
+ none: false
31
+ requirements:
32
+ - - ~>
33
+ - !ruby/object:Gem::Version
34
+ version: "0.23"
35
+ type: :runtime
36
+ version_requirements: *id002
37
+ - !ruby/object:Gem::Dependency
38
+ name: hornetseye-frame
39
+ prerelease: false
40
+ requirement: &id003 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: "0.11"
46
+ type: :runtime
47
+ version_requirements: *id003
48
+ - !ruby/object:Gem::Dependency
49
+ name: rake
50
+ prerelease: false
51
+ requirement: &id004 !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: "0"
57
+ type: :development
58
+ version_requirements: *id004
59
+ description: This Ruby extension provides conversion from Hornetseye::MultiArray to Linalg::DMatrix and vice versa.
60
+ email: jan@wedesoft.de
61
+ executables: []
62
+
63
+ extensions:
64
+ - Rakefile
65
+ extra_rdoc_files: []
66
+
67
+ files:
68
+ - Rakefile
69
+ - README.md
70
+ - COPYING
71
+ - .document
72
+ - lib/hornetseye_linalg_ext.rb
73
+ - lib/hornetseye-linalg/node.rb
74
+ - lib/hornetseye-linalg/dmatrix.rb
75
+ - lib/hornetseye-linalg/smatrix.rb
76
+ - ext/init.cc
77
+ - ext/smatrix.cc
78
+ - ext/dmatrix.cc
79
+ - ext/node.cc
80
+ - ext/smatrix.hh
81
+ - ext/node.hh
82
+ - ext/rubytools.hh
83
+ - ext/error.hh
84
+ - ext/rubyinc.hh
85
+ - ext/dmatrix.hh
86
+ - ext/rubytools.tcc
87
+ - test/ts_hornetseye_linalg.rb
88
+ - test/tc_hornetseye_linalg.rb
89
+ homepage: http://wedesoft.github.com/hornetseye-linalg/
90
+ licenses: []
91
+
92
+ post_install_message:
93
+ rdoc_options:
94
+ - --no-private
95
+ require_paths:
96
+ - lib
97
+ - ext
98
+ required_ruby_version: !ruby/object:Gem::Requirement
99
+ none: false
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: "0"
104
+ required_rubygems_version: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ version: "0"
110
+ requirements: []
111
+
112
+ rubyforge_project: hornetseye
113
+ rubygems_version: 1.8.5
114
+ signing_key:
115
+ specification_version: 3
116
+ summary: Linalg integration for Hornetseye
117
+ test_files:
118
+ - test/tc_hornetseye_linalg.rb