[GPU] Fix gpu unit and functional tests on windows (#13560)
This commit is contained in:
@@ -1452,7 +1452,7 @@ TEST(pooling_forward_gpu, basic_in2x2x3x2x1_max_with_argmax) {
|
||||
topology topology;
|
||||
topology.add(input_layout("input", input->get_layout()));
|
||||
topology.add(mutable_data("arg_max", arg_max));
|
||||
topology.add(pooling("pooling", "input", "arg_max", pooling_mode::max_with_argmax, { 1, 2, 2 }, { 1, 1, 1 }));
|
||||
topology.add(pooling("pooling", "input", "arg_max", pooling_mode::max_with_argmax, { 1, 2, 2 }, { 1, 1, 1 }, {0, 0, 0}));
|
||||
|
||||
network network(engine, topology);
|
||||
|
||||
|
||||
@@ -115,7 +115,7 @@ TEST(variable_test_common, exception_on_wrong_layout) {
|
||||
auto wrong_layout = variable_layout;
|
||||
wrong_layout.data_type = data_types::f32;
|
||||
const auto wrong_input_data = engine.allocate_memory(wrong_layout);
|
||||
set_values(input_data, {333.666});
|
||||
set_values(input_data, {333.666f});
|
||||
|
||||
topology topology;
|
||||
topology.add(input_layout("input", input_data->get_layout()));
|
||||
|
||||
Reference in New Issue
Block a user