Browse Source

!679 清理build-check告警

Merge pull request !679 from 傅骏/br_build_check_warnnings
pull/649/MERGE
傅骏 i-robot 2 years ago
parent
commit
594037dda0
38 changed files with 177 additions and 25 deletions
  1. +4
    -0
      tests/st/testcase/origin_models/conv2d_depthwise_pb_gen.py
  2. +4
    -0
      tests/st/testcase/origin_models/onnx_clip_v9.py
  3. +5
    -1
      tests/st/testcase/origin_models/onnx_if_const_intput_gen.py
  4. +4
    -0
      tests/st/testcase/origin_models/tensor_array_pb_gen.py
  5. +5
    -1
      tests/st/testcase/origin_models/test_VarIsInitializedOp_pb_gen.py
  6. +5
    -1
      tests/st/testcase/origin_models/test_avgpool3dgrad_pb_gen.py
  7. +4
    -0
      tests/st/testcase/origin_models/test_blocklstm_pb.gen.py
  8. +4
    -0
      tests/st/testcase/origin_models/test_constant_pb_gen.py
  9. +5
    -1
      tests/st/testcase/origin_models/test_conv2d_pb_gen.py
  10. +5
    -1
      tests/st/testcase/origin_models/test_enter_pb_gen.py
  11. +5
    -1
      tests/st/testcase/origin_models/test_fill_pb_gen.py
  12. +5
    -1
      tests/st/testcase/origin_models/test_identity_pb_gen.py
  13. +4
    -0
      tests/st/testcase/origin_models/test_merge_pb_gen.py
  14. +5
    -1
      tests/st/testcase/origin_models/test_no_op_pb_gen.py
  15. +5
    -1
      tests/st/testcase/origin_models/test_reshape_pb_gen.py
  16. +5
    -1
      tests/st/testcase/origin_models/test_sequeeze_pb_gen.py
  17. +5
    -1
      tests/st/testcase/origin_models/test_shape_n_pb_gen.py
  18. +5
    -1
      tests/st/testcase/origin_models/test_switch_pb_gen.py
  19. +5
    -1
      tests/st/testcase/origin_models/test_variableV2_pb_gen.py
  20. +4
    -0
      tests/ut/parser/testcase/onnx_parser_testcase/onnx_model/onnx_clip_v9.py
  21. +4
    -0
      tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/conv2d_depthwise_pb_gen.py
  22. +4
    -0
      tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/onnx_clip_v9.py
  23. +4
    -0
      tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/tensor_array_pb_gen.py
  24. +5
    -1
      tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_VarIsInitializedOp_pb_gen.py
  25. +5
    -1
      tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_avgpool3dgrad_pb_gen.py
  26. +4
    -0
      tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_blocklstm_pb.gen.py
  27. +4
    -0
      tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_constant_pb_gen.py
  28. +5
    -1
      tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_conv2d_pb_gen.py
  29. +5
    -1
      tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_enter_pb_gen.py
  30. +5
    -1
      tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_fill_pb_gen.py
  31. +5
    -1
      tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_identity_pb_gen.py
  32. +4
    -0
      tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_merge_pb_gen.py
  33. +5
    -1
      tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_no_op_pb_gen.py
  34. +5
    -1
      tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_reshape_pb_gen.py
  35. +5
    -1
      tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_sequeeze_pb_gen.py
  36. +5
    -1
      tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_shape_n_pb_gen.py
  37. +5
    -1
      tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_switch_pb_gen.py
  38. +5
    -1
      tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_variableV2_pb_gen.py

+ 4
- 0
tests/st/testcase/origin_models/conv2d_depthwise_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import os



+ 4
- 0
tests/st/testcase/origin_models/onnx_clip_v9.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import onnx
from onnx import helper
from onnx import AttributeProto, TensorProto, GraphProto


+ 5
- 1
tests/st/testcase/origin_models/onnx_if_const_intput_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import os
import numpy as np
import onnx
@@ -42,4 +46,4 @@ def gen_onnx():
print(model_def)

if __name__ == "__main__":
gen_onnx()
gen_onnx()

+ 4
- 0
tests/st/testcase/origin_models/tensor_array_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import os
from tensorflow.python.framework import graph_util


+ 5
- 1
tests/st/testcase/origin_models/test_VarIsInitializedOp_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import numpy as np

@@ -11,4 +15,4 @@ def generate_VarIsInitializedOp_pb():
tf.io.write_graph(sess.graph, logdir="./", name="test_VarIsInitializedOp.pb", as_text=False)

if __name__=='__main__':
generate_VarIsInitializedOp_pb()
generate_VarIsInitializedOp_pb()

+ 5
- 1
tests/st/testcase/origin_models/test_avgpool3dgrad_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import os
import numpy as np
@@ -38,4 +42,4 @@ def generate_case_2():
tf.io.write_graph(sess.graph, logdir="./", name="avgpool3dgrad.pb.txt", as_text=False)

if __name__=='__main__':
generate_case_2()
generate_case_2()

+ 4
- 0
tests/st/testcase/origin_models/test_blocklstm_pb.gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import os



+ 4
- 0
tests/st/testcase/origin_models/test_constant_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import numpy as np
from tensorflow.python.framework import graph_util


+ 5
- 1
tests/st/testcase/origin_models/test_conv2d_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import os
from tensorflow.python.framework import graph_util
@@ -23,4 +27,4 @@ def generate_add_pb():

if __name__=='__main__':
generate_conv2d_pb()
generate_add_pb()
generate_add_pb()

+ 5
- 1
tests/st/testcase/origin_models/test_enter_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
from tensorflow.python.ops import control_flow_ops

@@ -10,4 +14,4 @@ def generate_enter_pb():
tf.io.write_graph(sess.graph, logdir="./", name="test_enter.pb", as_text=False)

if __name__=='__main__':
generate_enter_pb()
generate_enter_pb()

+ 5
- 1
tests/st/testcase/origin_models/test_fill_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import numpy as np

@@ -9,4 +13,4 @@ def generate_fill_pb():
tf.io.write_graph(sess.graph, logdir="./", name="test_fill.pb", as_text=False)

if __name__ == "__main__":
generate_fill_pb()
generate_fill_pb()

+ 5
- 1
tests/st/testcase/origin_models/test_identity_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf

def generate_identity_pb():
@@ -10,4 +14,4 @@ def generate_identity_pb():
tf.io.write_graph(sess.graph, logdir="./", name="test_identity.pb", as_text=False)

if __name__=='__main__':
generate_identity_pb()
generate_identity_pb()

+ 4
- 0
tests/st/testcase/origin_models/test_merge_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
from tensorflow.python.framework import graph_util
import numpy as np


+ 5
- 1
tests/st/testcase/origin_models/test_no_op_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import numpy as np

@@ -11,4 +15,4 @@ def generate_no_op_pb():
tf.io.write_graph(sess.graph, logdir="./", name="test_no_op.pb", as_text=False)

if __name__=='__main__':
generate_no_op_pb()
generate_no_op_pb()

+ 5
- 1
tests/st/testcase/origin_models/test_reshape_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf

def generate_reshape_pb():
@@ -7,4 +11,4 @@ def generate_reshape_pb():
tf.io.write_graph(sess.graph, logdir="./", name="test_reshape.pb", as_text=False)

if __name__ == "__main__":
generate_reshape_pb()
generate_reshape_pb()

+ 5
- 1
tests/st/testcase/origin_models/test_sequeeze_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import numpy as np

@@ -10,4 +14,4 @@ def generate_sequeeze_pb():
tf.io.write_graph(sess.graph, logdir="./", name="test_sequeeze.pb", as_text=False)

if __name__ == "__main__":
generate_sequeeze_pb()
generate_sequeeze_pb()

+ 5
- 1
tests/st/testcase/origin_models/test_shape_n_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import numpy as np

@@ -8,4 +12,4 @@ def generate_shape_n_pb():
tf.io.write_graph(sess.graph, logdir="./", name="test_shape_n.pb", as_text=False)

if __name__ == "__main__":
generate_shape_n_pb()
generate_shape_n_pb()

+ 5
- 1
tests/st/testcase/origin_models/test_switch_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
from tensorflow.python.ops import control_flow_ops

@@ -10,4 +14,4 @@ def generate_switch_pb():
tf.io.write_graph(sess.graph, logdir="./", name="test_switch.pb", as_text=False)

if __name__=='__main__':
generate_switch_pb()
generate_switch_pb()

+ 5
- 1
tests/st/testcase/origin_models/test_variableV2_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf

def generate_VariableV2_pb():
@@ -10,4 +14,4 @@ def generate_VariableV2_pb():
tf.io.write_graph(sess.graph, logdir="./", name="test_VariableV2.pb", as_text=False)

if __name__=='__main__':
generate_VariableV2_pb()
generate_VariableV2_pb()

+ 4
- 0
tests/ut/parser/testcase/onnx_parser_testcase/onnx_model/onnx_clip_v9.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import onnx
from onnx import helper
from onnx import AttributeProto, TensorProto, GraphProto


+ 4
- 0
tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/conv2d_depthwise_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import os



+ 4
- 0
tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/onnx_clip_v9.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import onnx
from onnx import helper
from onnx import AttributeProto, TensorProto, GraphProto


+ 4
- 0
tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/tensor_array_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import os
from tensorflow.python.framework import graph_util


+ 5
- 1
tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_VarIsInitializedOp_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import numpy as np

@@ -11,4 +15,4 @@ def generate_VarIsInitializedOp_pb():
tf.io.write_graph(sess.graph, logdir="./", name="test_VarIsInitializedOp.pb", as_text=False)

if __name__=='__main__':
generate_VarIsInitializedOp_pb()
generate_VarIsInitializedOp_pb()

+ 5
- 1
tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_avgpool3dgrad_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import os
import numpy as np
@@ -38,4 +42,4 @@ def generate_case_2():
tf.io.write_graph(sess.graph, logdir="./", name="avgpool3dgrad.pb.txt", as_text=False)

if __name__=='__main__':
generate_case_2()
generate_case_2()

+ 4
- 0
tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_blocklstm_pb.gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import os



+ 4
- 0
tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_constant_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import numpy as np
from tensorflow.python.framework import graph_util


+ 5
- 1
tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_conv2d_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import os
from tensorflow.python.framework import graph_util
@@ -23,4 +27,4 @@ def generate_add_pb():

if __name__=='__main__':
generate_conv2d_pb()
generate_add_pb()
generate_add_pb()

+ 5
- 1
tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_enter_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
from tensorflow.python.ops import control_flow_ops

@@ -10,4 +14,4 @@ def generate_enter_pb():
tf.io.write_graph(sess.graph, logdir="./", name="test_enter.pb", as_text=False)

if __name__=='__main__':
generate_enter_pb()
generate_enter_pb()

+ 5
- 1
tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_fill_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import numpy as np

@@ -9,4 +13,4 @@ def generate_fill_pb():
tf.io.write_graph(sess.graph, logdir="./", name="test_fill.pb", as_text=False)

if __name__ == "__main__":
generate_fill_pb()
generate_fill_pb()

+ 5
- 1
tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_identity_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf

def generate_identity_pb():
@@ -10,4 +14,4 @@ def generate_identity_pb():
tf.io.write_graph(sess.graph, logdir="./", name="test_identity.pb", as_text=False)

if __name__=='__main__':
generate_identity_pb()
generate_identity_pb()

+ 4
- 0
tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_merge_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
from tensorflow.python.framework import graph_util
import numpy as np


+ 5
- 1
tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_no_op_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import numpy as np

@@ -11,4 +15,4 @@ def generate_no_op_pb():
tf.io.write_graph(sess.graph, logdir="./", name="test_no_op.pb", as_text=False)

if __name__=='__main__':
generate_no_op_pb()
generate_no_op_pb()

+ 5
- 1
tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_reshape_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf

def generate_reshape_pb():
@@ -7,4 +11,4 @@ def generate_reshape_pb():
tf.io.write_graph(sess.graph, logdir="./", name="test_reshape.pb", as_text=False)

if __name__ == "__main__":
generate_reshape_pb()
generate_reshape_pb()

+ 5
- 1
tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_sequeeze_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import numpy as np

@@ -10,4 +14,4 @@ def generate_sequeeze_pb():
tf.io.write_graph(sess.graph, logdir="./", name="test_sequeeze.pb", as_text=False)

if __name__ == "__main__":
generate_sequeeze_pb()
generate_sequeeze_pb()

+ 5
- 1
tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_shape_n_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
import numpy as np

@@ -8,4 +12,4 @@ def generate_shape_n_pb():
tf.io.write_graph(sess.graph, logdir="./", name="test_shape_n.pb", as_text=False)

if __name__ == "__main__":
generate_shape_n_pb()
generate_shape_n_pb()

+ 5
- 1
tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_switch_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf
from tensorflow.python.ops import control_flow_ops

@@ -10,4 +14,4 @@ def generate_switch_pb():
tf.io.write_graph(sess.graph, logdir="./", name="test_switch.pb", as_text=False)

if __name__=='__main__':
generate_switch_pb()
generate_switch_pb()

+ 5
- 1
tests/ut/parser/testcase/tensorflow_parser_testcase/tensorflow_model/test_variableV2_pb_gen.py View File

@@ -1,3 +1,7 @@
#!/usr/bin/env python3
# -*- coding utf-8 -*-
# Copyright Huawei Technologies Co., Ltd 2019-2022. All rights reserved.

import tensorflow as tf

def generate_VariableV2_pb():
@@ -10,4 +14,4 @@ def generate_VariableV2_pb():
tf.io.write_graph(sess.graph, logdir="./", name="test_VariableV2.pb", as_text=False)

if __name__=='__main__':
generate_VariableV2_pb()
generate_VariableV2_pb()

Loading…
Cancel
Save