Bug #7370
closedSome benchmarks are slow
Description
Hi.
Some benchmarks are slow since r37631.
I guess DTrace's proves affect CRuby's performance.
Is it possible to fix?
app_answer:
r37629 0.153(sec)
r37631 0.196
app_fib:
r37629 1.497
r37631 2.005
app_tak:
r37629 2.048
r37631 2.984
app_tarai:
r37629 1.713
r37631 2.42
app_raise:
r37629 0.792
r37631 0.85
so_ackermann:
r37629 1.809
r37631 2.529
Please see also this site: http://www.narihiro.info/crubybenci/
Thanks.
Updated by authorNari (Narihiro Nakamura) about 12 years ago
- Assignee changed from ko1 (Koichi Sasada) to tenderlovemaking (Aaron Patterson)
Aaron-san, Could you check it?
Thanks.
Updated by ko1 (Koichi Sasada) about 12 years ago
(2012/11/16 16:51), authorNari (Narihiro Nakamura) wrote:
Some benchmarks are slow since r37631.
I guess DTrace's proves affect CRuby's performance.
Is it possible to fix?
He missed to argue about the important thing:
His measurement environment is Linux and DTrace should be inactive!!
--
// SASADA Koichi at atdot dot net
Updated by naruse (Yui NARUSE) almost 12 years ago
- Status changed from Open to Closed
- % Done changed from 0 to 100
This issue was solved with changeset r37796.
Narihiro, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
- vm_insnhelper.h: partly revert r37631 (DTrace support).
"vm usage information is always collected, so uncomment the
functions." causes performance impact. [Bug #7370]
Off course this revert disables related probes.
Updated by naruse (Yui NARUSE) almost 12 years ago
- Status changed from Closed to Assigned
Updated by kosaki (Motohiro KOSAKI) almost 12 years ago
- Status changed from Assigned to Closed
This issue was solved with changeset r37798.
Narihiro, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
- Makefile.in: run preprocessor when making probe.h
- probes.d: define probe insn and insn__operand only when
VM_COLLECT_USAGE_DETAILS is 1. [Bug #7370]