-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allowing for different len in fibosq (#145)
* Allowing for different len in fibosq * Module to N = 14 --------- Co-authored-by: RogerTaule <[email protected]>
- Loading branch information
1 parent
8b6d35c
commit 47f48e0
Showing
6 changed files
with
72 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
require "fibonaccisq.pil" | ||
require "module.pil" | ||
|
||
// Notice that these two components have a one-to-one reationship, so they must have the same number of rows | ||
// for them to make sense and for the relationshhip to be satisfied | ||
// Notice that these two components have a one-to-one reationship | ||
// As they have a different trace length, we need to create multiple module instances | ||
airgroup FibonacciSquare { | ||
FibonacciSquare(N: 2**10); | ||
Module(N: 2**10); | ||
FibonacciSquare(N: 2**18); | ||
Module(N: 2**14); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"constraints": [{ "airgroup": "FibonacciSquare", "air_ids": [ { "air": "FibonacciSquare", "instance_ids": [ { "instance_id": 0, "constraints": [0, 2, 4] }, {"instance_id": 2 }] }, { "air": "Module"}] }] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters