One more fix
This commit is contained in:
parent
58b1c0f5a0
commit
a5ebdd0023
@ -22,7 +22,7 @@ class LP_TRANSFORMATIONS_API DepthToSpaceTransformation : public TransparentBase
|
||||
public:
|
||||
OPENVINO_RTTI("DepthToSpaceTransformation", "0");
|
||||
DepthToSpaceTransformation(const Params& params = Params());
|
||||
bool canBeTransformed(const TransformationContext& context, std::shared_ptr<Node> layer) const override;
|
||||
bool canBeTransformed(const TransformationContext& context, std::shared_ptr<ov::Node> layer) const override;
|
||||
};
|
||||
|
||||
} // namespace low_precision
|
||||
|
@ -27,7 +27,7 @@ DepthToSpaceTransformation::DepthToSpaceTransformation(const Params& params) : T
|
||||
this->register_matcher(m, callback);
|
||||
}
|
||||
|
||||
bool DepthToSpaceTransformation::canBeTransformed(const TransformationContext& context, std::shared_ptr<Node> layer) const {
|
||||
bool DepthToSpaceTransformation::canBeTransformed(const TransformationContext& context, std::shared_ptr<ov::Node> layer) const {
|
||||
if (!LayerTransformation::canBeTransformed(context, layer)) {
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user