Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,6 @@ TEST(crop_gpu, basic_in1x4x1x1_split) {
for (size_t i = 0; i < out1.size();i++)
ASSERT_EQ(output_ptr[i], out1[i]);

std::cout << std::endl;
auto output_2 = outputs.at("crop2").get_memory();
cldnn::mem_lock<float, mem_lock_type::read> output_ptr_2(output_2, get_test_stream());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ void get_reference(const std::vector<ov::float16>& input,
bool is_weight_symmetric_quant,
cldnn::data_types weight_dt,
const std::vector<ov::float16>& bias) {
std::cout << "get_reference" << std::endl;
size_t elements_per_byte = (ov::element::Type(weight_dt).bitwidth() == 4) ? 2 : 1;
auto ld_w = K / elements_per_byte;
auto ld_in = K;
Expand Down Expand Up @@ -94,7 +93,6 @@ void get_reference(const std::vector<ov::float16>& input,
bool is_weight_symmetric_quant,
cldnn::data_types weight_dt,
const std::vector<ov::float16>& bias) {
std::cout << "get_reference" << std::endl;
size_t elements_per_byte = (ov::element::Type(weight_dt).bitwidth() == 4) ? 2 : 1;
auto ld_w = K / elements_per_byte;
auto ld_in = K;
Expand Down Expand Up @@ -521,7 +519,6 @@ struct MoEGemmTest : public ::testing::TestWithParam<T> {

for (size_t i = 0; i < M * p.out_N; i++) {
auto tolerance = std::max(std::abs(output_ref[i] * 0.01f), 0.1f);
// std::cout << "[" << i << "] " << output_ref[i] << " : " << output_ptr[i] << std::endl;
ASSERT_NEAR(output_ptr[i], output_ref[i], tolerance);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ TEST_F(TransformationTestsF, KVCacheFusionTest3) {
auto var_split = std::make_shared<ov::op::v1::VariadicSplit>(parameter,
ov::op::v0::Constant::create(ov::element::i32, ov::Shape{}, {1}),
ov::op::v0::Constant::create(ov::element::i32, ov::Shape{1}, {32}));
std::cout << var_split->get_output_partial_shape(0) << std::endl;
auto beam_idx = std::make_shared<ov::op::v0::Parameter>(ov::element::i32, ov::PartialShape{1});
auto axis = std::make_shared<ov::op::v0::Constant>(ov::element::i64, ov::Shape{}, 0);
auto gather_past = std::make_shared<ov::op::v8::Gather>(past, beam_idx, axis);
Expand Down
Loading