提交 a3df0c3f 编写于 作者: W wjj19950828

Modify inheritance relationship

上级 cff2a953
......@@ -12,9 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from .opset_legacy import OpSet
from .opset9 import OpSet9
class OpSet10(OpSet):
class OpSet10(OpSet9):
def __init__(self, decoder, paddle_graph):
super(OpSet10, self).__init__(decoder, paddle_graph)
......@@ -12,9 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from .opset_legacy import OpSet
from .opset10 import OpSet10
class OpSet11(OpSet):
class OpSet11(OpSet10):
def __init__(self, decoder, paddle_graph):
super(OpSet11, self).__init__(decoder, paddle_graph)
......@@ -12,9 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from .opset_legacy import OpSet
from .opset11 import OpSet11
class OpSet12(OpSet):
class OpSet12(OpSet11):
def __init__(self, decoder, paddle_graph):
super(OpSet12, self).__init__(decoder, paddle_graph)
......@@ -12,9 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from .opset_legacy import OpSet
from .opset12 import OpSet12
class OpSet13(OpSet):
class OpSet13(OpSet12):
def __init__(self, decoder, paddle_graph):
super(OpSet13, self).__init__(decoder, paddle_graph)
......@@ -12,9 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from .opset_legacy import OpSet
from .opset13 import OpSet13
class OpSet14(OpSet):
class OpSet14(OpSet13):
def __init__(self, decoder, paddle_graph):
super(OpSet14, self).__init__(decoder, paddle_graph)
......@@ -12,9 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from .opset_legacy import OpSet
from .opset14 import OpSet14
class OpSet15(OpSet):
class OpSet15(OpSet14):
def __init__(self, decoder, paddle_graph):
super(OpSet15, self).__init__(decoder, paddle_graph)
......@@ -12,9 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from .opset_legacy import OpSet
from .opset7 import OpSet7
class OpSet8(OpSet):
class OpSet8(OpSet7):
def __init__(self, decoder, paddle_graph):
super(OpSet8, self).__init__(decoder, paddle_graph)
......@@ -12,9 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from .opset_legacy import OpSet
from .opset8 import OpSet8
class OpSet9(OpSet):
class OpSet9(OpSet8):
def __init__(self, decoder, paddle_graph):
super(OpSet9, self).__init__(decoder, paddle_graph)
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册