Skip to content

Commit

Permalink
[GPU] Fix data size in test
Browse files Browse the repository at this point in the history
  • Loading branch information
p-durandin committed Aug 28, 2024
1 parent 20afc50 commit d2f97f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ TEST(prepare_primitive_fusing, fuse_by_priotizing_to_parent_in_fusing_history) {
auto eltwise_memory = engine.allocate_memory(eltwise_layout);

auto weights_data = rg.generate_random_4d<ov::float16>(32, 96, 1, 1, 1, 1);
auto eltwise_data = rg.generate_random_4d<ov::float16>(1, 1, 1, 1, 1, 1);
auto eltwise_data = rg.generate_random_1d<ov::float16>(1, 1, 1, 1);

topology topology(
input_layout("input1", in_layout),
Expand Down

0 comments on commit d2f97f3

Please sign in to comment.