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
runner.fish
#!/usr/local/bin/fish

rm output/*
for x in (seq 1 10  1500)
        echo $x
	sed s/Z/$x/ < trace-benches/generator.rkt.t > generated.rkt
	for i in (seq 10)
                echo $i
		./pycket-c generated.rkt 10000 10000 >> output/generated_all$x
	end

end
back to top