Skip to content

Commit

Permalink
increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
mkannwischer committed Jul 17, 2024
1 parent 82d6cb7 commit 04ef192
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example.py
Original file line number Diff line number Diff line change
Expand Up @@ -1400,13 +1400,13 @@ def __init__(self, var="", arch=AArch64_Neon, target=Target_CortexA55):
infile += f"_{var}"
name += f"_{target_label_dict[target]}"

super().__init__(infile, name, outfile=name, rename=True, arch=arch, target=target, timeout=7200)
super().__init__(infile, name, outfile=name, rename=True, arch=arch, target=target)

def core(self, slothy):
slothy.config.inputs_are_outputs = True
slothy.config.variable_size = True
slothy.config.visualize_expected_performance = True
slothy.config.timeout = 7200
slothy.config.timeout = 3600*24

slothy.config.outputs = ["x27"]
slothy.config.constraints.functional_only = True
Expand Down

0 comments on commit 04ef192

Please sign in to comment.