b9d88f019e
Update benchmark output for soa_series.myc. Also, fix the tester to not panic when a baseline is missing, and instead just report it as missing.
15 lines
371 B
Plaintext
15 lines
371 B
Plaintext
;; Output: 26.7
|
|
;; Benchmark: 1.4us
|
|
;; Benchmark-Repeat: 1406
|
|
(do
|
|
(def my_ticks (series {:price :float :volume :int :msg :text}))
|
|
|
|
(push my_ticks {:price 10.5 :volume 100 :msg "A"})
|
|
(push my_ticks {:price 11.2 :volume 200 :msg "B"})
|
|
(push my_ticks {:price 15.5 :volume 300 :msg "C"})
|
|
|
|
(def prices (.price my_ticks))
|
|
|
|
(+ (prices 0) (prices 1))
|
|
)
|