Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DRAFT] enable MIOpen on Windows #2272

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
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
56 changes: 56 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Legacy unpacked SQlite3 files
src/kernels/*.db
src/kernels/*.kdb

# Backup files created by text editors
*~

# Merge files created by git
*.orig
*.BACKUP
*.REMOTE
*.BASE
*.LOCAL

# Vim/NVim swap files
.*.sw?
.sw?

# Sublime Text settings
*.sublime-workspace
*.sublime-project

# Eclipse project settings
*.*project
.settings

# Nested build directory
build*/

# VS2022 and VSCode settings
.vs/
.vscode/

# JetBrains project files
.idea/
cmake-build*/

# Various tags
/tags
/TAGS
/GPATH
/GRTAGS
/GSYMS
/GTAGS
/ID
/.gitusers
/CMakeSettings.json
/_toc.yml

# Documentation artifacts
docs/.doxygen/DoxygenWarningLog.txt
docs/html
/_readthedocs

# Python virtual environment
.venv/
Loading