diff options
| author | azidar | 2016-01-15 18:35:09 -0800 |
|---|---|---|
| committer | azidar | 2016-01-16 14:28:19 -0800 |
| commit | 690a74f397a51cb919a7198ea41a04273120d011 (patch) | |
| tree | 032801b7e14826f064b13e5de72c9fef254f1d87 | |
| parent | 3dd1f61564eacba1b11c163b2f6e74490ea21c94 (diff) | |
Fixed Vector performance tests
| -rw-r--r-- | test/performance/Vector1000.fir | 2 | ||||
| -rw-r--r-- | test/performance/Vector2000.fir | 2 | ||||
| -rw-r--r-- | test/performance/Vector4000.fir | 2 | ||||
| -rw-r--r-- | test/performance/Vector8000.fir | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/test/performance/Vector1000.fir b/test/performance/Vector1000.fir index f5f15a57..767645bb 100644 --- a/test/performance/Vector1000.fir +++ b/test/performance/Vector1000.fir @@ -4,4 +4,4 @@ circuit Top : module Top : input in1 : UInt<32>[1000] output out : UInt<32>[1000] - out := in1 + out <= in1 diff --git a/test/performance/Vector2000.fir b/test/performance/Vector2000.fir index fa67732e..06a4eb13 100644 --- a/test/performance/Vector2000.fir +++ b/test/performance/Vector2000.fir @@ -4,4 +4,4 @@ circuit Top : module Top : input in1 : UInt<32>[2000] output out : UInt<32>[2000] - out := in1 + out <= in1 diff --git a/test/performance/Vector4000.fir b/test/performance/Vector4000.fir index b7d1617f..73b98e36 100644 --- a/test/performance/Vector4000.fir +++ b/test/performance/Vector4000.fir @@ -4,4 +4,4 @@ circuit Top : module Top : input in1 : UInt<32>[4000] output out : UInt<32>[4000] - out := in1 + out <= in1 diff --git a/test/performance/Vector8000.fir b/test/performance/Vector8000.fir index 574145fa..24bdfad1 100644 --- a/test/performance/Vector8000.fir +++ b/test/performance/Vector8000.fir @@ -4,4 +4,4 @@ circuit Top : module Top : input in1 : UInt<32>[8000] output out : UInt<32>[8000] - out := in1 + out <= in1 |
