File: mpi.rb

package info (click to toggle)
ruby-mpi 0.4.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 408 kB
  • sloc: ansic: 1,500; ruby: 808; makefile: 8
file content (12 lines) | stat: -rw-r--r-- 224 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
begin
  require "numru/narray"
rescue LoadError
  err = $!
  begin
    require "narray"
  rescue LoadError
    STDERR.puts "You should install numru-narray or narray to use ruby-mpi"
    raise err
  end
end
require "mpi.so"