Skip to content

Commit

Permalink
[IE CLDNN] Crop fsv16 i8/u8 input support (openvinotoolkit#5865)
Browse files Browse the repository at this point in the history
  • Loading branch information
sshlyapn authored and rnugmanx committed Aug 26, 2021
1 parent a50e8e8 commit 3d3af76
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions inference-engine/thirdparty/clDNN/src/gpu/crop_gpu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ attach_crop_gpu::attach_crop_gpu() {
implementation_map<crop>::add(std::make_tuple(engine_types::ocl, data_types::i8, format::bfwzyx), val_fw);
implementation_map<crop>::add(std::make_tuple(engine_types::ocl, data_types::u8, format::bfwzyx), val_fw);

implementation_map<crop>::add(std::make_tuple(engine_types::ocl, data_types::i8, format::b_fs_yx_fsv16), val_fw);
implementation_map<crop>::add(std::make_tuple(engine_types::ocl, data_types::u8, format::b_fs_yx_fsv16), val_fw);
implementation_map<crop>::add(std::make_tuple(engine_types::ocl, data_types::f32, format::b_fs_yx_fsv16), val_fw);
implementation_map<crop>::add(std::make_tuple(engine_types::ocl, data_types::f16, format::b_fs_yx_fsv16), val_fw);

Expand Down

0 comments on commit 3d3af76

Please sign in to comment.