aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/performance/Vector1000.fir2
-rw-r--r--test/performance/Vector2000.fir2
-rw-r--r--test/performance/Vector4000.fir2
-rw-r--r--test/performance/Vector8000.fir2
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