Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Stephan Seitz
pystencil_reco
Commits
daa70961
Commit
daa70961
authored
Nov 12, 2020
by
Stephan Seitz
Browse files
Deactivate disk_cache for now
parent
cb5df5e1
Pipeline
#27926
failed with stage
in 8 minutes and 1 second
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/pystencils_reco/_crazy_decorator.py
View file @
daa70961
...
...
@@ -39,7 +39,8 @@ def crazy(function) -> pystencils_reco.AssignmentCollection:
else
a
for
(
k
,
a
)
in
kwargs
.
items
()}
try
:
assignments
=
disk_cache
(
function
)(
*
compile_args
.
values
(),
**
compile_kwargs
)
# assignments = disk_cache(function)(*compile_args.values(), **compile_kwargs)
assignments
=
function
(
*
compile_args
.
values
(),
**
compile_kwargs
)
except
Exception
:
assignments
=
function
(
*
compile_args
.
values
(),
**
compile_kwargs
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment