Sha256: b5b42d67186c7946466fd998a895f14240f98939cada1740383aaa0729e70579

Contents?: true

Size: 1.21 KB

Versions: 1

Compression:

Stored size: 1.21 KB

Contents

# = NMatrix
#
# A linear algebra library for scientific computation in Ruby.
# NMatrix is part of SciRuby.
#
# NMatrix was originally inspired by and derived from NArray, by
# Masahiro Tanaka: http://narray.rubyforge.org
#
# == Copyright Information
#
# SciRuby is Copyright (c) 2010 - 2014, Ruby Science Foundation
# NMatrix is Copyright (c) 2012 - 2014, John Woods and the Ruby Science Foundation
#
# Please see LICENSE.txt for additional copyright notices.
#
# == Contributing
#
# By contributing source code to SciRuby, you agree to be bound by
# our Contributor Agreement:
#
# * https://github.com/SciRuby/sciruby/wiki/Contributor-Agreement
#
# == nmatrix.rb
#
# This file loads the C extension for NMatrix and all the ruby files.
#

# For some reason nmatrix.so ends up in a different place during gem build.
if File.exist?("lib/nmatrixr_gemv/nmatrix_gemv.so") #|| File.exist?("lib/nmatrix/nmatrix.bundle")
  # Development
  require "nmatrixr_gemv/nmatrix_gemv.so"
else
  # Gem
  require "nmatrix_gemv.so"
end

require 'nmatrix_gemv/nmatrix_gemv.rb'
require 'nmatrix_gemv/blas.rb'
# require 'nmatrix/version.rb'
#require 'nmatrix/nvector.rb'
# require 'nmatrix/blas.rb'
# require 'nmatrix/monkeys'
# require "nmatrix/shortcuts.rb"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nmatrix-gemv-0.0.3 lib/nmatrix-gemv.rb