Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GPU] Conv and Gemm fix #2290

Merged
merged 1 commit into from
Jan 10, 2025
Merged
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
4 changes: 2 additions & 2 deletions src/gpu/intel/jit/conv/zp_plan.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright 2023-2024 Intel Corporation
* Copyright 2023-2025 Intel Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -1268,7 +1268,7 @@ class zp_comp_apply_plan_t : public base_plan_t {
const expr_t &c_buf, const split_dispatcher_t &sd,
int subtile_idx) const {
const auto comp_type = comp_layout_.type();
const auto mask_type = mask_layout_.type();
const auto mask_type = type_t::s16();
const dim_t kw_dim = comp_layout_.dim(comp_kw_idx_);
std::vector<int> comp_off;
std::vector<int> mask_off;
Expand Down
Loading