Skip to content
Snippets Groups Projects
Commit fbb19e3a authored by Jan Hönig's avatar Jan Hönig
Browse files

Fixed Kerncraft

parent bf4bc9e8
No related merge requests found
......@@ -84,7 +84,8 @@ class PyStencilsKerncraftKernel(kerncraft.kernel.Kernel):
'*': operationCount['muls'],
'/': operationCount['divs'],
}
for k in [k for k, v in self._flops.items() if v == 0]:
del self._flops[k]
self.check()
def iaca_analysis(self, micro_architecture, asm_block='auto',
......@@ -152,6 +153,7 @@ class KerncraftParameters(DotDict):
self['cores'] = 1
self['cache_predictor'] = 'SIM'
self['verbose'] = 0
self['pointer_increment'] = 'auto'
class Analysis(object):
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment