Skip to content

Commit

Permalink
[GPU] Fix SIMD for non supporting platforms (openvinotoolkit#23540)
Browse files Browse the repository at this point in the history
### Details:
 - Check is simd 8 is supported

### Tickets:
 - *[CVS-133769](https://jira.devtools.intel.com/browse/CVS-133769)*
  • Loading branch information
p-durandin authored and alvoron committed Apr 29, 2024
1 parent eed882d commit e34c2ae
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ bool ConvolutionKernel_mmad_b_fs_yx_fsv32::Validate(const Params& p) const {
return false;
}

if (!IsSIMDSizeSupported(params.engineInfo, 8))
return false;

if (params.groups > 1)
return false;

Expand Down

0 comments on commit e34c2ae

Please sign in to comment.