Skip to content

Commit

Permalink
SDN correctness (#1796)
Browse files Browse the repository at this point in the history
* Three new flavors of SDN

* Queues: tidy testing (#1808)

* Move queues into their own folder

* Delete old

* SDN: single source of truth, tidying (#1809)

* Nix the different flavors of SDN

* SDN.py now takes a --static argument

* Dedicated stanzas to capture ethe same file and run it differently'
  • Loading branch information
anshumanmohan authored Dec 21, 2023
1 parent 156f64d commit 42f5161
Show file tree
Hide file tree
Showing 17 changed files with 58 additions and 120,119 deletions.
69 changes: 0 additions & 69 deletions calyx-py/test/correctness/pifo_tree_pre_tangerine.data

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# pylint: disable=import-error
import sys
import fifo
import pifo
import calyx.builder as cb
Expand Down Expand Up @@ -172,5 +173,7 @@ def build(static=False):
return prog.program


# We will have a command line argument to determine whether the program is static.
if __name__ == "__main__":
build().emit()
static = sys.argv[1] == "--static" if len(sys.argv) > 1 else False
build(static=static).emit()
Loading

0 comments on commit 42f5161

Please sign in to comment.