wardite 0.5.0 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,46 @@
1
+ # RubyKaigi 2025 Proposal
2
+
3
+ ## title:
4
+
5
+ Implementing WASM Runtime in Ruby - ruby.wasm works on Ruby?
6
+
7
+ ## Abstract
8
+
9
+ <!--
10
+
11
+ Create an abstract of talk in English, following below:
12
+
13
+ - 作者はWarditeというRubyのWASMランタイムを開発した
14
+ - WarditeはPure Rubyで、RBSに完全対応している
15
+ - Warditeでruby.wasmを動かすことをマイルストーンにしており、その取り組みについて報告する。
16
+ - 例えば、WASI preview 1 対応、パフォーマンス改善など。
17
+
18
+ -->
19
+
20
+ The author has developed a WASM runtime named Wardite, which is implemented entirely in pure Ruby and fully annotated by RBS. The primary milestone for Wardite is to successfully run ruby.wasm. This presentation will dive deeply into the various efforts and challenges encountered in reaching this milestone. Key topics will include the implementation of support for WASI preview 1, performance enhancements, and other technical advancements. Attendees will gain insights into the current status of Wardite, its architecture, and the approaches taken to eficciently implement WebAssembly runtime in Ruby. The talk aims to provide a comprehensive overview of the progress made so far and the future directions for Wardite, highlighting its potential impact on the Ruby and WebAssembly ecosystems.
21
+
22
+ ## Details
23
+
24
+ 現在、以下のような内容を考えています
25
+
26
+ - なぜ、Warditeを作ったか?
27
+ - Pure Rubyであることのメリット
28
+ - cf. wazero in Go
29
+ - 簡単なWarditeの紹介
30
+ - 動作のデモ
31
+ - Warditeの実装
32
+ - WASM Core 1.0を動かすために必要な仕様の解説
33
+ - 簡単な内部設計
34
+ - 命令の概要
35
+ - RBSによる型情報の利用
36
+ - Wardite開発上の技術的チャレンジ
37
+ - パフォーマンス改善の取り組み
38
+ - 基本的な計測(ruby-prof、perf)
39
+ - オブジェクト生成の低減・最適化
40
+ - Warditeでruby.wasmを動かすための取り組み
41
+ - WASI preview 1 対応
42
+ - 今後の展望
43
+ - 更なるパフォーマンス改善
44
+ - Component 対応
45
+
46
+ ## Pitch
data/misc/slides/fib.c ADDED
@@ -0,0 +1,4 @@
1
+ int fib(int n) {
2
+ if (n <= 1) return n;
3
+ return fib(n - 1) + fib(n - 2);
4
+ }
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <script>
5
+ WebAssembly.instantiateStreaming(fetch('./fib.wasm'))
6
+ .then(obj => {
7
+ alert(`fib(20) = ${obj.instance.exports.fib(20)}`);
8
+ });
9
+ </script>
10
+ </head>
11
+ <body>
12
+ </body>
13
+ </html>
Binary file
Binary file
Binary file