Skip to content

Commit

Permalink
Incremented version
Browse files Browse the repository at this point in the history
  • Loading branch information
Masahiro Tanaka committed Jan 26, 2022
1 parent 3cd7e70 commit 3176fca
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def build_extension(self, ext):
subprocess.check_call(['cmake', '--build', '.'] + build_args, cwd=self.build_temp)


VERSION = "0.7.2"
VERSION = "0.7.3"

if "CUDA_VERSION" in os.environ:
version_nums = os.environ["CUDA_VERSION"].split(".")
Expand Down
20 changes: 10 additions & 10 deletions test/test_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@

test_models = [
{"model": models.SmallParamModel},
# {"model": models.SharedInputModel},
# {"model": models.ForkJoinModel},
# {"model": models.SharedParamModel},
# {"model": models.OneOpModel},
# {"model": models.TensorMulModel},
# {"model": models.EmbeddingModel, "get_dataset": models.EmbeddingModel.get_dataset},
# {"model": models.FunctionModel, "get_dataset": models.FunctionModel.get_dataset},
# {"model": models.LossOutModel, "loss_out": True},
{"model": models.SharedInputModel},
{"model": models.ForkJoinModel},
{"model": models.SharedParamModel},
{"model": models.OneOpModel},
{"model": models.TensorMulModel},
{"model": models.EmbeddingModel, "get_dataset": models.EmbeddingModel.get_dataset},
{"model": models.FunctionModel, "get_dataset": models.FunctionModel.get_dataset},
{"model": models.LossOutModel, "loss_out": True},
# {"model": models.BasicModel},
# {"model": native_models.NativeCallModel01}, # compiles module
# {"model": models.LayerNormModel, "preprocess": models.norm_to_float} # DP only
Expand All @@ -30,8 +30,8 @@

@pytest.mark.parametrize("test_model", test_models)
@pytest.mark.parametrize("gradient_accumulation_steps", [1])
@pytest.mark.parametrize("use_amp", [False])
@pytest.mark.parametrize("allreduce_amp_master_params", [False])
@pytest.mark.parametrize("use_amp", [False, True])
@pytest.mark.parametrize("allreduce_amp_master_params", [False, True])
@pytest.mark.parametrize("enable_zero", [False])
@pytest.mark.parametrize("dist_params", [False])
@pytest.mark.parametrize("offload_params", [False])
Expand Down

0 comments on commit 3176fca

Please sign in to comment.