Skip to content

Commit

Permalink
[GPU] Fix data size in test (openvinotoolkit#26287)
Browse files Browse the repository at this point in the history
### Details:
 - Fix data size in test

### Tickets:
 - [*CVS-148605*](https://jira.devtools.intel.com/browse/CVS-148605)
  • Loading branch information
p-durandin authored Aug 28, 2024
1 parent 44caa93 commit 55723af
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 55723af

Please sign in to comment.