Skip to content
Snippets Groups Projects
Commit 720966e9 authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Rename code to content, as we will use the cache for much more than code

parent 73d3d9d3
No related branches found
No related tags found
No related merge requests found
...@@ -9,14 +9,14 @@ class UFL2LoopyDataCache(dict): ...@@ -9,14 +9,14 @@ class UFL2LoopyDataCache(dict):
""" The cache data structure """ The cache data structure
The data is stored as key value pairs of the following form: The data is stored as key value pairs of the following form:
(function, cache_tuple) -> (code, priority_tag, preamble) (function, cache_tuple) -> (content, priority_tag, preamble)
The parameters are: The parameters are:
function : the function that generates the preamble code snippet function : the function that generates the preamble code snippet
cache_tuple : A frozen (sub)set of arguments to the function. cache_tuple : A frozen (sub)set of arguments to the function.
The map from function arguments to cache tuple controls The map from function arguments to cache tuple controls
the amount of caching. the amount of caching.
code : The code snippet to generate. No assumptions made. content : The content to store. No assumptions made.
priority_tag : Will later decide the ordering of the preambles. priority_tag : Will later decide the ordering of the preambles.
preamble : A bool whether this cache entry does generate a loopy preamble. preamble : A bool whether this cache entry does generate a loopy preamble.
This is usually not the case, when you generate something This is usually not the case, when you generate something
...@@ -26,8 +26,8 @@ class UFL2LoopyDataCache(dict): ...@@ -26,8 +26,8 @@ class UFL2LoopyDataCache(dict):
def __init__(self): def __init__(self):
self.counter = 0 self.counter = 0
def register(self, cachekey, code, preamble): def register(self, cachekey, content, preamble):
self[cachekey] = (code, self.counter, preamble) self[cachekey] = (content, self.counter, preamble)
self.counter = self.counter + 1 self.counter = self.counter + 1
def extract_preambles(self): def extract_preambles(self):
...@@ -84,10 +84,10 @@ class _RegisteredFunction(object): ...@@ -84,10 +84,10 @@ class _RegisteredFunction(object):
if not self.generate_preamble: if not self.generate_preamble:
return _cache[cache_key][0] return _cache[cache_key][0]
else: else:
code = self.func(*args) content = self.func(*args)
_cache.register(cache_key, code, self.generate_preamble) _cache.register(cache_key, content, self.generate_preamble)
if not self.generate_preamble: if not self.generate_preamble:
return code return content
def _dune_decorator_factory(**factory_kwargs): def _dune_decorator_factory(**factory_kwargs):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment