Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Yohahaha committed Jan 2, 2024
1 parent d7339d2 commit a854069
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/core/utils/qpl/qpl_job_pool.cc
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ QplJobHWPool& QplJobHWPool::GetInstance() {
QplJobHWPool::QplJobHWPool() : randomEngine(std::random_device()()), distribution(0, MAX_JOB_NUMBER - 1) {
uint64_t initTime = 0;
TIME_NANO(initTime, InitJobPool());
LOG(INFO) << "Init job pool took " << 1.0 * initTime / 1e6 << "ms";
DLOG(INFO) << "Init job pool took " << 1.0 * initTime / 1e6 << "ms";
}

QplJobHWPool::~QplJobHWPool() {
Expand Down Expand Up @@ -96,7 +96,7 @@ qpl_job* QplJobHWPool::AcquireJob(uint32_t& jobId) {
}
}
jobId = MAX_JOB_NUMBER - index;
LOG(INFO) << "Acquired job index " << index << " after " << retry << " retries.";
DLOG(INFO) << "Acquired job index " << index << " after " << retry << " retries.";
return jobPool[index];
}

Expand Down
2 changes: 2 additions & 0 deletions cpp/velox/jni/VeloxJniWrapper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ jint JNI_OnLoad(JavaVM* vm, void*) {
gluten::initVeloxJniFileSystem(env);
gluten::initVeloxJniUDF(env);

DLOG(INFO) << "Loaded Velox backend.";

return jniVersion;
}

Expand Down

0 comments on commit a854069

Please sign in to comment.