cancel
Showing results for 
Search instead for 
Did you mean: 

Archives Discussions

jean-claude
Journeyman III

minor bug reported in Brook compiler

Hi,

I would like to point out a minor bug in Brook Compiler related to
brace parsing.
Apparently the parsing of a = {b,c} is not performed correctly.

As an example, have a look at :


kernel void test (out float oo<>, float3 ii[][])
{
 const float2 si = indexof(oo); // position dans l'image
 float val = 0.0f;

 float2 index; // declared ahead of use
 float i,j;
 for (i=-1.0f;i<1.0f;i++) {
  for (j=-1.0f;j<1.0f;j++) {
   index = {i, j};  // Brook compiler doesn't like this !!!
   val += ii[si+index];
  }
 }
 oo = val;
}


kernel void test (out float oo<>, float3 ii[][])
{
 const float2 si = indexof(oo); // position dans l'image
 float val = 0.0f;

 float i,j;
 for (i=-1.0f;i<1.0f;i++) {
  for (j=-1.0f;j<1.0f;j++) {
   float2 index = {i, j}; // Brook compiler is fine
   val += ii[si+index];
  }
 }
 oo = val;
}


Jean-Claude

0 Likes
1 Reply

Thanks, I have reported this issue.
0 Likes