-
Notifications
You must be signed in to change notification settings - Fork 5.9k
CMake op_library function
#2897
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,44 @@ | ||
| if(WITH_GPU) | ||
| nv_library(add_op SRCS add_op.cc add_op.cu DEPS operator op_registry glog ddim) | ||
| else() | ||
| cc_library(add_op SRCS add_op.cc DEPS operator op_registry glog ddim) | ||
| endif() | ||
| function(op_library TARGET) | ||
| # op_library is a function to create op library. The interface is same as | ||
| # cc_library. But it handle split GPU/CPU code and link some common library | ||
| # for ops. | ||
| set(cc_srcs) | ||
| set(cu_srcs) | ||
| set(op_common_deps operator op_registry glog ddim) | ||
|
||
| set(options "") | ||
| set(oneValueArgs "") | ||
| set(multiValueArgs SRCS DEPS) | ||
| cmake_parse_arguments(op_library "${options}" "${oneValueArgs}" | ||
| "${multiValueArgs}" ${ARGN}) | ||
|
|
||
| foreach(src ${op_library_SRCS}) | ||
| if (${src} MATCHES ".*\\.cu$") | ||
| list(APPEND cu_srcs ${src}) | ||
| elseif(${src} MATCHES ".*\\.cc$") | ||
| list(APPEND cc_srcs ${src}) | ||
| else() | ||
| message(FATAL_ERROR "${TARGET} Source file ${src} should only be .cc or .cu") | ||
| endif() | ||
| endforeach() | ||
|
|
||
| list(LENGTH cc_srcs cc_srcs_len) | ||
| if (${cc_srcs_len} EQUAL 0) | ||
| message(FATAL_ERROR "The op library ${TARGET} should contains at least one .cc file") | ||
| endif() | ||
|
|
||
| list(LENGTH cu_srcs cu_srcs_len) | ||
| if (${cu_srcs_len} EQUAL 0) | ||
| message(WARNING "The op library ${TARGET} not support GPU!") | ||
| endif() | ||
|
|
||
| if (WITH_GPU) | ||
| nv_library(${TARGET} SRCS ${cc_srcs} ${cu_srcs} DEPS ${op_library_DEPS} | ||
| ${op_common_deps}) | ||
| else() | ||
| cc_library(${TARGET} SRCS ${cc_srcs} DEPS ${op_library_DEPS} | ||
| ${op_common_deps}) | ||
| endif() | ||
| endfunction() | ||
|
|
||
| op_library(add_op SRCS add_op.cc add_op.cu) | ||
| cc_test(add_op_test SRCS add_op_test.cc DEPS add_op) | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This not in
generic.cmakebecause it is only used by building an operator, not ageneric function.