提交 27459ab1 编写于 作者: Z zhaojiaying01

replace std::cout with DLOG.

上级 e669d8e5
......@@ -79,6 +79,6 @@ int main() {
paddle_mobile::TestLogicalAndOp({1, 1, 2, 3});
paddle_mobile::TestLogicalAndOp({1, 3, 11, 12});
paddle_mobile::TestLogicalAndOp({1, 16, 32, 32});
std::cout << "test logical_and op pass." << std::endl;
DLOG << "test logical_and op pass.";
return 0;
}
......@@ -71,6 +71,6 @@ int main() {
paddle_mobile::TestLogicalNotOp({1, 1, 2, 3});
paddle_mobile::TestLogicalNotOp({1, 3, 11, 12});
paddle_mobile::TestLogicalNotOp({1, 16, 32, 32});
std::cout << "test logical_not op pass." << std::endl;
DLOG << "test logical_not op pass.";
return 0;
}
......@@ -79,6 +79,6 @@ int main() {
paddle_mobile::TestLogicalOrOp({1, 1, 2, 3});
paddle_mobile::TestLogicalOrOp({1, 3, 11, 12});
paddle_mobile::TestLogicalOrOp({1, 16, 32, 32});
std::cout << "test logical_or op pass." << std::endl;
DLOG << "test logical_or op pass.";
return 0;
}
......@@ -81,6 +81,6 @@ int main() {
paddle_mobile::TestLogicalXorOp({1, 1, 2, 3});
paddle_mobile::TestLogicalXorOp({1, 3, 11, 12});
paddle_mobile::TestLogicalXorOp({1, 16, 32, 32});
std::cout << "test logical_xor op pass." << std::endl;
DLOG << "test logical_xor op pass.";
return 0;
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册