Skip to content

Commit

Permalink
Update test_log.py
Browse files Browse the repository at this point in the history
  • Loading branch information
siddhant-0707 committed Oct 20, 2023
1 parent 1f67b8b commit a19116e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/layer_tests/pytorch_tests/test_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def create_model(self, op):
"log2": torch.log2,
"log2_": torch.log2_,
"log10": torch.log10,
"log10": torch.log10_,
"log10_": torch.log10_,
"log1p": torch.log1p,
"log1p_": torch.log1p_
}
Expand Down Expand Up @@ -48,6 +48,7 @@ def forward(self, x):
["log2", "int32"],
["log2_", "float32"],
["log10", "float32"],
["log10", "int32"],
["log10_", "float32"],
["log1p", "float32"],
["log1p", "int32"],
Expand Down

0 comments on commit a19116e

Please sign in to comment.