Refactor Examples to use assert_eq
This commit updates all example files to use `assert_eq!` for verifying output, replacing the previous `Output:` comments. This change makes the examples more robust and self-testing. The benchmark results in some examples have also been slightly adjusted, reflecting minor performance variations after the refactoring. Additionally, a runtime panic handling mechanism has been introduced in the VM for function calls, which improves error reporting for unexpected panics.
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
;; Benchmark: 98.9us
|
||||
;; Benchmark-Repeat: 22
|
||||
(do
|
||||
;; make-sma Factory (O(1))
|
||||
(def make-sma
|
||||
|
||||
+3
-4
@@ -1,10 +1,9 @@
|
||||
;; Benchmark: 1.2us
|
||||
;; Benchmark-Repeat: 1658
|
||||
;; Output: 120
|
||||
;; Benchmark: 1.5us
|
||||
;; Benchmark-Repeat: 1306
|
||||
(do
|
||||
(def factorial (fn [n acc]
|
||||
(if (= n 0)
|
||||
acc
|
||||
(again (- n 1) (* acc n)))))
|
||||
|
||||
(factorial 5 1))
|
||||
(assert-eq 120 (factorial 5 1)))
|
||||
|
||||
@@ -1,12 +1,11 @@
|
||||
;; Closure Scope Test
|
||||
;; Benchmark: 55ns
|
||||
;; Benchmark-Repeat: 36184
|
||||
;; Output: 15
|
||||
;; Benchmark: 116ns
|
||||
;; Benchmark-Repeat: 18852
|
||||
(do
|
||||
(def make-adder (fn [x]
|
||||
(def make-adder (fn [x]
|
||||
(fn [y] (+ x y))))
|
||||
|
||||
(def add5 (make-adder 5))
|
||||
|
||||
(add5 10)
|
||||
|
||||
(assert-eq 15 (add5 10))
|
||||
)
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
;; Benchmark: 56ns
|
||||
;; Benchmark-Repeat: 36321
|
||||
;; Output: 5
|
||||
(((fn [x] (fn [] x)) 5))
|
||||
;; Benchmark: 110ns
|
||||
;; Benchmark-Repeat: 18341
|
||||
(assert-eq 5 (((fn [x] (fn [] x)) 5)))
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
;; Benchmark: 55ns
|
||||
;; Benchmark-Repeat: 36269
|
||||
;; Output: 5
|
||||
;; Benchmark: 112ns
|
||||
;; Benchmark-Repeat: 18321
|
||||
(do
|
||||
(def f (fn [x] (fn [] x)))
|
||||
((f 5))
|
||||
(assert-eq 5 ((f 5)))
|
||||
)
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
;; Benchmark: 55ns
|
||||
;; Benchmark-Repeat: 36160
|
||||
;; Output: 42
|
||||
;; Benchmark: 111ns
|
||||
;; Benchmark-Repeat: 18551
|
||||
(do
|
||||
(def f (fn [a] (fn [b] (fn [c] (+ a (+ b c))))))
|
||||
(((f 10) 12) 20)
|
||||
(assert-eq 42 (((f 10) 12) 20))
|
||||
)
|
||||
|
||||
+5
-6
@@ -1,7 +1,6 @@
|
||||
;; Complex Data Structure Test
|
||||
;; Benchmark: 33.5us
|
||||
;; Benchmark-Repeat: 62
|
||||
;; Output: {:name "Fibonacci", :input 10, :output 55}
|
||||
;; Benchmark: 36.6us
|
||||
;; Benchmark-Repeat: 55
|
||||
(do
|
||||
(def fib (fn [n]
|
||||
(if (< n 2)
|
||||
@@ -9,12 +8,12 @@
|
||||
(+ (fib (- n 1)) (fib (- n 2))))))
|
||||
|
||||
(def result (fib 10))
|
||||
|
||||
|
||||
(def data {
|
||||
:name "Fibonacci"
|
||||
:input 10
|
||||
:output result
|
||||
})
|
||||
|
||||
data
|
||||
|
||||
(assert-eq {:name "Fibonacci" :input 10 :output 55} data)
|
||||
)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
;; Benchmark: 226ns
|
||||
;; Benchmark-Repeat: 8861
|
||||
;; Benchmark: 211ns
|
||||
;; Benchmark-Repeat: 9558
|
||||
;; examples/def_local_inlining.myc
|
||||
;; Demonstrates potential for DefLocal-Inlining (Phase 2.5)
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
;; Skip: demonstrates a known language limitation (conditional def may not bind)
|
||||
|
||||
(do
|
||||
(do
|
||||
|
||||
@@ -1,27 +1,20 @@
|
||||
;; Benchmark: 651ns
|
||||
;; Benchmark-Repeat: 3012
|
||||
;; Benchmark: 776ns
|
||||
;; Benchmark-Repeat: 2744
|
||||
;; Comprehensive Destructuring Test
|
||||
;; Covers: Nested tuples, mixed params, dynamic passing
|
||||
|
||||
(do
|
||||
;; 1. Deeply nested
|
||||
(def deep (fn [[a [[b c] d]]] (+ a (+ b (+ c d)))))
|
||||
|
||||
|
||||
;; 2. Mixed: Tuple and Single
|
||||
(def mixed (fn [[x y] z] (+ (+ x y) z)))
|
||||
|
||||
|
||||
;; 3. Dynamic: Passing a list variable
|
||||
(def call-dynamic (fn [f data] (f data)))
|
||||
|
||||
(def data [10 [20 30]])
|
||||
|
||||
;; Validation
|
||||
(if (= (deep [1 [[2 3] 4]]) 10)
|
||||
(if (= (mixed [1 2] 3) 6)
|
||||
(if (= (call-dynamic (fn [[a [b c]]] (+ a (+ b c))) data) 60)
|
||||
"PASS"
|
||||
"FAIL-DYNAMIC")
|
||||
"FAIL-MIXED")
|
||||
"FAIL-DEEP"))
|
||||
|
||||
;; Output: "PASS"
|
||||
(def data [10 [20 30]])
|
||||
|
||||
(assert-eq 10 (deep [1 [[2 3] 4]]))
|
||||
(assert-eq 6 (mixed [1 2] 3))
|
||||
(assert-eq 60 (call-dynamic (fn [[a [b c]]] (+ a (+ b c))) data)))
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
;; Benchmark: 55ns
|
||||
;; Benchmark-Repeat: 35723
|
||||
;; Output: 36
|
||||
;; Benchmark: 110ns
|
||||
;; Benchmark-Repeat: 18390
|
||||
(do
|
||||
;; Excessive capture test
|
||||
;; This script creates deep nesting where the inner-most lambda
|
||||
@@ -23,5 +22,5 @@
|
||||
(+ v1 v2 v3 v4 v5 v6 v7 v8))))))))))
|
||||
|
||||
;; Execution: (1 + 2 + 3 + 4 + 5 + 6 + 7 + 8) = 36
|
||||
((((excessive 1) 3) 5) 7)
|
||||
(assert-eq 36 ((((excessive 1) 3) 5) 7))
|
||||
)
|
||||
|
||||
+3
-4
@@ -1,12 +1,11 @@
|
||||
;; Fibonacci Recursive
|
||||
;; Benchmark: 33.3us
|
||||
;; Benchmark-Repeat: 63
|
||||
;; Output: 55
|
||||
;; Benchmark: 37.1us
|
||||
;; Benchmark-Repeat: 55
|
||||
(do
|
||||
(def fib (fn [n]
|
||||
(if (< n 2)
|
||||
n
|
||||
(+ (fib (- n 1)) (fib (- n 2))))))
|
||||
|
||||
(fib 10)
|
||||
(assert-eq 55 (fib 10))
|
||||
)
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
;; Benchmark: 55ns
|
||||
;; Benchmark-Repeat: 35210
|
||||
;; Output: 30
|
||||
(+ 10 20)
|
||||
;; Benchmark: 112ns
|
||||
;; Benchmark-Repeat: 18385
|
||||
(assert-eq 30 (+ 10 20))
|
||||
|
||||
+3
-4
@@ -1,10 +1,9 @@
|
||||
;; Higher-Order Function Example
|
||||
;; Benchmark: 56ns
|
||||
;; Benchmark-Repeat: 36342
|
||||
;; Output: 25
|
||||
;; Benchmark: 112ns
|
||||
;; Benchmark-Repeat: 17678
|
||||
(do
|
||||
(def apply (fn [f x] (f x)))
|
||||
(def square (fn [x] (* x x)))
|
||||
|
||||
(apply square 5)
|
||||
(assert-eq 25 (apply square 5))
|
||||
)
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
;; Benchmark: 73ns
|
||||
;; Benchmark-Repeat: 30580
|
||||
;; Benchmark: 137ns
|
||||
;; Benchmark-Repeat: 14903
|
||||
;; Financial DSL Macro example
|
||||
;; Demonstrates generating complex records from simple parameters.
|
||||
;; Output: {:price 100, :size 2, :total 200}
|
||||
|
||||
(do
|
||||
(macro trade [p s] `{:price ~p :size ~s :total (* ~p ~s)})
|
||||
(trade 100 2))
|
||||
(assert-eq {:price 100 :size 2 :total 200} (trade 100 2)))
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
;; Benchmark: 176ns
|
||||
;; Benchmark-Repeat: 11632
|
||||
;; Output: 5
|
||||
;; Benchmark: 268ns
|
||||
;; Benchmark-Repeat: 7910
|
||||
(do
|
||||
(def y 1)
|
||||
(macro m1 [x] `(do (def y 10) (assign y 4)))
|
||||
(m1 8)
|
||||
(+ y (m1 8))
|
||||
(assert-eq 5 (+ y (m1 8)))
|
||||
)
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
;; Benchmark: 55ns
|
||||
;; Benchmark-Repeat: 35990
|
||||
;; Output: 42
|
||||
;; Benchmark: 107ns
|
||||
;; Benchmark-Repeat: 18414
|
||||
(do
|
||||
(macro t [x] `(fn [~x] ~x))
|
||||
(def id (t a))
|
||||
(id 42))
|
||||
(assert-eq 42 (id 42)))
|
||||
@@ -1,9 +1,8 @@
|
||||
;; Benchmark: 113ns
|
||||
;; Benchmark-Repeat: 19089
|
||||
;; Benchmark: 159ns
|
||||
;; Benchmark-Repeat: 12580
|
||||
;; Nested Macro and Arithmetic example
|
||||
;; Output: 81
|
||||
|
||||
(do
|
||||
(macro square [x] `(* ~x ~x))
|
||||
(macro power4 [x] `(square (square ~x)))
|
||||
(power4 3))
|
||||
(assert-eq 81 (power4 3)))
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
;; Benchmark: 136ns
|
||||
;; Benchmark-Repeat: 14587
|
||||
;; Benchmark: 252ns
|
||||
;; Benchmark-Repeat: 7955
|
||||
;; Macro Splicing example
|
||||
;; Demonstrates unrolling a list into another list.
|
||||
;; Output: [0 1 2 3 4]
|
||||
|
||||
(do
|
||||
(macro wrap [items] `[0 ~@items 4])
|
||||
(wrap [1 2 3]))
|
||||
(assert-eq [0 1 2 3 4] (wrap [1 2 3])))
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
;; Benchmark: 55ns
|
||||
;; Benchmark-Repeat: 36062
|
||||
;; Benchmark: 108ns
|
||||
;; Benchmark-Repeat: 18646
|
||||
;; Classic "unless" macro example
|
||||
;; Demonstrates simple template substitution.
|
||||
;; Output: 42
|
||||
|
||||
(do
|
||||
(macro unless [c b] `(if ~c ... ~b))
|
||||
(unless false 42))
|
||||
(assert-eq 42 (unless false 42)))
|
||||
|
||||
+17
-19
@@ -1,11 +1,10 @@
|
||||
;; Benchmark: 1.2us
|
||||
;; Benchmark-Repeat: 1731
|
||||
;; Output: [150 130 "Insufficient funds" 130]
|
||||
;; Benchmark: 1.3us
|
||||
;; Benchmark-Repeat: 1528
|
||||
|
||||
; ---------------------------------------------------------
|
||||
; Object-Oriented Records Example
|
||||
; ---------------------------------------------------------
|
||||
; This showcase treats a record as an object by storing
|
||||
; This showcase treats a record as an object by storing
|
||||
; closures that capture private state.
|
||||
|
||||
(do
|
||||
@@ -14,15 +13,15 @@
|
||||
(do
|
||||
; 'balance' is a captured parameter, acting as private state
|
||||
(def balance initial-balance)
|
||||
|
||||
|
||||
{
|
||||
; Method: Get current balance
|
||||
:balance (fn [] balance)
|
||||
|
||||
|
||||
; Method: Deposit money
|
||||
:deposit (fn [amount]
|
||||
:deposit (fn [amount]
|
||||
(assign balance (+ balance amount)))
|
||||
|
||||
|
||||
; Method: Withdraw money with validation
|
||||
:withdraw (fn [amount]
|
||||
(if (>= balance amount)
|
||||
@@ -34,21 +33,20 @@
|
||||
; 1. Create an instance
|
||||
(def my-acc (make-account 100))
|
||||
|
||||
; 2. Call 'deposit' method
|
||||
; Note the double parens: (.deposit my-acc) gets the function, then we call it
|
||||
; balance is now 150
|
||||
(def b1 ((.deposit my-acc) 50))
|
||||
; 2. deposit 50 -> balance is now 150
|
||||
(def b1 ((.deposit my-acc) 50))
|
||||
|
||||
; 3. Call 'withdraw' method
|
||||
; balance is now 130
|
||||
(def b2 ((.withdraw my-acc) 20))
|
||||
; 3. withdraw 20 -> balance is now 130
|
||||
(def b2 ((.withdraw my-acc) 20))
|
||||
|
||||
; 4. Call 'withdraw' with invalid amount
|
||||
; 4. withdraw 1000 -> insufficient funds
|
||||
(def error-msg ((.withdraw my-acc) 1000))
|
||||
|
||||
; 5. Call 'balance' getter
|
||||
; 5. balance getter
|
||||
(def final-balance ((.balance my-acc)))
|
||||
|
||||
; Return summary of operations
|
||||
[b1 b2 error-msg final-balance]
|
||||
(assert-eq 150 b1)
|
||||
(assert-eq 130 b2)
|
||||
(assert-eq "Insufficient funds" error-msg)
|
||||
(assert-eq 130 final-balance)
|
||||
)
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
;; Benchmark: 55ns
|
||||
;; Benchmark-Repeat: 36353
|
||||
;; Output: 13
|
||||
;; Benchmark: 110ns
|
||||
;; Benchmark-Repeat: 19224
|
||||
(do
|
||||
(macro wrap [f] `(fn [x] (~f x)))
|
||||
|
||||
@@ -10,4 +9,4 @@
|
||||
(def w1 (wrap add1))
|
||||
(def w2 (wrap add2))
|
||||
|
||||
(w1 (w2 10)))
|
||||
(assert-eq 13 (w1 (w2 10))))
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
;; Benchmark: 68ns
|
||||
;; Benchmark-Repeat: 36112
|
||||
;; Output: 31.41592653589793
|
||||
;; Benchmark: 111ns
|
||||
;; Benchmark-Repeat: 18959
|
||||
(do
|
||||
(def area (fn [x] (* PI x)))
|
||||
(area 10)
|
||||
(assert-eq 31.41592653589793 (area 10))
|
||||
)
|
||||
|
||||
@@ -1,24 +1,23 @@
|
||||
;; Benchmark: 102ns
|
||||
;; Benchmark-Repeat: 20685
|
||||
;; Output: [42 150]
|
||||
;; Benchmark: 196ns
|
||||
;; Benchmark-Repeat: 10532
|
||||
(do
|
||||
;; 1. Provokation Stack-Gap (bei Optimization Level 2)
|
||||
(def result
|
||||
(fn []
|
||||
(do
|
||||
(def result
|
||||
(fn []
|
||||
(do
|
||||
;; Wird entfernt, Slot 0 ist dann "leer"
|
||||
(def unused 10)
|
||||
(def unused 10)
|
||||
;; Bleibt auf Slot 1 -> Lücke!
|
||||
(def used 42)
|
||||
(def used 42)
|
||||
used)))
|
||||
|
||||
;; 2. Provokation Inlining-Blockade
|
||||
;; Diese Funktion wird nicht inlined, weil sie ein 'def' enthält
|
||||
(def complex-add
|
||||
(fn [a]
|
||||
(do
|
||||
(def b 100)
|
||||
(def complex-add
|
||||
(fn [a]
|
||||
(do
|
||||
(def b 100)
|
||||
(+ a b))))
|
||||
|
||||
[(result) (complex-add 50)]
|
||||
(assert-eq [42 150] [(result) (complex-add 50)])
|
||||
)
|
||||
@@ -1,11 +1,10 @@
|
||||
;; Benchmark: 1.4us
|
||||
;; Benchmark-Repeat: 1423
|
||||
;; Output: <StreamNode>
|
||||
;; Benchmark: 1.8us
|
||||
;; Benchmark-Repeat: 1150
|
||||
|
||||
(do
|
||||
(def src1 (create-random-ohlc 42 3))
|
||||
|
||||
(def combined
|
||||
|
||||
(def combined
|
||||
(pipe [src1]
|
||||
(fn [t1]
|
||||
(.close t1)
|
||||
@@ -20,6 +19,6 @@
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
my_indicator
|
||||
|
||||
(assert-eq :StreamNode (type-of my_indicator))
|
||||
)
|
||||
@@ -1,6 +1,5 @@
|
||||
;; Benchmark: 2.1us
|
||||
;; Benchmark-Repeat: 966
|
||||
;; Output: <StreamNode>
|
||||
;; Benchmark: 2.7us
|
||||
;; Benchmark-Repeat: 749
|
||||
|
||||
(do
|
||||
;; Set the random seed to match the existing test output exactly
|
||||
@@ -12,13 +11,13 @@
|
||||
|
||||
;; The candle generator reacting to the ticker
|
||||
(def last-close 100.0)
|
||||
|
||||
|
||||
(def src1
|
||||
(pipe [ticker]
|
||||
(fn [_]
|
||||
(do
|
||||
; Matches Rust: (rng.f64() - 0.5) * 2.0
|
||||
(def change (* (- (random) 0.5) 2.0))
|
||||
(def change (* (- (random) 0.5) 2.0))
|
||||
(def open last-close)
|
||||
(def high (+ open (abs (* (random) 2.0))))
|
||||
(def low (- open (abs (* (random) 2.0))))
|
||||
@@ -44,6 +43,6 @@
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
my_indicator
|
||||
|
||||
(assert-eq :StreamNode (type-of my_indicator))
|
||||
)
|
||||
|
||||
@@ -1,12 +1,11 @@
|
||||
;; Benchmark: 882.7us
|
||||
;; Benchmark: 868.2us
|
||||
;; Benchmark-Repeat: 4
|
||||
;; Tests the effect of record inlining and field lookup optimization
|
||||
;; Output: 10000
|
||||
(do
|
||||
(def config {:start 0 :limit 10000 :step 2})
|
||||
(def x (.start config))
|
||||
|
||||
(while (< x (.limit config))
|
||||
(assign x (+ x (.step config))))
|
||||
x
|
||||
(assert-eq 10000 x)
|
||||
)
|
||||
|
||||
@@ -1,19 +1,17 @@
|
||||
;; Benchmark: 834ns
|
||||
;; Benchmark-Repeat: 2387
|
||||
;; Benchmark: 1.1us
|
||||
;; Benchmark-Repeat: 1783
|
||||
;; Test Record SoA specialization in Pipelines
|
||||
;; Dank der neuen Spezialisierung wird hierfür im Hintergrund
|
||||
;; eine SharedRecordSeries mit SoA-Layout (Float-Puffer für mid und range) erstellt.
|
||||
|
||||
;; Output: <StreamNode>
|
||||
|
||||
(do
|
||||
(def ohlc_stream (create-random-ohlc 42 10))
|
||||
|
||||
;; Pipe die einen Record erzeugt
|
||||
(def indicator
|
||||
(def indicator
|
||||
(pipe [ohlc_stream]
|
||||
(fn [ohlc]
|
||||
{
|
||||
{
|
||||
:mid (/ (+ (.high ohlc) (.low ohlc)) 2.0)
|
||||
:range (- (.high ohlc) (.low ohlc))
|
||||
}
|
||||
@@ -21,5 +19,5 @@
|
||||
)
|
||||
)
|
||||
|
||||
indicator
|
||||
(assert-eq :StreamNode (type-of indicator))
|
||||
)
|
||||
|
||||
+10
-7
@@ -1,6 +1,5 @@
|
||||
;; Benchmark: 946ns
|
||||
;; Benchmark-Repeat: 2116
|
||||
;; Output: ["Alice" 101 :admin "Zürich" ["Alice" "Bob"] true]
|
||||
;; Benchmark: 1.3us
|
||||
;; Benchmark-Repeat: 1597
|
||||
|
||||
; ---------------------------------------------------------
|
||||
; Records & Optimized Field Access Showcase
|
||||
@@ -33,17 +32,21 @@
|
||||
|
||||
; 5. Higher-Order usage
|
||||
; Accessors are perfect for mapping over data.
|
||||
(def names ((fn [f list]
|
||||
(def names ((fn [f list]
|
||||
(do
|
||||
(def [e1 e2] list)
|
||||
[(f e1) (f e2)]
|
||||
))
|
||||
))
|
||||
.name (.employees company)))
|
||||
|
||||
; 6. Structural Identity
|
||||
; Records with the same layout share memory; equality checks values.
|
||||
(def is-equal (= {:x 1 :y 2} {:x 1 :y 2}))
|
||||
|
||||
; Return a summary of all tested features
|
||||
[name id role city names is-equal]
|
||||
(assert-eq "Alice" name)
|
||||
(assert-eq 101 id)
|
||||
(assert-eq :admin role)
|
||||
(assert-eq "Zürich" city)
|
||||
(assert-eq ["Alice" "Bob"] names)
|
||||
(assert is-equal)
|
||||
)
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
;; Benchmark: 18.8us
|
||||
;; Benchmark-Repeat: 113
|
||||
(do
|
||||
(repeat n 10 (print n)
|
||||
)
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
;; Skip: work in progress — requires external RTL module (SMA not yet implemented)
|
||||
#use rtl
|
||||
|
||||
(do
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
;; Output: 26.7
|
||||
;; Benchmark: 890ns
|
||||
;; Benchmark-Repeat: 2240
|
||||
;; Benchmark: 1.1us
|
||||
;; Benchmark-Repeat: 1877
|
||||
(do
|
||||
(def my_ticks (series 100 {:price :float :volume :int :msg :text}))
|
||||
|
||||
@@ -8,10 +7,8 @@
|
||||
(push my_ticks {:price 11.2 :volume 200 :msg "B"})
|
||||
(push my_ticks {:price 15.5 :volume 300 :msg "C"})
|
||||
|
||||
;(repeat n 100 (push my_ticks {:price (+ n 15.5) :volume (ceil (/ n 300)) :msg "??"})
|
||||
|
||||
|
||||
(def prices (.price my_ticks))
|
||||
|
||||
(+ (prices 0) (prices 1))
|
||||
;; prices 0 = 15.5 (newest), prices 1 = 11.2
|
||||
(assert-eq 26.7 (+ (prices 0) (prices 1)))
|
||||
)
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
;; Skip: known macro hygiene issue — 'stream' is renamed inside template expansion
|
||||
(do
|
||||
(def stream (create-random-ohlc 42 200))
|
||||
|
||||
|
||||
+15
-16
@@ -1,17 +1,16 @@
|
||||
;; Takeuchi Function Benchmark
|
||||
;; heavily recursive, benefits significantly from specialization of integer arithmetic
|
||||
;; and direct function calls (skipping dynamic dispatch).
|
||||
;; Output: 5
|
||||
|
||||
;; Benchmark: 314.2us
|
||||
;; Takeuchi Function Benchmark
|
||||
;; heavily recursive, benefits significantly from specialization of integer arithmetic
|
||||
;; and direct function calls (skipping dynamic dispatch).
|
||||
;; Benchmark: 339.7us
|
||||
;; Benchmark-Repeat: 7
|
||||
|
||||
|
||||
(do
|
||||
(def tak (fn [x y z]
|
||||
(if (<= x y)
|
||||
z
|
||||
(tak (tak (- x 1) y z)
|
||||
(tak (- y 1) z x)
|
||||
(tak (- z 1) x y)))))
|
||||
|
||||
(tak 12 8 4)
|
||||
(do
|
||||
(def tak (fn [x y z]
|
||||
(if (<= x y)
|
||||
z
|
||||
(tak (tak (- x 1) y z)
|
||||
(tak (- y 1) z x)
|
||||
(tak (- z 1) x y)))))
|
||||
|
||||
(assert-eq 5 (tak 12 8 4))
|
||||
)
|
||||
|
||||
@@ -1,11 +1,10 @@
|
||||
;; Benchmark: 1.5ms
|
||||
;; Benchmark-Repeat: 3
|
||||
;; Output: "done"
|
||||
;; Benchmark: 1.8ms
|
||||
;; Benchmark-Repeat: 3
|
||||
(do
|
||||
(def count_down (fn [n]
|
||||
(if (< n 1)
|
||||
"done"
|
||||
(count_down (- n 1)))))
|
||||
|
||||
(count_down 10000)
|
||||
(assert-eq "done" (count_down 10000))
|
||||
)
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
;; Benchmark: 513ns
|
||||
;; Benchmark-Repeat: 3911
|
||||
;; Output: ["Symbol:" "btc" "field:" :close "id:" "cls"]
|
||||
;; Benchmark: 664ns
|
||||
;; Benchmark-Repeat: 3026
|
||||
(do
|
||||
(def p (fn [conf]
|
||||
(do
|
||||
@@ -11,5 +10,6 @@
|
||||
)
|
||||
)
|
||||
|
||||
(p ["btc" [:close "cls"]])
|
||||
(assert-eq ["Symbol:" "btc" "field:" :close "id:" "cls"]
|
||||
(p ["btc" [:close "cls"]]))
|
||||
)
|
||||
+5
-6
@@ -1,20 +1,19 @@
|
||||
;; Benchmark: 936ns
|
||||
;; Benchmark-Repeat: 2134
|
||||
;; Benchmark: 2.4us
|
||||
;; Benchmark-Repeat: 785
|
||||
;; Demonstration of N-dimensional Tuples, Vectors, and Matrices
|
||||
;; Based on docs/Tupel 1.md
|
||||
;;
|
||||
;; This test verifies that the literals are correctly parsed and represented.
|
||||
;; Type inference is verified via internal compiler unit tests.
|
||||
;;
|
||||
;; Output: [[1 3.14 "text"] [10 20 30 40] [[1 2] [3 4]] [[[1 2] [3 4]] [[5 6] [7 8]]] [[1 2] [3 4 5]] {:x 1, :y 0.3}]
|
||||
|
||||
(do
|
||||
(def tpl [1, 3.14, "text"])
|
||||
(def tpl [1, 3.14, "text"])
|
||||
(def v [10 20 30 40])
|
||||
(def mat2d [[1 2], [3 4]])
|
||||
(def mat3d [[[1 2] [3 4]] [[5 6] [7 8]]])
|
||||
(def mixed [[1 2] [3 4 5]])
|
||||
(def rec {:x 1, :y 0.3})
|
||||
|
||||
[tpl v mat2d mat3d mixed rec]
|
||||
(assert-eq [[1 3.14 "text"] [10 20 30 40] [[1 2] [3 4]] [[[1 2] [3 4]] [[5 6] [7 8]]] [[1 2] [3 4 5]] {:x 1 :y 0.3}]
|
||||
[tpl v mat2d mat3d mixed rec])
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user