Hi,
I try ARM, MIPS, PowerPC and X86 on povray benchmark. No one can
shrink-wrap function Ray_In_Bound.
Here is:
bool Ray_In_Bound (RAY *Ray, OBJECT *Bounding_Object)
{
...
for (Bound = Bounding_Object; Bound != NULL; Bound = Bound->Sibling)
{...}
return (true);
}
For ARM O2/O3, "Bound" i
On 20 November 2012 22:10, Zhenqiang Chen wrote:
> Hi,
>
> I try ARM, MIPS, PowerPC and X86 on povray benchmark. No one can
> shrink-wrap function Ray_In_Bound.
>
> Here is:
> bool Ray_In_Bound (RAY *Ray, OBJECT *Bounding_Object)
> {
> ...
> for (Bound = Bounding_Object; Bound != NULL; Bound =
On 21 November 2012 03:26, Michael Hope wrote:
> On 20 November 2012 22:10, Zhenqiang Chen wrote:
>> Hi,
>>
>> I try ARM, MIPS, PowerPC and X86 on povray benchmark. No one can
>> shrink-wrap function Ray_In_Bound.
>>
>> Here is:
>> bool Ray_In_Bound (RAY *Ray, OBJECT *Bounding_Object)
>> {
>> .