mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-31 23:27:43 +00:00
* implement python opeartor * format code * remove dup * limit type * format code * cancel default logging func * add comment * fix compile err * fix comments * switch to c++ style cast * implement interop framework * fix format * move includes * cancel needless linking * fix comment * add UT * exclude def
9 lines
602 B
CMake
9 lines
602 B
CMake
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# Licensed under the MIT License.
|
|
include(onnxruntime_pyop.cmake)
|
|
file (GLOB onnxruntime_language_interop_ops_src "${ONNXRUNTIME_ROOT}/core/language_interop_ops/language_interop_ops.cc")
|
|
add_library(onnxruntime_language_interop ${onnxruntime_language_interop_ops_src})
|
|
onnxruntime_add_include_to_target(onnxruntime_language_interop onnxruntime_common onnxruntime_framework onnxruntime_pyop gsl onnx onnx_proto protobuf::libprotobuf)
|
|
target_include_directories(onnxruntime_language_interop PRIVATE ${ONNXRUNTIME_ROOT} ${eigen_INCLUDE_DIRS})
|
|
|
|
|