Skip to content
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

pacific: common: Use double instead of long double to improve performance #51316

Merged
merged 1 commit into from Jul 5, 2023

Conversation

rosinL
Copy link
Member

@rosinL rosinL commented May 2, 2023

To convert namoseconds to seconds, the precision needs to be 10, and the precision of double is 15, which is enough to use. On aarch64, double division uses the div instruction, while long double uses the gcc buildin _divtf3, which has poor performance. Therefore, use double instead of long double for better performance.

backport tracker: https://tracker.ceph.com/issues/61475

Signed-off-by: Chunsong Feng fengchunsong@huawei.com
Signed-off-by: luo rixin luorixin@huawei.com
(cherry picked from commit 58753cf)

Contribution Guidelines

Checklist

  • Tracker (select at least one)
    • References tracker ticket
    • Very recent bug; references commit where it was introduced
    • New feature (ticket optional)
    • Doc update (no ticket needed)
    • Code cleanup (no ticket needed)
  • Component impact
    • Affects Dashboard, opened tracker ticket
    • Affects Orchestrator, opened tracker ticket
    • No impact that needs to be tracked
  • Documentation (select at least one)
    • Updates relevant documentation
    • No doc update is appropriate
  • Tests (select at least one)
Show available Jenkins commands
  • jenkins retest this please
  • jenkins test classic perf
  • jenkins test crimson perf
  • jenkins test signed
  • jenkins test make check
  • jenkins test make check arm64
  • jenkins test submodules
  • jenkins test dashboard
  • jenkins test dashboard cephadm
  • jenkins test api
  • jenkins test docs
  • jenkins render docs
  • jenkins test ceph-volume all
  • jenkins test ceph-volume tox
  • jenkins test windows

To convert namoseconds to seconds, the precision needs to be 10,
and the precision of double is 15, which is enough to use.
On aarch64, double division uses the div instruction, while long
double uses the gcc buildin _divtf3, which has poor performance.
Therefore, use double instead of long double for better performance.

Signed-off-by: Chunsong Feng <fengchunsong@huawei.com>
(cherry picked from commit 58753cf)
Signed-off-by: luo rixin <luorixin@huawei.com>
@github-actions github-actions bot added this to the pacific milestone May 2, 2023
@rosinL
Copy link
Member Author

rosinL commented May 4, 2023

jenkins retest this please

@markhpc
Copy link
Member

markhpc commented May 4, 2023

@rosinL Any chance you have any performance or perf data showing an improvement (even cycles/op) for the change?

@rosinL
Copy link
Member Author

rosinL commented May 5, 2023

Hi @markhpc, we have tested on aarch64, we get about 1% performance(IOPS) improvement for 4k randwrite.

@markhpc
Copy link
Member

markhpc commented May 11, 2023

Sorry, I completely missed that this is just a backport.

@markhpc markhpc self-requested a review May 11, 2023 14:21
Copy link
Member

@markhpc markhpc left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@rosinL
Copy link
Member Author

rosinL commented May 25, 2023

Can we merge this? @markhpc @rzarzynski

@rzarzynski
Copy link
Contributor

The main PR has been merged in 2021: #42082.

@rzarzynski
Copy link
Contributor

@rosinL: one purely organization thing: may we get-or-create a ticket for tracing?

@rosinL
Copy link
Member Author

rosinL commented May 27, 2023

@rosinL: one purely organization thing: may we get-or-create a ticket for tracing?

I have added a backport tracker https://tracker.ceph.com/issues/61475. Would you help to update the tracker status?

@yuriw yuriw merged commit b370474 into ceph:pacific Jul 5, 2023
8 checks passed
@rzarzynski
Copy link
Contributor

Switched https://tracker.ceph.com/issues/61475 to Resolved.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
6 participants