aboutsummaryrefslogtreecommitdiffstats
path: root/src/VeriFuzz/Sim/Vivado.hs
diff options
context:
space:
mode:
authorYann Herklotz <git@ymhg.org>2019-05-09 14:36:28 +0100
committerYann Herklotz <git@ymhg.org>2019-05-09 14:36:28 +0100
commit110d1392882cff9618997acad85af78017688c86 (patch)
tree5982e3d54321f89af1d1b694ed7db35fca03858a /src/VeriFuzz/Sim/Vivado.hs
parentfa2703bb983c2dd72fea3863980a7c589b57f0a4 (diff)
downloadverismith-110d1392882cff9618997acad85af78017688c86.tar.gz
verismith-110d1392882cff9618997acad85af78017688c86.zip
Add NFData to force evaluation of config file
Diffstat (limited to 'src/VeriFuzz/Sim/Vivado.hs')
-rw-r--r--src/VeriFuzz/Sim/Vivado.hs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/VeriFuzz/Sim/Vivado.hs b/src/VeriFuzz/Sim/Vivado.hs
index c17334e..ee67a78 100644
--- a/src/VeriFuzz/Sim/Vivado.hs
+++ b/src/VeriFuzz/Sim/Vivado.hs
@@ -16,6 +16,7 @@ module VeriFuzz.Sim.Vivado
)
where
+import Control.DeepSeq (NFData, rnf, rwhnf)
import Data.Text (Text, unpack)
import Prelude hiding (FilePath)
import Shelly
@@ -42,6 +43,9 @@ instance Synthesiser Vivado where
synthOutput = vivadoOutput
setSynthOutput (Vivado a b _) = Vivado a b
+instance NFData Vivado where
+ rnf = rwhnf
+
defaultVivado :: Vivado
defaultVivado = Vivado Nothing "vivado" "syn_vivado.v"