├── .clang-format ├── .gitignore ├── .gitmodules ├── README.md ├── compiler ├── CMakeLists.txt └── dummy.cc ├── runtime ├── CMakeLists.txt └── oneflow-lite │ ├── CMakeLists.txt │ ├── base │ ├── CMakeLists.txt │ ├── common.h │ ├── datatype.cc │ ├── datatype.h │ ├── dims.cc │ ├── dims.h │ ├── layout.cc │ ├── layout.h │ ├── memory.h │ ├── refcount.cc │ ├── refcount.h │ ├── stringref.cc │ └── stringref.h │ ├── core │ ├── CMakeLists.txt │ ├── alloca.cc │ ├── alloca.h │ ├── buffer.cc │ ├── buffer.h │ ├── device.cc │ ├── device.h │ ├── device_context.cc │ ├── device_context.h │ ├── device_util.cc │ ├── device_util.h │ ├── driver.cc │ ├── driver.h │ ├── event.cc │ ├── event.h │ ├── executable.cc │ ├── executable.h │ ├── execution_context.cc │ ├── execution_context.h │ ├── execution_unit.cc │ ├── execution_unit.h │ ├── flatbuffer_utils.cc │ ├── flatbuffer_utils.h │ ├── operator.cc │ ├── operator.h │ ├── span.cc │ ├── span.h │ ├── stream.cc │ ├── stream.h │ ├── tensor.cc │ ├── tensor.h │ └── vtable_handle.h │ ├── delegates │ ├── CMakeLists.txt │ ├── ascend │ │ ├── CMakeLists.txt │ │ ├── ascend_alloca.cc │ │ ├── ascend_alloca.h │ │ ├── ascend_create_op.cc │ │ ├── ascend_create_op.h │ │ ├── ascend_device.cc │ │ ├── ascend_device.h │ │ ├── ascend_driver.cc │ │ ├── ascend_utils.cc │ │ ├── ascend_utils.h │ │ ├── cmake │ │ │ └── FindAscendSdk.cmake │ │ └── ops │ │ │ ├── copy.cc │ │ │ └── mlir_jit.cc │ ├── generic │ │ ├── CMakeLists.txt │ │ ├── generic_alloca.cc │ │ └── generic_alloca.h │ └── x86 │ │ ├── CMakeLists.txt │ │ ├── x86_alloca.cc │ │ ├── x86_alloca.h │ │ ├── x86_device.cc │ │ ├── x86_device.h │ │ └── x86_driver.cc │ ├── dummy.cc │ └── tests │ ├── CMakeLists.txt │ └── test_resnet50.cc ├── schemas ├── CMakeLists.txt ├── attributes │ ├── CMakeLists.txt │ ├── bool.fbs │ ├── f32.fbs │ ├── f32s.fbs │ ├── f64.fbs │ ├── i32.fbs │ ├── i32s.fbs │ ├── i64.fbs │ ├── i64s.fbs │ ├── shape.fbs │ ├── shapes.fbs │ ├── str.fbs │ └── strs.fbs └── executable.fbs ├── thirdparty ├── CMakeLists.txt └── flatcc │ └── install_flatcc.cmake └── tools └── run_clang_format.py /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google 2 | DerivePointerAlignment: false 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/README.md -------------------------------------------------------------------------------- /compiler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/compiler/CMakeLists.txt -------------------------------------------------------------------------------- /compiler/dummy.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/oneflow-lite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/oneflow-lite/base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/base/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/oneflow-lite/base/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/base/common.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/base/datatype.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/base/datatype.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/base/datatype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/base/datatype.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/base/dims.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/base/dims.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/base/dims.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/base/dims.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/base/layout.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/base/layout.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/base/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/base/layout.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/base/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/base/memory.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/base/refcount.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/base/refcount.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/base/refcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/base/refcount.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/base/stringref.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/base/stringref.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/base/stringref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/base/stringref.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/alloca.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/alloca.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/alloca.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/buffer.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/buffer.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/device.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/device.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/device.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/device_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/device_context.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/device_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/device_context.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/device_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/device_util.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/device_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/device_util.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/driver.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/driver.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/event.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/event.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/executable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/executable.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/executable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/executable.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/execution_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/execution_context.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/execution_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/execution_context.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/execution_unit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/execution_unit.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/execution_unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/execution_unit.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/flatbuffer_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/flatbuffer_utils.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/flatbuffer_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/flatbuffer_utils.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/operator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/operator.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/operator.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/span.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/span.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/span.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/stream.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/stream.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/tensor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/tensor.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/tensor.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/core/vtable_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/core/vtable_handle.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/ascend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/ascend/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/ascend/ascend_alloca.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/ascend/ascend_alloca.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/ascend/ascend_alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/ascend/ascend_alloca.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/ascend/ascend_create_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/ascend/ascend_create_op.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/ascend/ascend_create_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/ascend/ascend_create_op.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/ascend/ascend_device.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/ascend/ascend_device.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/ascend/ascend_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/ascend/ascend_device.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/ascend/ascend_driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/ascend/ascend_driver.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/ascend/ascend_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/ascend/ascend_utils.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/ascend/ascend_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/ascend/ascend_utils.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/ascend/cmake/FindAscendSdk.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/ascend/cmake/FindAscendSdk.cmake -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/ascend/ops/copy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/ascend/ops/copy.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/ascend/ops/mlir_jit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/ascend/ops/mlir_jit.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/generic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/generic/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/generic/generic_alloca.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/generic/generic_alloca.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/generic/generic_alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/generic/generic_alloca.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/x86/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/x86/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/x86/x86_alloca.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/x86/x86_alloca.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/x86/x86_alloca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/x86/x86_alloca.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/x86/x86_device.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/x86/x86_device.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/x86/x86_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/x86/x86_device.h -------------------------------------------------------------------------------- /runtime/oneflow-lite/delegates/x86/x86_driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/delegates/x86/x86_driver.cc -------------------------------------------------------------------------------- /runtime/oneflow-lite/dummy.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/oneflow-lite/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/tests/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/oneflow-lite/tests/test_resnet50.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/runtime/oneflow-lite/tests/test_resnet50.cc -------------------------------------------------------------------------------- /schemas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/schemas/CMakeLists.txt -------------------------------------------------------------------------------- /schemas/attributes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/schemas/attributes/CMakeLists.txt -------------------------------------------------------------------------------- /schemas/attributes/bool.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/schemas/attributes/bool.fbs -------------------------------------------------------------------------------- /schemas/attributes/f32.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/schemas/attributes/f32.fbs -------------------------------------------------------------------------------- /schemas/attributes/f32s.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/schemas/attributes/f32s.fbs -------------------------------------------------------------------------------- /schemas/attributes/f64.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/schemas/attributes/f64.fbs -------------------------------------------------------------------------------- /schemas/attributes/i32.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/schemas/attributes/i32.fbs -------------------------------------------------------------------------------- /schemas/attributes/i32s.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/schemas/attributes/i32s.fbs -------------------------------------------------------------------------------- /schemas/attributes/i64.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/schemas/attributes/i64.fbs -------------------------------------------------------------------------------- /schemas/attributes/i64s.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/schemas/attributes/i64s.fbs -------------------------------------------------------------------------------- /schemas/attributes/shape.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/schemas/attributes/shape.fbs -------------------------------------------------------------------------------- /schemas/attributes/shapes.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/schemas/attributes/shapes.fbs -------------------------------------------------------------------------------- /schemas/attributes/str.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/schemas/attributes/str.fbs -------------------------------------------------------------------------------- /schemas/attributes/strs.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/schemas/attributes/strs.fbs -------------------------------------------------------------------------------- /schemas/executable.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/schemas/executable.fbs -------------------------------------------------------------------------------- /thirdparty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/thirdparty/CMakeLists.txt -------------------------------------------------------------------------------- /thirdparty/flatcc/install_flatcc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/thirdparty/flatcc/install_flatcc.cmake -------------------------------------------------------------------------------- /tools/run_clang_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oneflow-Inc/oneflow-lite/HEAD/tools/run_clang_format.py --------------------------------------------------------------------------------