Skip to content

Commit

Permalink
[GPU] Fix SD1.5 2.1 dynamic failure. (#25307)
Browse files Browse the repository at this point in the history
It's the regression from SA Conv fsv16 enable.

### Tickets:
 - *ticket-id*

Signed-off-by: hyunback <hyunback.kim@intel.com>
  • Loading branch information
hyunback committed Jul 1, 2024
1 parent e2c10ad commit bc505ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ float ConvolutionKernel_b_fs_yx_fsv16_1x1::EstimateOccupancy(const convolution_p
ConvolutionKernel_b_fs_yx_fsv16_1x1::ConvolutionTuningData ConvolutionKernel_b_fs_yx_fsv16_1x1::GetTuningParams(const convolution_params& params) const {
ConvolutionTuningData tuning_data;

if (!params.has_dynamic_tensors()) {
if (!params.is_shape_agnostic) {
const auto& input = params.inputs[0];
bool block_size_one_is_better = params.outputs[0].X().v == 1 && params.outputs[0].Y().v == 1 && input.Feature().v >= 2048;

Expand Down

0 comments on commit bc505ba

Please sign in to comment.