-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from rapidsai/branch-0.13
pull branch0.13
- Loading branch information
Showing
118 changed files
with
2,563,090 additions
and
799 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,17 @@ | ||
--- | ||
name: Enhancement request | ||
about: 'Suggest an improveement to a feature ' | ||
title: "[ENH]" | ||
labels: "? - Needs Triage, Enhancement" | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
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,10 @@ | ||
--- | ||
name: Question | ||
about: Ask a Question | ||
title: "[QST]" | ||
labels: "? - Needs Triage, question" | ||
assignees: '' | ||
|
||
--- | ||
|
||
Ask a question that could be converted into a feature or enhancement |
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,35 @@ | ||
name: Auto Assign New Issues to Triage Project | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
jobs: | ||
assign_one_project: | ||
runs-on: ubuntu-latest | ||
name: Assign to New Issues to Triage Project | ||
steps: | ||
- name: Process bug issues | ||
uses: docker://takanabe/github-actions-automate-projects:v0.0.1 | ||
if: contains(github.event.issue.labels.*.name, 'bug') && contains(github.event.issue.labels.*.name, '? - Needs Triage') | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_PROJECT_URL: https://github.com/rapidsai/cugraph/projects/4 | ||
GITHUB_PROJECT_COLUMN_NAME: 'Needs prioritizing' | ||
- name: Process feature issues | ||
uses: docker://takanabe/github-actions-automate-projects:v0.0.1 | ||
if: contains(github.event.issue.labels.*.name, 'feature request') && contains(github.event.issue.labels.*.name, '? - Needs Triage') | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_PROJECT_URL: https://github.com/rapidsai/cugraph/projects/1 | ||
GITHUB_PROJECT_COLUMN_NAME: 'Needs prioritizing' | ||
- name: Process other issues | ||
uses: docker://takanabe/github-actions-automate-projects:v0.0.1 | ||
if: contains(github.event.issue.labels.*.name, '? - Needs Triage') && (!contains(github.event.issue.labels.*.name, 'bug') && !contains(github.event.issue.labels.*.name, 'feature request')) | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_PROJECT_URL: https://github.com/rapidsai/cugraph/projects/5 | ||
GITHUB_PROJECT_COLUMN_NAME: 'Needs prioritizing' |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/bin/bash | ||
|
||
# This script will print the gtest results sorted by runtime. This will print | ||
# the results two ways: first by printing all tests sorted by runtime, then by | ||
# printing all tests grouped by test binary with tests sorted by runtime within | ||
# the group. | ||
# | ||
# To use this script, capture the test run output to a file then run this script | ||
# with the file as the first arg, or just redirect test output to this script. | ||
|
||
awk '/^Running GoogleTest .+$/ { | ||
testbinary = $3 | ||
} | ||
/^\[ OK \].+$/ { | ||
testtime = substr($(NF-1),2) | ||
newtestdata = testbinary ":" substr($0,14) | ||
alltestdata = alltestdata newtestdata "\n" | ||
testdata[testbinary] = testdata[testbinary] newtestdata "\n" | ||
totaltime = totaltime + testtime | ||
} | ||
END { | ||
# Print all tests sorted by time | ||
system("echo \"" alltestdata "\" | sort -r -t\\( -nk2") | ||
print "\n================================================================================" | ||
# Print test binaries with tests sorted by time | ||
print "Tests grouped by test binary:" | ||
for (testbinary in testdata) { | ||
print testbinary | ||
system("echo \"" testdata[testbinary] "\" | sort -r -t\\( -nk2") | ||
} | ||
print "\n================================================================================" | ||
print totaltime " milliseconds = " totaltime/60000 " minutes" | ||
} | ||
' $1 |
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.