From f0e3b72fbfc04d3f5628b2f427549a2870d08e6a Mon Sep 17 00:00:00 2001 From: Rickard Date: Sat, 3 Feb 2024 14:52:11 +0100 Subject: [PATCH 1/2] Add build artifacts to .gitignore --- .gitignore | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2f929968b..202dcb13d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,9 +2,26 @@ __pycache__/ *.py[cod] *$py.class - -# C extensions *.so +*.dll +*.dylib +*.o +*.obj +*.air +*.metallib + +# CMake generated files +CMakeCache.txt +CMakeScripts/ +cmake_install.cmake +Makefile +CMakeFiles/ +*.sln +*.vcxproj* +*.xcodeproj/ +bitsandbytes.dir/ +Debug/ +Release/ # Distribution / packaging .Python @@ -133,4 +150,5 @@ dmypy.json dependencies cuda_build +output/ .vscode/* From c1a7952ceeafe978070c1783794ea0ba15a2477b Mon Sep 17 00:00:00 2001 From: Rickard Date: Sat, 3 Feb 2024 18:46:57 +0100 Subject: [PATCH 2/2] Update .gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 202dcb13d..46316e4b3 100644 --- a/.gitignore +++ b/.gitignore @@ -23,6 +23,9 @@ bitsandbytes.dir/ Debug/ Release/ +# IDE local files +.vs/ + # Distribution / packaging .Python build/