-
Notifications
You must be signed in to change notification settings - Fork 442
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MINOR] [VL] Enhance the gluten timer to support seconds, milliseconds, and microseconds #8231
base: main
Are you sure you want to change the base?
Conversation
Thanks for opening a pull request! Could you open an issue for this pull request on Github Issues? https://github.com/apache/incubator-gluten/issues Then could you also rename commit message and pull request title in the following format?
See also: |
@marin-ma Can you help review this? |
cpp/core/shuffle/Payload.cc
Outdated
@@ -310,7 +310,7 @@ arrow::Result<std::vector<std::shared_ptr<arrow::Buffer>>> BlockPayload::deseria | |||
RETURN_NOT_OK(inputStream->Read(sizeof(uint32_t), &numRows)); | |||
uint32_t numBuffers; | |||
RETURN_NOT_OK(inputStream->Read(sizeof(uint32_t), &numBuffers)); | |||
timer.reset(); | |||
deserializeTime += timer.realTimeUsed(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need this change? timer.start() and timer.stop() is not called. the realTimeUsed would be zero
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@marin-ma Thanks, Um.. I've added this to fix the compile error with std::unique_ptr<ScopedTimer>
. It was a typo. Now, I have fixed it in another way.
This reverts commit 99da8d0.
What changes were proposed in this pull request?
Sometimes we need a timer in seconds, e.g., for measuring file write time. Enhance the gluten timer to support seconds, milliseconds, microseconds and nanoseconds.
How was this patch tested?
Exist CI.