forked from bitsandbytes-foundation/bitsandbytes
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main' into apple-silicon-merge2
- Loading branch information
Showing
38 changed files
with
1,955 additions
and
796 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: "\U0001F41B Bug Report" | ||
description: Submit a bug report to help us improve bitsandbytes | ||
body: | ||
- type: textarea | ||
id: system-info | ||
attributes: | ||
label: System Info | ||
description: Please share your relevant system information with us | ||
placeholder: platform, python version, hardware, ... | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: reproduction | ||
validations: | ||
required: true | ||
attributes: | ||
label: Reproduction | ||
description: | | ||
Please provide a code sample that reproduces the problem you ran into. It can be a Colab link or just a code snippet. | ||
Please provide the simplest reproducer as possible so that we can quickly fix the issue. | ||
placeholder: | | ||
Reproducer: | ||
- type: textarea | ||
id: expected-behavior | ||
validations: | ||
required: true | ||
attributes: | ||
label: Expected behavior | ||
description: "A clear and concise description of what you would expect to happen." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: "\U0001F680 Feature request" | ||
description: Submit a proposal/request for a new feature | ||
labels: [ "feature" ] | ||
body: | ||
- type: textarea | ||
id: feature-request | ||
validations: | ||
required: true | ||
attributes: | ||
label: Feature request | ||
description: | | ||
A clear and concise description of the feature proposal. | ||
- type: textarea | ||
id: motivation | ||
validations: | ||
required: true | ||
attributes: | ||
label: Motivation | ||
description: | | ||
Please outline the motivation for the proposal. Is your feature request related to a problem? | ||
- type: textarea | ||
id: contribution | ||
validations: | ||
required: true | ||
attributes: | ||
label: Your contribution | ||
description: | | ||
Is there any way that you could help, e.g. by submitting a PR? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Stale Bot | ||
|
||
on: | ||
schedule: | ||
- cron: "0 15 * * *" | ||
|
||
jobs: | ||
close_stale_issues: | ||
name: Close Stale Issues | ||
if: github.repository == 'TimDettmers/bitsandbytes' | ||
runs-on: ubuntu-latest | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.8 | ||
|
||
- name: Install requirements | ||
run: | | ||
pip install PyGithub | ||
- name: Close stale issues | ||
run: | | ||
python scripts/stale.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -149,3 +149,4 @@ dmypy.json | |
dependencies | ||
cuda_build | ||
output/ | ||
.vscode/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[style] | ||
ALIGN_CLOSING_BRACKET_WITH_VISUAL_INDENT = True | ||
ALLOW_MULTILINE_LAMBDAS = True | ||
BLANK_LINE_BEFORE_NESTED_CLASS_OR_DEF = True | ||
COLUMN_LIMIT = 88 | ||
COALESCE_BRACKETS = True | ||
SPACE_BETWEEN_ENDING_COMMA_AND_CLOSING_BRACKET = True | ||
SPACES_BEFORE_COMMENT = 2 | ||
SPLIT_BEFORE_BITWISE_OPERATOR = True | ||
SPLIT_BEFORE_FIRST_ARGUMENT = True | ||
SPLIT_BEFORE_LOGICAL_OPERATOR = True | ||
SPLIT_BEFORE_NAMED_ASSIGNS = True | ||
SPLIT_COMPLEX_COMPREHENSION = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.