From 690a74f397a51cb919a7198ea41a04273120d011 Mon Sep 17 00:00:00 2001 From: azidar Date: Fri, 15 Jan 2016 18:35:09 -0800 Subject: Fixed Vector performance tests --- test/performance/Vector1000.fir | 2 +- test/performance/Vector2000.fir | 2 +- test/performance/Vector4000.fir | 2 +- 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 -- cgit v1.2.3