Skip to content

Commit

Permalink
fix(onnx): 注册 DepthToSpace
Browse files Browse the repository at this point in the history
Signed-off-by: YdrMaster <[email protected]>
  • Loading branch information
YdrMaster committed Apr 25, 2024
1 parent fc7e08d commit 5f7f8ab
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 3rd-party/abseil-cpp
Submodule abseil-cpp updated 360 files
2 changes: 1 addition & 1 deletion 3rd-party/cccl
Submodule cccl updated 12333 files
2 changes: 1 addition & 1 deletion 3rd-party/fmt
Submodule fmt updated 57 files
+1 −1 .github/dependabot.yml
+3 −3 .github/workflows/cifuzz.yml
+1 −1 .github/workflows/doc.yml
+26 −0 .github/workflows/lint.yml
+1 −1 .github/workflows/linux.yml
+1 −1 .github/workflows/macos.yml
+4 −4 .github/workflows/scorecard.yml
+2 −2 .github/workflows/windows.yml
+13 −26 .gitignore
+18 −9 CMakeLists.txt
+5,533 −0 ChangeLog.md
+0 −5,922 ChangeLog.rst
+0 −0 LICENSE
+490 −0 README.md
+0 −545 README.rst
+6 −6 doc/_static/bootstrap.min.js
+72 −65 doc/api.rst
+8 −3 doc/build.py
+11 −4 doc/syntax.rst
+38 −0 doc/usage.rst
+6 −5 include/fmt/args.h
+152 −120 include/fmt/chrono.h
+44 −33 include/fmt/color.h
+9 −8 include/fmt/compile.h
+82 −35 include/fmt/core.h
+87 −71 include/fmt/format-inl.h
+265 −240 include/fmt/format.h
+24 −20 include/fmt/os.h
+64 −28 include/fmt/ostream.h
+10 −2 include/fmt/printf.h
+18 −15 include/fmt/ranges.h
+113 −41 include/fmt/std.h
+9 −8 include/fmt/xchar.h
+1 −3 src/fmt.cc
+9 −5 src/os.cc
+1 −1 support/AndroidManifest.xml
+45 −19 support/manage.py
+0 −166 support/rst2md.py
+6 −1 test/CMakeLists.txt
+237 −241 test/chrono-test.cc
+9 −6 test/compile-test.cc
+1 −8 test/format-impl-test.cc
+464 −436 test/format-test.cc
+1 −1 test/gtest-extra-test.cc
+2 −2 test/gtest-extra.cc
+1 −1 test/gtest-extra.h
+1 −1 test/gtest/gmock-gtest-all.cc
+18 −1 test/ostream-test.cc
+4 −4 test/posix-mock.h
+2 −2 test/printf-test.cc
+67 −34 test/ranges-test.cc
+103 −31 test/scan-test.cc
+560 −138 test/scan.h
+54 −5 test/std-test.cc
+6 −2 test/util.cc
+14 −12 test/util.h
+71 −26 test/xchar-test.cc
2 changes: 2 additions & 0 deletions src/07onnx/src/operators.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include "operators/constant_of_shape.hh"
#include "operators/conv.hh"
#include "operators/cum_sum.hh"
#include "operators/depth_to_space.hh"
#include "operators/dequantize_linear.hh"
#include "operators/dynamic_quantize_linear.hh"
#include "operators/einsum.hh"
Expand Down Expand Up @@ -131,6 +132,7 @@ namespace refactor::onnx {
REGISTER(Where , Where );
REGISTER(HardSigmoid , HardSigmoid );
REGISTER(Pad , Pad );
REGISTER(DepthToSpace , DepthToSpace );
// clang-format on
#undef REGISTER
}
Expand Down
2 changes: 1 addition & 1 deletion src/09python_ffi/pybind11
Submodule pybind11 updated 91 files
+1 −1 .github/CONTRIBUTING.md
+9 −1 .github/dependabot.yml
+111 −74 .github/workflows/ci.yml
+3 −3 .github/workflows/configure.yml
+4 −4 .github/workflows/format.yml
+1 −1 .github/workflows/labeler.yml
+8 −8 .github/workflows/pip.yml
+7 −7 .github/workflows/upstream.yml
+21 −19 .pre-commit-config.yaml
+19 −2 .readthedocs.yml
+57 −6 CMakeLists.txt
+5 −4 README.rst
+1 −1 docs/advanced/embedding.rst
+11 −11 docs/advanced/exceptions.rst
+1 −1 docs/advanced/functions.rst
+29 −0 docs/advanced/misc.rst
+1 −1 docs/benchmark.py
+182 −2 docs/changelog.rst
+12 −4 docs/compiling.rst
+86 −42 docs/release.rst
+28 −0 docs/upgrade.rst
+142 −9 include/pybind11/cast.h
+18 −13 include/pybind11/detail/class.h
+16 −4 include/pybind11/detail/common.h
+1 −1 include/pybind11/detail/init.h
+16 −5 include/pybind11/detail/internals.h
+51 −10 include/pybind11/detail/type_caster_base.h
+3 −2 include/pybind11/eigen/tensor.h
+2 −1 include/pybind11/functional.h
+9 −1 include/pybind11/gil.h
+91 −0 include/pybind11/gil_safe_call_once.h
+157 −22 include/pybind11/numpy.h
+121 −48 include/pybind11/pybind11.h
+22 −5 include/pybind11/pytypes.h
+8 −7 include/pybind11/stl.h
+28 −56 include/pybind11/stl_bind.h
+125 −0 include/pybind11/typing.h
+1 −1 noxfile.py
+1 −1 pybind11/_version.py
+3 −1 pybind11/setup_helpers.py
+8 −11 pyproject.toml
+9 −4 tests/CMakeLists.txt
+1 −0 tests/conftest.py
+2 −2 tests/cross_module_interleaved_error_already_set.cpp
+2 −0 tests/extra_python_package/test_files.py
+4 −4 tests/pybind11_cross_module_tests.cpp
+9 −3 tests/pybind11_tests.cpp
+14 −8 tests/requirements.txt
+7 −0 tests/test_buffers.py
+2 −2 tests/test_builtin_casters.py
+7 −0 tests/test_callbacks.py
+14 −0 tests/test_class.py
+1 −2 tests/test_cmake_build/CMakeLists.txt
+3 −3 tests/test_cmake_build/installed_embed/CMakeLists.txt
+3 −3 tests/test_cmake_build/installed_function/CMakeLists.txt
+3 −3 tests/test_cmake_build/installed_target/CMakeLists.txt
+9 −3 tests/test_cmake_build/subdirectory_embed/CMakeLists.txt
+9 −3 tests/test_cmake_build/subdirectory_function/CMakeLists.txt
+9 −3 tests/test_cmake_build/subdirectory_target/CMakeLists.txt
+4 −0 tests/test_constants_and_functions.cpp
+12 −0 tests/test_custom_type_casters.cpp
+17 −0 tests/test_eigen_matrix.cpp
+8 −1 tests/test_eigen_matrix.py
+6 −3 tests/test_enum.py
+54 −13 tests/test_exceptions.cpp
+1 −1 tests/test_exceptions.h
+21 −2 tests/test_exceptions.py
+2 −2 tests/test_factory_constructors.py
+46 −0 tests/test_kwargs_and_defaults.cpp
+37 −1 tests/test_kwargs_and_defaults.py
+19 −15 tests/test_methods_and_attributes.py
+9 −3 tests/test_numpy_array.py
+29 −4 tests/test_numpy_dtypes.cpp
+11 −3 tests/test_numpy_dtypes.py
+45 −0 tests/test_python_multiple_inheritance.cpp
+35 −0 tests/test_python_multiple_inheritance.py
+26 −3 tests/test_pytypes.cpp
+57 −1 tests/test_pytypes.py
+19 −0 tests/test_sequences_and_iterators.cpp
+13 −0 tests/test_sequences_and_iterators.py
+15 −12 tests/test_smart_ptr.cpp
+12 −12 tests/test_stl.py
+80 −0 tests/test_stl_binders.cpp
+44 −6 tests/test_stl_binders.py
+2 −2 tests/test_type_caster_pyobject_ptr.cpp
+24 −1 tools/FindPythonLibsNew.cmake
+29 −1 tools/make_changelog.py
+30 −16 tools/pybind11Common.cmake
+1 −1 tools/pybind11Config.cmake.in
+77 −22 tools/pybind11NewTools.cmake
+13 −7 tools/pybind11Tools.cmake

0 comments on commit 5f7f8ab

Please sign in to comment.