Skip to content

Commit 5969f1d

Browse files
Merge pull request #833 from fsschneider/rename_algoperf
Rename package to `algoperf`
2 parents b356844 + 9ee2d80 commit 5969f1d

File tree

207 files changed

+473
-498
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

207 files changed

+473
-498
lines changed

.github/workflows/linting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
pip install pylint==2.16.1
1818
- name: Run pylint
1919
run: |
20-
pylint algorithmic_efficiency
20+
pylint algoperf
2121
pylint reference_algorithms
2222
pylint prize_qualification_baselines
2323
pylint submission_runner.py

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ makefile
1212
*.swp
1313
*/data/
1414
*events.out.tfevents*
15-
algorithmic_efficiency/workloads/librispeech_conformer/data_dir
16-
algorithmic_efficiency/workloads/librispeech_conformer/work_dir
15+
algoperf/workloads/librispeech_conformer/data_dir
16+
algoperf/workloads/librispeech_conformer/work_dir
1717
*.flac
1818
*.npy
1919
*.csv
@@ -25,4 +25,4 @@ scoring/plots/
2525
!scoring/test_data/experiment_dir/study_0/mnist_jax/trial_0/eval_measurements.csv
2626
!scoring/test_data/experiment_dir/study_0/mnist_jax/trial_1/eval_measurements.csv
2727

28-
algorithmic_efficiency/_version.py
28+
algoperf/_version.py

CHANGELOG.md

Lines changed: 13 additions & 7 deletions

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions

DOCUMENTATION.md

Lines changed: 1 addition & 1 deletion

GETTING_STARTED.md

Lines changed: 1 addition & 1 deletion
File renamed without changes.

algorithmic_efficiency/checkpoint_utils.py renamed to algoperf/checkpoint_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
from tensorflow.io import gfile # pytype: disable=import-error
1717
import torch
1818

19-
from algorithmic_efficiency import spec
20-
from algorithmic_efficiency.pytorch_utils import pytorch_setup
19+
from algoperf import spec
20+
from algoperf.pytorch_utils import pytorch_setup
2121

2222
_, _, DEVICE, _ = pytorch_setup()
2323
CheckpointReturn = Tuple[spec.OptimizerState,

algorithmic_efficiency/data_utils.py renamed to algoperf/data_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from torch.utils.data import DistributedSampler
1212
from torch.utils.data import Sampler
1313

14-
from algorithmic_efficiency import spec
14+
from algoperf import spec
1515

1616

1717
def shard_and_maybe_pad_np(
File renamed without changes.

0 commit comments

Comments
 (0)