ruby-mpi 0.3.2 → 0.4.0
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 +5 -5
- data/LICENSE.txt +1 -1
- data/README.rdoc +3 -4
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/ext/mpi/mpi.c +800 -7
- data/ruby-mpi.gemspec +30 -35
- data/samples/kmeans.rb +137 -0
- data/samples/pi.rb +59 -0
- data/spec/ruby-mpi_spec.rb +407 -14
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 5d9d9b19d0787afb8d0d7e90c621061e12f42fe0a08a4b369f95a3835a9b97e7
|
4
|
+
data.tar.gz: 16b44aa3727a41d0afaf1e4b8bc07ec460297797b36956d9900ed53acdfbb542
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40652c67ebc9d7c5df7b5006cf206456e19f825e38e004775f7ef53def887ee8834b77467a88156cff119ee22afcbaa7baad2a24ec626b832afd4560f60195e2
|
7
|
+
data.tar.gz: 188dc0eb2e3c54eb47d5eebe935f20a22c55c921f0d6b26f8234f24f70900b383a9b058ea63d0e7be15ccca778213879319f14b6f8e12a267ae257bc6215f6b3
|
data/LICENSE.txt
CHANGED
data/README.rdoc
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
= Ruby-MPI
|
1
|
+
= Ruby-MPI
|
2
2
|
|
3
3
|
Ruby-MPI is a ruby binding of Message Passing Interface (MPI), which is an API specification that allows processes to communicate with one another by sending and receiving messages.
|
4
4
|
|
@@ -18,11 +18,10 @@ e.g. (run with 4 processes)
|
|
18
18
|
* Fork the project
|
19
19
|
* Start a feature/bugfix branch
|
20
20
|
* Commit and push until you are happy with your contribution
|
21
|
-
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
21
|
+
* Make sure to add tests (rspec) for it. This is important so I don't break it in a future version unintentionally.
|
22
22
|
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
23
23
|
|
24
24
|
== Copyright
|
25
25
|
|
26
|
-
|
27
|
-
further details.
|
26
|
+
See LICENSE.txt
|
28
27
|
|
data/Rakefile
CHANGED
@@ -14,7 +14,7 @@ require 'jeweler'
|
|
14
14
|
Jeweler::Tasks.new do |gem|
|
15
15
|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
16
16
|
gem.name = "ruby-mpi"
|
17
|
-
gem.homepage = "http://github.com/
|
17
|
+
gem.homepage = "http://github.com/gfd-dennou-club/ruby-mpi"
|
18
18
|
gem.license = "MIT"
|
19
19
|
gem.summary = "A ruby binding of MPI"
|
20
20
|
gem.description = "A ruby binding of Message Passing Interface (MPI), which is an API specification that allows processes to communicate with one another by sending and receiving messages."
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.4.0
|