-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Simplify the inference unittests' cmake and codes. #8216
Merged
Xreki
merged 2 commits into
PaddlePaddle:develop
from
Xreki:core_inference_simplify_cmake
Feb 8, 2018
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,29 @@ | ||
set(PYTHON_TESTS_DIR ${PADDLE_SOURCE_DIR}/python/paddle/v2/fluid/tests) | ||
cc_test(test_inference_recognize_digits_mlp | ||
SRCS test_inference_recognize_digits.cc | ||
DEPS ARCHIVE_START paddle_fluid ARCHIVE_END | ||
ARGS --dirname=${PYTHON_TESTS_DIR}/book/recognize_digits_mlp.inference.model) | ||
cc_test(test_inference_image_classification_vgg | ||
SRCS test_inference_image_classification.cc | ||
DEPS ARCHIVE_START paddle_fluid ARCHIVE_END | ||
ARGS --dirname=${PYTHON_TESTS_DIR}/book/image_classification_vgg.inference.model) | ||
cc_test(test_inference_image_classification_resnet | ||
SRCS test_inference_image_classification.cc | ||
DEPS ARCHIVE_START paddle_fluid ARCHIVE_END | ||
ARGS --dirname=${PYTHON_TESTS_DIR}/book/image_classification_resnet.inference.model) | ||
cc_test(test_inference_label_semantic_roles | ||
SRCS test_inference_label_semantic_roles.cc | ||
DEPS ARCHIVE_START paddle_fluid ARCHIVE_END | ||
ARGS --dirname=${PYTHON_TESTS_DIR}/book/label_semantic_roles.inference.model) | ||
set_tests_properties(test_inference_recognize_digits_mlp | ||
PROPERTIES DEPENDS test_recognize_digits) | ||
set_tests_properties(test_inference_image_classification_vgg | ||
PROPERTIES DEPENDS test_image_classification_train) | ||
set_tests_properties(test_inference_image_classification_resnet | ||
PROPERTIES DEPENDS test_image_classification_train) | ||
set_tests_properties(test_inference_label_semantic_roles | ||
PROPERTIES DEPENDS test_label_semantic_roles) | ||
function(inference_test TARGET_NAME) | ||
set(options "") | ||
set(oneValueArgs "") | ||
set(multiValueArgs ARGS) | ||
cmake_parse_arguments(inference_test "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) | ||
|
||
set(PYTHON_TESTS_DIR ${PADDLE_SOURCE_DIR}/python/paddle/v2/fluid/tests) | ||
if(inference_test_ARGS) | ||
foreach(arg ${inference_test_ARGS}) | ||
cc_test(test_inference_${TARGET_NAME}_${arg} | ||
SRCS test_inference_${TARGET_NAME}.cc | ||
DEPS ARCHIVE_START paddle_fluid ARCHIVE_END | ||
ARGS --dirname=${PYTHON_TESTS_DIR}/book/${TARGET_NAME}_${arg}.inference.model) | ||
set_tests_properties(test_inference_${TARGET_NAME}_${arg} | ||
PROPERTIES DEPENDS test_${TARGET_NAME}) | ||
endforeach() | ||
else() | ||
cc_test(test_inference_${TARGET_NAME} | ||
SRCS test_inference_${TARGET_NAME}.cc | ||
DEPS ARCHIVE_START paddle_fluid ARCHIVE_END | ||
ARGS --dirname=${PYTHON_TESTS_DIR}/book/${TARGET_NAME}.inference.model) | ||
set_tests_properties(test_inference_${TARGET_NAME} | ||
PROPERTIES DEPENDS test_${TARGET_NAME}) | ||
endif() | ||
endfunction(inference_test) | ||
|
||
inference_test(recognize_digits ARGS mlp) | ||
inference_test(image_classification ARGS vgg resnet) | ||
inference_test(label_semantic_roles) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
18-23行和10-15行非常类似,还可以再精简么?
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.
想象一下,如果避免重复,逻辑可以变成下面这样:
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.
可以的,为了避免加其他单测时这里的冲突,简化可以放到下一个PR来完成。
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.
好的