https://github.com/magnusmorton/trace-analysis
Raw File
Tip revision: 4645af99638edea16d00e811c922b0fb9d6b86d9 authored by Magnus Morton on 11 January 2016, 20:33:10 UTC
subplots and recording output
Tip revision: 4645af9
letrunner.fish
#!/usr/bin/env fish

rm output/*
for x in (seq 1 10  1500)
        echo $x
	set y (math "$x-1")
	sed -e s/X/$x/ -e s/Y/$y/ < trace-benches/arith.rkt.t > generated_let.rkt
	for i in (seq 10)
                echo $i
		./pycket-c generated_let.rkt 10000 10000 >> output/generated_let$x
	end

end
back to top