cancel
Showing results for 
Search instead for 
Did you mean: 

Archives Discussions

emuller
Journeyman III

domainSize and domainOffset for brook compute shaders

Consider the attached computer shader kernel

I had to enable address virtualization for it to work at all, even for an in<> stream.  Why?  It is 1D.  Do all compute shaders need -r option?

But now the puzzling part ... domainSize has effect on 1st dimension, domainOffset has no effect.

For 2d version of kernel, that is "out_s[global_id.y][global_id.x]=" and appropriate stream defs, domainSize on 2nd dim has no effect.  Only first dim.  Again no effect from domainOffset.

The brookplus svn shows no tests for domainOffset, domainSize, and only exec_domain example, not for computer shaders, and its only mentioned once in docs ... so is it an "experimental feature" ... or user error ?

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Attribute[GroupSize (64)] kernel void wftest1(uint4 in_s[], out uint4 out_s[]) { uint2 global_id = (uint2)instance ().xy; uint local_id = (uint)instanceInGroup().x; //int4 tmp = {1,2,3,4}; uint tmp = dot(in_s[local_id],in_s[local_id]); out_s[global_id.x]= uint4(local_id,global_id.x,global_id.y,tmp); }

0 Likes
2 Replies
gaurav_garg
Adept I

Yes, compute shaders always use address translation mode, so you should not compile with -r mode.

Regarding your domainOffset and domainSize problem, is looks more like a problem on runtime side. Can you post your runtime code as well?

0 Likes

My runtime code is written in a python wrapper to brook (using boost:ython) ... I attached the code here

output for the ps kernels is as expected:

... k = kernels.__wftest4() ...

print h_out

array([[0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
       [0, 0, 1, 1, 2, 1, 3, 1, 0, 0],
       [0, 0, 1, 2, 2, 2, 3, 2, 0, 0],
       [0, 0, 1, 3, 2, 3, 3, 3, 0, 0],
       [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], dtype=uint32)

 

output for the scatter ps is already unexpected, i.e. it loops from domainOffset to domainSize-domainOffset.

... k = kernels.__wftest3() ...

print h_out

array([[0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
       [0, 0, 1, 1, 2, 1, 0, 0, 0, 0],
       [0, 0, 1, 2, 2, 2, 0, 0, 0, 0],
       [0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
       [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], dtype=uint32)

 

For the cs, domainSize and domainOffset have no effect:

... k = kernels.__wftest2() ...

print h_out

array([[0, 0, 1, 0, 2, 0, 3, 0, 4, 0],
       [0, 1, 1, 1, 2, 1, 3, 1, 4, 1],
       [0, 2, 1, 2, 2, 2, 3, 2, 4, 2],
       [0, 3, 1, 3, 2, 3, 3, 3, 4, 3],
       [0, 4, 1, 4, 2, 4, 3, 4, 4, 4]], dtype=uint32)

The boost wrapping of domainOffset and domainSize is a direct automated wrapper of the C++ functions, so there's little room for problems there.

 

 

import os os.environ['BRT_ADAPTER']='3' import kernels import stream import numpy def fX(dims,x): b = numpy.array(dims)[::-1] b[-1]*=x return tuple(b) def f4(dims): return fX(dims,4) def f2(dims): return fX(dims,2) dims =(5,5) h_in = numpy.zeros(f2(dims),dtype=numpy.uint32) h_in.flat[:] = numpy.arange(len(h_in.flat)).astype(numpy.uint32) h_out = numpy.zeros(f2(dims),dtype=numpy.uint32) d_in = stream.Stream_uint2(dims) d_out= stream.Stream_uint2(dims) d_in.read(h_in) d_out.read(h_out) k = kernels.__wftest4() k.domainSize(kernels.uint4(3,3,1,1)) k.domainOffset(kernels.uint4(1,1,0,0)) k.run(d_in,d_out) if d_out.error()!=stream.BRerror.BR_NO_ERROR: print "Error:", s1.errorLog() d_out.write(h_out) print h_out ************************** end ******************** Kernel code compiled to python module "kernels" imported above Attribute[GroupSize (64,1,1)] kernel void wftest2(uint2 in_s[][], out uint2 out_s[][]) { uint2 global_id = (uint2)instance ().xy; uint local_id = (uint)instanceInGroup().x; //int4 tmp = {1,2,3,4}; //uint tmp = dot(in_s[global_id.y][local_id],in_s[global_id.y][local_id]); out_s[global_id.y][global_id.x]= uint2(global_id.x,global_id.y); } kernel void wftest3(uint2 in_s[][], out uint2 out_s[][]) { uint2 global_id = (uint2)instance ().xy; //uint local_id = (uint)instanceInGroup().x; //int4 tmp = {1,2,3,4}; //uint tmp = dot(in_s[global_id.y][local_id],in_s[global_id.y][local_id]); out_s[global_id.y][global_id.x]= uint2(global_id.x,global_id.y); } kernel void wftest4(uint2 in_s<>, out uint2 out_s<>) { uint2 global_id = (uint2)instance ().xy; //uint local_id = (uint)instanceInGroup().x; //int4 tmp = {1,2,3,4}; //uint tmp = dot(in_s[global_id.y][local_id],in_s[global_id.y][local_id]); out_s= uint2(global_id.x,global_id.y); }

0 Likes