[IE CLDNN] Fix Android build error: braces around scalar initializer (#1151)

This commit is contained in:
Alexander Chaiko 2020-06-29 19:27:41 +02:00 committed by GitHub
parent b43d26ab8a
commit da03c7ad0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ protected:
DispatchData SetDefault(const convolution_params& params, int autoTuneIndex = -1) const override;
bool NeedPaddedInput() const override { return true; }
WeightsLayout GetPreferredWeightsLayout(const convolution_params&) const override {
return { WeightsLayout::os_is_yx_osv16_isv16 };
return WeightsLayout::os_is_yx_osv16_isv16;
}
std::vector<FusedOpType> GetSupportedFusedOps() const override {

View File

@ -36,7 +36,7 @@ protected:
DispatchData SetDefault(const convolution_params& params, int autoTuneIndex = -1) const override;
bool NeedPaddedInput() const override { return true; }
WeightsLayout GetPreferredWeightsLayout(const convolution_params&) const override {
return { WeightsLayout::os_is_yx_osv16_isv16 };
return WeightsLayout::os_is_yx_osv16_isv16;
}
std::vector<FusedOpType> GetSupportedFusedOps() const override {