From 1678d58c44c9df15d4bd411c1c39e1a203e5e853 Mon Sep 17 00:00:00 2001 From: Olivia Hsu Date: Wed, 26 Jul 2023 17:58:18 -0700 Subject: [PATCH] Add in updated gitignore --- .gitignore | 40 +++++++++++++++++----------------------- 1 file changed, 17 insertions(+), 23 deletions(-) diff --git a/.gitignore b/.gitignore index a69400ea..40366917 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,9 @@ __pycache__/ *.swo *.txt *.out -download_suitesparse_partial.sh + +# Generated Python Package files +*.egg-info/ # Files for MacOS and IDEs .DS_store @@ -27,37 +29,29 @@ cmake-build-*/ *.csv *.json +# Tensor files +*.mtx +*.tns + +# Generated formatted tensor files +tensor_*_mode_* + # Generated folders build/ logs/ results/ results-cpu/ -suitesparse-bench*/ +suitesparse-bench/ sam-outputs/ compiler/benchmark/ -# Generated SAM simulator tests -*/sim/test/apps/test_*.py - -# Generated SAM graphs -*.gv - -# Downloaded data -*.mtx -*.tns - -# Temporary matrices +# Temporary or generated tensor directories tmp_mat*/ - -# Jupyter notebook checkpoints -.ipynb_checkpoints/ - -# Generated formatted tensor files -tensor_*_mode_* - -# Tiling files tiles/ +synthetic/ -# sam package info -sam.egg-info/ +# Generated SAM simulator tests +*/sim/test/apps/test_*.py +# Temporary scripts +download_suitesparse_partial.sh