Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
Signed-off-by: 1000850000 user <aaron.chew1@ibm.com>
  • Loading branch information
achew010 committed Sep 12, 2024
1 parent dee204a commit ff455ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def augmentation(
):
# assert that plugin requires mixed precision to be set
assert (
train_args.bf16 or train_args.bf16
train_args.bf16 is True or train_args.fp16 is True
), f"{self.__class__} requires mixed precision argument `--fp16` or `--bf16`"

# This is designed to be a passthrough if training scenario is
Expand Down

0 comments on commit ff455ca

Please sign in to comment.