Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Scientific Computing in Ruby at Ruby World Conf...
Search
Sameer Deshmukh
November 03, 2016
Programming
1
230
Scientific Computing in Ruby at Ruby World Conference 2016.
Talk on Scientific Computing in Ruby at Ruby World Conference, Matsue City, Shimane, Japan.
Sameer Deshmukh
November 03, 2016
Tweet
Share
More Decks by Sameer Deshmukh
See All by Sameer Deshmukh
XND and rubyplot - typed arrays and visualization in Ruby
v0dro
0
220
Ferrari Driven Development: superfast Ruby with Rubex
v0dro
0
2.1k
Ruby Kaigi 2017 - C how to supercharge your Ruby with Rubex
v0dro
1
450
Deccan Ruby Conf 2017 Rubex intro
v0dro
0
98
Rubex: A new way of writing C extensions for CRuby
v0dro
1
550
Scientific Computing in Ruby at Ruby World Conference 2016
v0dro
0
130
Data Analysis in RUby with daru
v0dro
3
3.6k
Introduction benchmark-plot at PRUG
v0dro
0
120
Webinar - Scientific Computing and Data Visualization
v0dro
0
100
Other Decks in Programming
See All in Programming
ゆくKotlin くるRust
exoego
1
200
AI 駆動開発ライフサイクル(AI-DLC):ソフトウェアエンジニアリングの再構築 / AI-DLC Introduction
kanamasa
11
5.1k
Grafana:建立系統全知視角的捷徑
blueswen
0
280
まだ間に合う!Claude Code元年をふりかえる
nogu66
5
930
Deno Tunnel を使ってみた話
kamekyame
0
310
PostgreSQLで手軽にDuckDBを使う!DuckDB&pg_duckdb入門/osc25hi-duckdb
takahashiikki
0
240
ELYZA_Findy AI Engineering Summit登壇資料_AIコーディング時代に「ちゃんと」やること_toB LLMプロダクト開発舞台裏_20251216
elyza
2
1k
GoLab2025 Recap
kuro_kurorrr
0
3.4k
2年のAppleウォレットパス開発の振り返り
muno92
PRO
0
180
AI Agent Dojo #4: watsonx Orchestrate ADK体験
oniak3ibm
PRO
0
120
0→1 フロントエンド開発 Tips🚀 #レバテックMeetup
bengo4com
0
470
これならできる!個人開発のすゝめ
tinykitten
PRO
0
150
Featured
See All Featured
エンジニアに許された特別な時間の終わり
watany
106
220k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
46
2.6k
How to optimise 3,500 product descriptions for ecommerce in one day using ChatGPT
katarinadahlin
PRO
0
3.4k
Jamie Indigo - Trashchat’s Guide to Black Boxes: Technical SEO Tactics for LLMs
techseoconnect
PRO
0
38
So, you think you're a good person
axbom
PRO
1
1.9k
ラッコキーワード サービス紹介資料
rakko
0
2M
GraphQLとの向き合い方2022年版
quramy
50
14k
Reflections from 52 weeks, 52 projects
jeffersonlam
355
21k
Organizational Design Perspectives: An Ontology of Organizational Design Elements
kimpetersen
PRO
1
52
A Guide to Academic Writing Using Generative AI - A Workshop
ks91
PRO
0
170
Marketing to machines
jonoalderson
1
4.5k
Large-scale JavaScript Application Architecture
addyosmani
515
110k
Transcript
namaste
Incredible India
None
None
None
India must master Western science and yet preserve its Culture
and Heritage. What India Dreams
None
City of Pune. Population: 6 million. Oxford of the East.
Sameer Deshmukh github.com/v0dro @v0dro
None
Dr. Gopal Deshmukh Sameer Desmukh Dr. Hemchandra Deshmukh Dr. Satish
Deshmukh
www.soundcloud.com/catkamikazee Sameer
None
None
Pune Ruby Users Group www.punerb.org @punerb @punerb @deccanrubyconf www.deccanrubyconf.org
Ruby Science Foundation www.sciruby.com @sciruby @sciruby
None
Scientific Computing In Ruby
iruby notebook
Browser based Ruby REPL for interactive computing.
Runs in your browser Input cell – accepts Ruby code
Output cell – can render HTML/CSS/JS
None
nmatrix
ndimensional array object. Interface Ruby with high speed C libraries.
require 'nmatrix' n = NMatrix.new( [2,2], [1,2,3,4], dtype: :float32, stype:
:dense ) n[0,1] # => 2.0
Data Types :int8 :float32 :int16 :float64 :int32 :complex64 :int64 :complex128
Storage types Dense Dense matrix. List Sparse matrix type storing
data as a linked list. Yale Sparse type storing data in the 'New Yale' format.
NMatrix C API
nmatrix nmatrix atlas nmatrix lapacke nmatrix fftw gsl
nyaplot
Interactive plotting tool for Rubyists.
interactive HTML and JavaScript plots that can be displayed in
your browser.
None
Mapnya Nyaplot3D Bionya Map visualizations with inbuilt country charts. Three
Dimensional interactive plots. Biology plots for visualizing relationships of genes.
daru (Data Analysis in RUby)
daru == (Hindi) ददार sake alcohol
library for analysis, cleaning, manipulation and visualization of data.
Read/write many data sources Ephemeral statistics functions Works well with
'wild' data Data indexing
Acts as glue between other SciRuby libraries.
Daru::Vector Heterogenous Array that can be indexed on any Ruby
object. Name Label(0) Label(1) Label(2) ... Label(n-1)
Daru::DataFrame 2D spreadsheet like data structure indexed by rows or
columns. Col0 Label(0) Label(1) Label(2) ... Label(n-1) Col1 Col2 Col(n-1) ....
New Ideas for better Ruby
“Any sufficiently advanced technology is indistinguishable from magic.” Arthur
C. Clarke
Writing C extensions • FFI gem. • Rice. • SWIG.
• Writing C bindings manually.
Rubyist! Write me a C extension!
def factorial n n > 1 ? n*factorial(n-1) : 1
end
unsigned long long int calc_factorial(unsigned long long int n) {
return (n > 1 ? n*calc_factorial(n-1) : 1); } static VALUE cfactorial(VALUE self, VALUE n) { return ULL2FIX( calc_factorial(NUM2ULL(n))); }
void Init_factorial() { VALUE cFact = rb_define_class("Fact", rb_cObject); rb_define_method(cFact, "factorial",
cfactorial, 1); }
a = Fact.new a.factorial(8000)
Big Problems • Difficult and irritating to write. • Time
consuming to debug. • Tough to trace memory leaks. • Change mindset from high level to low level language. • Need to care about small things.™* *Matz – Keynote at Red Dot Ruby Conf 2016, Singapore.
Rubex
Rubex is a Crystalinspired superset of Ruby that compiles to
C.
class Fact def factorial(unsigned long long int n) n >
1 ? n*factorial(n-1) : 1 end end
# Create a C static array and return a Ruby
Array def adder(n) a = StaticArray(i32, n) i32 i = 0 i32 sum = 0 a.each(n) { a[i] = i*5 } for 0 <= i < n do sum += a[i] end sum end
Received the Ruby Association Grant 2016 for development of Rubex
https://github.com/v0dro/rubex
Scientific Computing on JRuby
NMatrix and NArray are a linear algebra libraries for Ruby
similar to numpy.
NMatrix C/C++ core CRuby interpreter Numo::NArray C core CRuby interpreter
JRuby backend for the NMatrix Ruby API – Sci. Computing
on JVM.
Allows interfacing JRuby libraries with jBLAS for performance. Uses Apache
Commons Math library for storage and operations on internal Java arrays.
https://github.com/prasunanand/ nmatrix/tree/jruby_port
Symbolic Computation in Ruby with symengine.rb
(x – y) * (x ** y / z)
require 'symengine' x = SymEngine::Symbol.new("x") y = SymEngine::Symbol.new("y") z =
SymEngine::Symbol.new("z") f = (x – y) * (x ** y / z) f.expand.to_s # x**(1 + y)/z – x**y*y/z f == - (x**y*y/z) + (x**y*x/z) # true
https://github.com/symengine/ symengine.rb
Ruby in Space
NASA SPICE Ruby wrapper spice_rub
require 'spice_rub' k_pool = SpiceRub::KernelPool.instance k_pool.load_folder("spec/data/kernels") epoch = SpiceRub::Time.now moon
= SpiceRub::Body.new(:moon) earth = SpiceRub::Body.now(:earth) earth.position_at(epoch) moon.distance_from(:earth, epoch) # 395791.1464913574 (Km)
https://github.com/gau27/spice_rub
Cool SciRuby Stickers
Thank You Ruby World Conf!
Any questions?