Skip to content

Commit 126b366

Browse files
committed
replace left over llm-shower
Signed-off-by: Hao Wu <[email protected]>
1 parent cdcc732 commit 126b366

File tree

11 files changed

+23
-23
lines changed

11 files changed

+23
-23
lines changed

.github/actions/test-template/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ inputs:
3636
image:
3737
description: "Image to use for test"
3838
required: false
39-
default: "llm_shower"
39+
default: "emerging_optimizers"
4040
cpu-only:
4141
description: "Run tests on CPU only"
4242
required: false
@@ -140,7 +140,7 @@ runs:
140140
- name: Checkout repository
141141
uses: actions/checkout@v2
142142
with:
143-
path: LLM-Shower
143+
path: Emerging-Optimizers
144144

145145
- name: Start container
146146
shell: bash
@@ -164,7 +164,7 @@ runs:
164164
--env HYDRA_FULL_ERROR=1 \
165165
--env HF_HOME=/home/TestData/HF_HOME \
166166
--env RUN_ID=${{ github.run_id }} \
167-
--volume $(pwd)/LLM-Shower:/workspace \
167+
--volume $(pwd)/Emerging-Optimizers:/workspace \
168168
--volume $MNT_PATH/TestData:/home/TestData \
169169
nemoci.azurecr.io/${{ inputs.image }}:${{ github.run_id }} \
170170
bash -c "sleep $(( ${{ inputs.timeout }} * 60 + 60))"

.github/workflows/_build_container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: |
5252
LAST_PRS=$(gh api graphql -f query='
5353
query {
54-
repository(owner: "NVIDIA-NeMo", name: "LLM-Shower") {
54+
repository(owner: "NVIDIA-NeMo", name: "Emerging-Optimizers") {
5555
pullRequests(states: MERGED, first: 100, orderBy: {field: UPDATED_AT, direction: DESC}) {
5656
nodes {
5757
number

.github/workflows/build-test-publish-wheel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
if: ${{ vars.BUILD_TEST_PUBLISH_WHEEL == 'true' }}
3131
with:
3232
dry-run: true
33-
python-package: llm_shower
33+
python-package: emerging_optimizers
3434
python-version: "3.10"
3535
packaging: uv
3636
secrets:

.github/workflows/release-freeze.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ jobs:
3636
code-freeze:
3737
uses: NVIDIA-NeMo/FW-CI-templates/.github/workflows/[email protected]
3838
with:
39-
library-name: LLM-Shower
40-
python-package: llm_shower
39+
library-name: Emerging-Optimizers
40+
python-package: emerging_optimizers
4141
release-type: ${{ inputs.release-type }}
4242
freeze-commit: ${{ inputs.freeze-commit }}
4343
dry-run: ${{ inputs.dry-run }}

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
name: "Release LLM-Shower"
14+
name: "Release Emerging-Optimizers"
1515

1616
on:
1717
workflow_dispatch:
@@ -40,8 +40,8 @@ jobs:
4040
uses: NVIDIA-NeMo/FW-CI-templates/.github/workflows/[email protected]
4141
with:
4242
release-ref: ${{ inputs.release-ref }}
43-
python-package: llm_shower
44-
library-name: LLM-Shower
43+
python-package: emerging_optimizers
44+
library-name: Emerging-Optimizers
4545
dry-run: ${{ inputs.dry-run }}
4646
version-bump-branch: ${{ inputs.version-bump-branch }}
4747
create-gh-release: ${{ inputs.create-gh-release }}

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing To LLM-Shower
1+
# Contributing To Emerging-Optimizers
22

33
## Signing Your Work
44

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# LLM Shower
1+
# Emerging Optimizers

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# -- Project information -----------------------------------------------------
2525
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
2626

27-
project = "LLM-Shower"
27+
project = "Emerging Optimizers"
2828
copyright = "2025, NVIDIA Corporation"
2929
author = "NVIDIA Corporation"
3030
release = "0.1.0"
@@ -60,7 +60,7 @@
6060
sys.path.insert(0, os.path.abspath(".."))
6161

6262
autodoc2_packages = [
63-
"../llm_shower", # Path to your package relative to conf.py
63+
"../emerging_optimizers", # Path to your package relative to conf.py
6464
]
6565
autodoc2_render_plugin = "myst" # Use MyST for rendering docstrings
6666
autodoc2_output_dir = "apidocs" # Output directory for autodoc2 (relative to docs/)

docs/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"name": "llm-shower", "version": "0.1.0"}
1+
{"name": "emerging_optimizers", "version": "0.1.0"}

pyproject.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
[project]
16-
name = "llm-shower"
16+
name = "emerging-optimizers"
1717
dynamic = [
1818
"version",
1919
"readme",
@@ -84,15 +84,15 @@ dev = [
8484
]
8585

8686
[tool.setuptools]
87-
packages = ["llm_shower"]
87+
packages = ["emerging_optimizers"]
8888

8989
[tool.setuptools.dynamic]
90-
version = {attr = "llm_shower.__version__"}
90+
version = {attr = "emerging_optimizers.__version__"}
9191
readme = {file = "README.md", content-type = "text/markdown"}
9292

9393
[project.urls]
94-
Download = "https://github.com/NVIDIA-NeMo/LLM-Shower/releases"
95-
Homepage = "https://github.com/NVIDIA-NeMo/LLM-Shower"
94+
Download = "https://github.com/NVIDIA-NeMo/Emerging-Optimizers/releases"
95+
Homepage = "https://github.com/NVIDIA-NeMo/Emerging-Optimizers"
9696

9797
[tool.pytest.ini_options]
9898
# durations=0 will display all tests execution time, sorted in ascending order starting from from the slowest one.
@@ -101,7 +101,7 @@ addopts = "--verbose --pyargs --durations=0 --strict-markers" # always add thes
101101
testpaths = ["tests"]
102102
# directories to ignore when discovering tests
103103
norecursedirs = [
104-
"llm_shower",
104+
"emerging_optimizers",
105105
"external",
106106
"examples",
107107
"docs",
@@ -172,7 +172,7 @@ ignore = [
172172
"E501", # Line too long - handled by formatter
173173
]
174174
[tool.ruff.lint.isort]
175-
known-first-party = ["llm_shower"]
175+
known-first-party = ["emerging_optimizers"]
176176
known-third-party = ["examples", "scripts"]
177177
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
178178
lines-after-imports = 2

0 commit comments

Comments
 (0)