提交 34a290c8 编写于 作者: Z ZhenWang

replace cc_test with lite_cc_test.

上级 8f36c653
...@@ -18,7 +18,7 @@ if (WITH_LITE AND LITE_WITH_LIGHT_WEIGHT_FRAMEWORK) ...@@ -18,7 +18,7 @@ if (WITH_LITE AND LITE_WITH_LIGHT_WEIGHT_FRAMEWORK)
cc_library(cl_helper SRCS cl_helper.cc DEPS cl_context) cc_library(cl_helper SRCS cl_helper.cc DEPS cl_context)
cc_library(cl_image_converter SRCS cl_image_converter.cc DEPS cl_half lite_tensor) cc_library(cl_image_converter SRCS cl_image_converter.cc DEPS cl_half lite_tensor)
cc_library(cl_image SRCS cl_image.cc DEPS cl_half lite_tensor cl_image_converter cl_engine) cc_library(cl_image SRCS cl_image.cc DEPS cl_half lite_tensor cl_image_converter cl_engine)
cc_test(test_cl_runtime SRCS cl_test.cc DEPS cl_engine cl_context) lite_cc_test(test_cl_runtime SRCS cl_test.cc DEPS cl_engine cl_context)
target_link_libraries(test_cl_runtime opencl-lib) target_link_libraries(test_cl_runtime opencl-lib)
add_dependencies(cl_tool opencl_clhpp) add_dependencies(cl_tool opencl_clhpp)
endif() endif()
...@@ -23,7 +23,7 @@ namespace lite { ...@@ -23,7 +23,7 @@ namespace lite {
TEST(cl_test, engine_test) { TEST(cl_test, engine_test) {
auto* engine = CLEngine::Global(); auto* engine = CLEngine::Global();
CHECK(engine->IsInitSuccess()); CHECK(engine->IsInitSuccess());
engine->set_cl_path("/work/Develop/Paddle/paddle/fluid/lite/opencl"); engine->set_cl_path("/data/local/tmp/opencl");
engine->platform(); engine->platform();
engine->device(); engine->device();
engine->command_queue(); engine->command_queue();
...@@ -37,9 +37,9 @@ TEST(cl_test, engine_test) { ...@@ -37,9 +37,9 @@ TEST(cl_test, engine_test) {
TEST(cl_test, context_test) { TEST(cl_test, context_test) {
auto* engine = CLEngine::Global(); auto* engine = CLEngine::Global();
CHECK(engine->IsInitSuccess()); CHECK(engine->IsInitSuccess());
engine->set_cl_path("/work/Develop/Paddle/paddle/fluid/lite/opencl"); engine->set_cl_path("/data/local/tmp/opencl");
CLContext context; CLContext context;
context.GetKernel("batchnorm", "batchnorm_kernel.cl", ""); context.GetKernel("pool_max", "pool_kernel.cl", "");
context.GetKernel("elementwise_add", "elementwise_add_kernel.cl", ""); context.GetKernel("elementwise_add", "elementwise_add_kernel.cl", "");
context.GetKernel("elementwise_add", "elementwise_add_kernel.cl", ""); context.GetKernel("elementwise_add", "elementwise_add_kernel.cl", "");
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册