Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
4251ae9
cleanup, only exp auotmatically expanded based on acc bound
szerdick May 8, 2026
7a975f3
add to fast testset
szerdick May 10, 2026
f92172e
link correct git version:
szerdick May 10, 2026
e6998fa
naming errors
szerdick May 10, 2026
3482fde
change linalg variant to ulp error bound instead of acc error bound.
szerdick May 13, 2026
cf97725
change xdsl version
szerdick May 14, 2026
abc7562
Merge branch 'main' into szerdick/exp-micro-linalg
szerdick May 14, 2026
d93e575
pinned wrong version of xdsl
szerdick May 14, 2026
90b5ac6
version stuff and error control
szerdick May 14, 2026
2fa6bbd
run tests again
szerdick May 14, 2026
bb6a117
new kernel to test polynomial evaluation via degree
szerdick May 10, 2026
2744e54
add exp_polynomial csv file
szerdick May 10, 2026
23cac10
remove softmax rule from the next pr
szerdick May 13, 2026
34ce014
import softmax-mia kernel from szerdick/softmax-to-exp-to-polynomial-…
szerdick May 10, 2026
017eb69
add softmax to snakefile
szerdick May 10, 2026
8a97a66
renaming
szerdick May 10, 2026
7fb3bba
edit makefile and delete print statements
szerdick May 10, 2026
9091950
safe variants for f16
szerdick May 14, 2026
6531808
new plots for thesis, reran tests and add command to generate in snak…
szerdick May 12, 2026
e4c8b31
add plots for RQs and automate via Snakefile
szerdick May 12, 2026
b467b5b
plots to trade off accuracy and performance
szerdick May 13, 2026
da76ce6
correctness check disabled
szerdick May 14, 2026
a897494
new plot
szerdick May 14, 2026
b1101e4
run fast test and change macro plotting
szerdick May 15, 2026
d60f9b1
renamed plots, and small modifications, new plots for actuall error
szerdick May 30, 2026
b539c5d
add more plots for rq4
szerdick May 31, 2026
258666b
name change for the rq plots, added new rq4 plots
szerdick Jun 1, 2026
a4fc1a9
ran experiments
szerdick Jun 1, 2026
e1512e2
a lot of renaming of plots
szerdick Jun 1, 2026
36bc255
a lot of renaming and rq4 plots
szerdick Jun 2, 2026
6d5625a
stale artifact
szerdick Jun 4, 2026
1514324
drop the top and right frame on all your figures
szerdick Jun 4, 2026
14c0c6e
small ir figure
szerdick Jun 4, 2026
2b1d7ea
plot fix to remove spine again that was accidentally added
szerdick Jun 5, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,25 @@ pipeline:
exp_micro:
snakemake --cores $(JOBS) --rerun-incomplete exp_micro

.PHONY: exp_polynomial
exp_polynomial:
snakemake --cores $(JOBS) --rerun-incomplete exp_polynomial

.PHONY: exp_macro
exp_macro:
snakemake --cores $(JOBS) --rerun-incomplete exp_macro

.PHONY: exp
exp:
snakemake --cores $(JOBS) --rerun-incomplete exp_micro exp_macro
snakemake --cores $(JOBS) --rerun-incomplete exp_micro exp_macro exp_polynomial

.PHONY: softmax_polynomial
softmax_polynomial:
snakemake --cores $(JOBS) --rerun-incomplete softmax_polynomial

.PHONY: clean
clean:
snakemake --delete-all-output --rerun-incomplete fast all pipeline low_level_representation exp_micro exp_macro
snakemake --delete-all-output --rerun-incomplete fast all pipeline low_level_representation exp_micro exp_macro exp_polynomial

.PHONY: docker-build
docker-build:
Expand Down
Loading
Loading