From 4afdaa7e4dd4624110380ef7bdf8f62ec98ff7fb Mon Sep 17 00:00:00 2001
From: Martin Bauer <martin.bauer@fau.de>
Date: Fri, 18 Nov 2016 18:04:05 +0100
Subject: [PATCH] lbmpy: New strategy based simplification mechanism

---
 cpu/cpujit.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cpu/cpujit.py b/cpu/cpujit.py
index cd1f0b2eb..58bc7ee2e 100644
--- a/cpu/cpujit.py
+++ b/cpu/cpujit.py
@@ -78,7 +78,7 @@ def compileAndLoad(kernelFunctionNode):
         env.update(configEnv)
         subprocess.call(compilerCmd, env=env)
 
-        showAssembly = False
+        showAssembly = True
         if showAssembly:
             assemblyFile = os.path.join(tmpDir, "assembly.s")
             compilerCmd = [CONFIG['compiler'], '-S', '-o', assemblyFile, srcFile] + CONFIG['flags'].split()
-- 
GitLab