Skip to content

Commit da03c7a

Browse files
authored
[IE CLDNN] Fix Android build error: braces around scalar initializer (#1151)
1 parent b43d26a commit da03c7a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

inference-engine/thirdparty/clDNN/kernel_selector/core/actual_kernels/convolution/convolution_kernel_imad_bs_fs_yx_bsv16_fsv16_1x1.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class Convolution_kernel_imad_bs_fs_yx_bsv16_fsv16_1x1 : public ConvolutionKerne
3636
DispatchData SetDefault(const convolution_params& params, int autoTuneIndex = -1) const override;
3737
bool NeedPaddedInput() const override { return true; }
3838
WeightsLayout GetPreferredWeightsLayout(const convolution_params&) const override {
39-
return { WeightsLayout::os_is_yx_osv16_isv16 };
39+
return WeightsLayout::os_is_yx_osv16_isv16;
4040
}
4141

4242
std::vector<FusedOpType> GetSupportedFusedOps() const override {

inference-engine/thirdparty/clDNN/kernel_selector/core/actual_kernels/convolution/convolution_kernel_imad_bs_fs_yx_bsv16_fsv16_3x3.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class Convolution_kernel_imad_bs_fs_yx_bsv16_fsv16_3x3 : public ConvolutionKerne
3636
DispatchData SetDefault(const convolution_params& params, int autoTuneIndex = -1) const override;
3737
bool NeedPaddedInput() const override { return true; }
3838
WeightsLayout GetPreferredWeightsLayout(const convolution_params&) const override {
39-
return { WeightsLayout::os_is_yx_osv16_isv16 };
39+
return WeightsLayout::os_is_yx_osv16_isv16;
4040
}
4141

4242
std::vector<FusedOpType> GetSupportedFusedOps() const override {

0 commit comments

Comments
 (0)