-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathlakefile.lean
54 lines (42 loc) · 1.13 KB
/
lakefile.lean
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import Lake
open Lake DSL
package etch
lean_lib Etch where defaultFacets := #[LeanLib.sharedFacet]
@[default_target]
lean_exe bench {
root := `Etch.Benchmark
}
@[default_target]
lean_exe proofs {
root := `Etch.StreamFusion.Proofs.Proofs
}
@[default_target]
lean_exe fusion {
root := `Etch.StreamFusion.Main
moreLeancArgs := #["-fno-omit-frame-pointer", "-g"]
}
lean_exe fusion_mat {
root := `Etch.StreamFusion.MainMatrix
moreLeancArgs := #["-fno-omit-frame-pointer", "-g"]
}
@[default_target]
lean_exe eg {
root := `Etch.StreamFusion.Examples.Benchmarks
moreLeancArgs := #["-fno-omit-frame-pointer", "-g"]
}
lean_exe tutorial {
root := `Etch.StreamFusion.Tutorial
moreLeancArgs := #["-fno-omit-frame-pointer", "-g"]
}
lean_exe reuse {
root := `Etch.StreamFusion.ReuseTest
moreLeancArgs := #["-fno-omit-frame-pointer", "-g"]
}
lean_exe seq {
root := `Etch.StreamFusion.Sequence
moreLeancArgs := #["-fno-omit-frame-pointer", "-g"]
}
@[default_target]
lean_lib Etch.Verification.Semantics.Example
require mathlib from git
"https://github.com/leanprover-community/mathlib4/"@"3897434e80c1e66658416557947b9b9604e336a7"