Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions test/keras_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,7 @@ def main(argv):
benchfns += [
("bert_fit", benchmark.bert.bert_fit_run, Both),
]
# also oom
if False:
if True:
benchfns += [
("sam_predict", benchmark.sam.sam_predict_run, Both),
("sam_fit", benchmark.sam.sam_fit_run, Both),
Expand All @@ -98,6 +97,10 @@ def main(argv):
if bname == "bert_predict" and name == "IPartOpt":
continue

# Oom's the gpu ci
if bname == "sam_predict" and name == "JaXPipe":
continue

os.environ.pop("ENZYME_JAX", None)
os.environ.pop("ENZYME_JAX_PRE", None)
if pipe is not None:
Expand Down
Loading