-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
40 changed files
with
183 additions
and
427 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,7 @@ | ||
[bumpversion] | ||
current_version = 0.1.2 | ||
commit = True | ||
tag = True | ||
|
||
[bumpversion:file:scope_plot/__init__.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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[run] | ||
include = | ||
microbench_plot/* | ||
scope_plot/* | ||
|
||
[report] | ||
exclude_lines = | ||
|
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,8 @@ | ||
Changelog | ||
========= | ||
|
||
Release 0.1.2 (Development) | ||
--------------------------- | ||
|
||
* rename to `scope_plot` | ||
* Initial support for `spec` and `bar` subcommands. |
This file was deleted.
Oops, something went wrong.
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,22 @@ | ||
Contributors | ||
------------ | ||
|
||
## Author & Maintainer | ||
|
||
* Abdul Dakkak <dakkak@illinois.edu> | ||
* Carl Pearson <pearson@illinois.edu> | ||
|
||
## Contributors | ||
|
||
In chronological order: | ||
|
||
* Abdul Dakkak <dakkak@illinois.edu> | ||
* Started the project | ||
* Carl Pearson <pearson@illinois.edu> | ||
* Added CUDA communication benchmarks | ||
* Sarah Hashash <hashash2@illinois.edu> | ||
* Added full-duplex CUDA memcpy benchmarks | ||
|
||
## Generating a Release | ||
|
||
See [RELEASE.md](RELEASE.md) for instructions on how to create a new release. |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
include README.rst CHANGELOG.rst LICENSE.txt CONTRIBUTORS.txt requirements.txt dev-requirements.txt | ||
include README.md CHANGELOG.md LICENSE.txt CONTRIBUTORS.txt requirements.txt dev-requirements.txt | ||
recursive-include tests * | ||
recursive-include docs * | ||
recursive-exclude docs/_build * |
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,33 @@ | ||
# Steps to Release ScopePlot | ||
|
||
These are the steps to take to create a release of the module ``scope_plot``: | ||
|
||
1. Switch to the master branch | ||
|
||
```bash | ||
git checkout master | ||
``` | ||
|
||
2. Run bump2version | ||
|
||
0. Install bump2version (if needed) | ||
```bash | ||
pip install --user bump2version | ||
``` | ||
1. Run bump2version with `patch`, `minor`, or `major`. | ||
```bash | ||
bump2version --verbose patch | ||
``` | ||
3. Update `CHANGELOG.md` and commit. | ||
|
||
```bash | ||
git add CHANGELOG.md | ||
``` | ||
|
||
4. Add and commit the changes. | ||
|
||
```bash | ||
git push && git push --tags | ||
``` | ||
|
||
4. Wait for [Travis](travis-ci.com/rai-project/scope_plot) to test/push. |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1 +1 @@ | ||
# MicrobenchPlot | ||
# ScopePlot |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.