Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
JanLJL committed Sep 5, 2024
1 parent 41d62c1 commit 3059952
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion osaca/osaca.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ def inspect(args, output_file=sys.stdout):
file=output_file,
)
if args.yaml_out is not None:
yaml = YAML(typ='unsafe', pure=True)
yaml = YAML(typ="unsafe", pure=True)
yaml.dump(
frontend.full_analysis_dict(
kernel,
Expand Down
5 changes: 3 additions & 2 deletions validation/build_and_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,6 @@
},
},
},

}


Expand Down Expand Up @@ -974,7 +973,9 @@ def main():
except FileNotFoundError:
llvm_mca = False

build_mark_run_all_kernels(measurements="--no-measurements" not in sys.argv, iaca=False, osaca=True, llvm_mca=llvm_mca)
build_mark_run_all_kernels(
measurements="--no-measurements" not in sys.argv, iaca=False, osaca=True, llvm_mca=llvm_mca
)
sys.exit()


Expand Down

0 comments on commit 3059952

Please sign in to comment.