Skip to content

Commit

Permalink
#8593: Fix pow pcc drop issue
Browse files Browse the repository at this point in the history
  • Loading branch information
umadevimcw committed Oct 24, 2024
1 parent 34da50b commit fe9560b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
def run_pow_tests(input_shape, dtype, dlayout, in_mem_config, output_mem_config, data_seed, device):
torch.manual_seed(data_seed)

x = torch.Tensor(size=input_shape[0]).uniform_(-100, 100).to(torch.bfloat16)
x = torch.Tensor(size=input_shape[0]).uniform_(-100, 100)
y = random.uniform(0, 10)

try:
Expand Down

0 comments on commit fe9560b

Please sign in to comment.