From 04b2ccf4a196178d9b30cf40104853dcdb89b959 Mon Sep 17 00:00:00 2001 From: wangguibao Date: Thu, 1 Aug 2019 21:21:22 +0800 Subject: [PATCH] CTR model serving --- demo-serving/op/ctr_prediction_op.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo-serving/op/ctr_prediction_op.cpp b/demo-serving/op/ctr_prediction_op.cpp index 806dbc7c..7253e2eb 100644 --- a/demo-serving/op/ctr_prediction_op.cpp +++ b/demo-serving/op/ctr_prediction_op.cpp @@ -133,7 +133,7 @@ int CTRPredictionOp::inference() { for (int j = 0; j < values[i].buff.size(); ++j) { oss << std::hex << std::uppercase << std::setw(2) << std::setfill('0') - << (reinterpret_cast(value[j]) & 0xff); + << (static_cast(value[j]) & 0xff); } LOG(INFO) << oss.str().c_str(); -- GitLab