Re: Is je more effective than jg
- From: robertwessel2@xxxxxxxxx
- Date: 27 Nov 2006 01:30:22 -0800
leon800219@xxxxxxxxx wrote:
"robertwess...@xxxxxxxxx 写道:
"
leon800219@xxxxxxxxx wrote:Oops, Sorry I did't noticed that. It should be
Hi all:
I wonder is jne more effective than jbe, if so why?
The statement:
for(i=0;i<=10;++i)
{
}
seems slower than:
for(i=0;i!=10;++i)
{
}
Have you considered that the first loop is executed 11 times and the
second 10?
for(i=0;i<=9;++i)
{
}
seems slower than:
for(i=0;i!=10;++i)
{
}
Sorry for the distraction.
Are you saying that even with the correction you are still seeing a
performance difference between the two loops? Please post your
measurements.
.
- References:
- Is je more effective than jg
- From: leon800219
- Re: Is je more effective than jg
- From: robertwessel2
- Re: Is je more effective than jg
- From: leon800219
- Is je more effective than jg
- Prev by Date: Re: Time this code, please!
- Next by Date: Re: GeForce / ATI?
- Previous by thread: Re: Is je more effective than jg
- Next by thread: Re: Is je more effective than jg
- Index(es):
Relevant Pages
|