提交 3560ee4f 编写于 作者: M MRXLT

fix profile timestamp

上级 6fcf6795
...@@ -12,8 +12,8 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ...@@ -12,8 +12,8 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. */ limitations under the License. */
#include <sys/time.h>
#include "core/util/include/timer.h" #include "core/util/include/timer.h"
#include <sys/time.h>
namespace baidu { namespace baidu {
namespace paddle_serving { namespace paddle_serving {
...@@ -56,7 +56,7 @@ double Timer::ElapsedSec() { return _elapsed / 1000000.0; } ...@@ -56,7 +56,7 @@ double Timer::ElapsedSec() { return _elapsed / 1000000.0; }
int64_t Timer::TimeStampUS() { int64_t Timer::TimeStampUS() {
gettimeofday(&_now, NULL); gettimeofday(&_now, NULL);
return _now.tv_usec; return _now.tv_sec * 1000 * 1000L + _now.tv_usec;
} }
int64_t Timer::Tickus() { int64_t Timer::Tickus() {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册