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

0.3.0 rc rebase #108

Merged
merged 4 commits into from
Sep 22, 2023
Merged
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
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
name: Bug Report
description: File a bug report for Modulus Launch
title: "🐛[BUG]: "
labels: ["bug"]
labels: ["bug", "? - Needs Triage"]

body:
- type: markdown
Expand All @@ -31,7 +31,7 @@ body:
attributes:
label: Version
description: What version of Modulus and Modulus Launch are you running?
placeholder: "example: 0.2.0"
placeholder: "example: 0.3.0"
validations:
required: true

Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/documentation_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
name: Documentation Request
description: Request updates or additions to Modulus Launch documentation
title: "📚[DOC]: "
labels: ["doc"]
labels: ["documentation", "? - Needs Triage"]

body:
- type: markdown
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
name: Feature Request
description: Request new or improved functionality or changes to existing Modulus Launch functionality
title: "🚀[FEA]: "
labels: ["feature request"]
labels: ["enhancement", "? - Needs Triage"]

body:
- type: markdown
Expand Down
18 changes: 8 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.0a0]
## [0.3.0] - 2023-11-xx

### Added

- Added support for CUDA Graphs and AMP for the DLWP example

### Changed

### Deprecated
Expand All @@ -24,7 +22,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Dependencies

## [0.2.0] - 2023-08-xx
## [0.3.0] - 2023-09-21

### Added

- Added support for CUDA Graphs and AMP for the DLWP example

## [0.2.0] - 2023-08-10

### Added

Expand All @@ -40,17 +44,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Header test to ignore .gitignore items
- Sample download scripts in the DLWP example

### Deprecated

### Removed

### Fixed

- Fixed training checkpoint function for updated static capture
- Brought back the dataset download script for vortex shedding that was accidentally removed

### Security

### Dependencies

- Updated the base container to latest PyTorch base container which is based on torch 2.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pip install nvidia-modulus.launch
The recommended Modulus docker image can be pulled from the [NVIDIA Container Registry](https://catalog.ngc.nvidia.com/orgs/nvidia/teams/modulus/containers/modulus):

```bash
docker pull nvcr.io/nvidia/modulus/modulus:23.05
docker pull nvcr.io/nvidia/modulus/modulus:23.09
```

## From Source
Expand Down
2 changes: 1 addition & 1 deletion modulus/launch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.3.0a0"
__version__ = "0.4.0a0"
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ readme = "README.md"
requires-python = ">=3.8"
license = {text = "Apache 2.0"}
dependencies = [
"nvidia-modulus>=0.2.0",
"nvidia-modulus>=0.2.1",
"hydra-core>=1.2.0",
"termcolor>=2.1.1",
"wandb>=0.13.7",
Expand All @@ -21,7 +21,7 @@ dependencies = [
"pydantic>=1.10.2",
"imageio>=2.28.1",
"moviepy>=1.0.3",
"tqdm>=4.60.0",
"tqdm>=4.60.0",
]
classifiers = [
"Programming Language :: Python :: 3",
Expand All @@ -34,4 +34,4 @@ dynamic = ["version"]
version = {attr = "modulus.launch.__version__"}

[tool.setuptools.packages.find]
include = ["modulus.*"]
include = ["modulus.*"]