Exemple #1
0
Fichier : ocl.c Projet : nasa/QuIP
static cl_mem _find_parent_buf(QSP_ARG_DECL  Data_Obj *dp, int *offset_p )
{
	int offset=0;

	while( ! OWNS_DATA(dp) ){
//fprintf(stderr,"%s does not own its data...\n",OBJ_NAME(dp));
		offset += OBJ_OFFSET(dp);	// Do we need to multiply?
//fprintf(stderr,"offset = %d\n",offset);
		dp = OBJ_PARENT(dp);
	}
//fprintf(stderr,"returning offset = %d\n",offset);
	*offset_p = offset;
//fprintf(stderr,"returning %s data ptr at 0x%lx\n",OBJ_NAME(dp),(u_long)OBJ_DATA_PTR(dp));
	return OBJ_DATA_PTR(dp);
}
Exemple #2
0
static void vl2_update_offset(QSP_ARG_DECL  Data_Obj *dp )
{
	// We don't need to SET_OBJ_OFFSET, because the child offset
	// is relative to the parent...

	// OBJ_OFFSET is in bytes, not pixels?

//fprintf(stderr,"vl2_update_offset:  obj = %s, obj_offset = 0x%x, prec_size = %d\n",
//OBJ_NAME(dp),OBJ_OFFSET(dp),PREC_SIZE(OBJ_PREC_PTR(dp)));

	// change the base pointer...
	// we originally scaled the offset by PREC_SIZE, but it appears
	// the offset is kept in bytes.
	SET_OBJ_DATA_PTR(dp,
	((char *)OBJ_DATA_PTR(OBJ_PARENT(dp)))+OBJ_OFFSET(dp) /* *PREC_SIZE(OBJ_PREC_PTR(dp))*/ );
}
Exemple #3
0
static double _get_dobj_posn(QSP_ARG_DECL  Item *ip, int index )
{
	double d=(-1);
	Data_Obj *dp;
	index_t pix_offset;
	int i;
	index_t offsets[N_DIMENSIONS];
	Data_Obj *parent;

	dp = (Data_Obj *)ip;

	// should this be an assertion?
	if( dp == NULL ) return 0.0;
	parent = OBJ_PARENT(dp);
	if( parent == NULL ) return 0.0;


	// The position is relative to the parent
	//
	// The position offsets are not stored when we create
	// a subimage, they are used to create a data ptr offset.
	// We use this offset together with the parent's shape
	// to convert back to coordinates...

	pix_offset = OBJ_OFFSET( dp );

	for(i=N_DIMENSIONS-1;i>=0;i--){
		// MACH_INC is 0 when the corresponding dimension is 1
		if( OBJ_MACH_INC(parent,i) == 0 ){
			offsets[i] = 0;
		} else {
			offsets[i] = pix_offset / OBJ_MACH_INC(parent,i);
			pix_offset -= offsets[i] * OBJ_MACH_INC(parent,i);
		}
	}

	assert( index >= 0 && index <= 1 );
	d = offsets[index+1];

	return(d);
}
Exemple #4
0
Fichier : ocl.c Projet : nasa/QuIP
static void _ocl_offset_data(QSP_ARG_DECL  Data_Obj *dp, index_t offset)
{
#ifndef USE_OPENCL_SUBREGION
	/* The original code used subBuffers, but overlapping subregions
	 * don't work...
	 * So instead we use a common memory buffer, but keep track
	 * of the starting offset (in elements).  This offset has
	 * to be passed to the kernels.
	 */

//fprintf(stderr,"ocl_offset_data:  obj %s, offset = %d\n",OBJ_NAME(dp),offset);
//fprintf(stderr,"\tparent obj %s, parent offset = %d\n",OBJ_NAME(OBJ_PARENT(dp)),
//OBJ_OFFSET(OBJ_PARENT(dp)));

	if( IS_COMPLEX(dp) ){
		assert( (offset & 1) == 0 );
		offset /= 2;
//fprintf(stderr,"Adjusted offset (%d) for complex object %s\n",offset,OBJ_NAME(dp));
	} else if( IS_QUAT(dp) ){
		assert( (offset & 3) == 0 );
		offset /= 4;
	}

	SET_OBJ_DATA_PTR(dp,OBJ_DATA_PTR(OBJ_PARENT(dp)));
	SET_OBJ_OFFSET( dp, OBJ_OFFSET(OBJ_PARENT(dp)) + offset );

#else // USE_OPENCL_SUBREGION
	cl_mem buf;
	cl_mem parent_buf;
	cl_buffer_region reg;
	cl_int status;
	int extra_offset;

	parent_buf = find_parent_buf(OBJ_PARENT(dp),&extra_offset);
	assert( parent_buf != NULL );

	reg.origin = (offset+extra_offset) * ELEMENT_SIZE(dp);

	// No - the region has to be big enough for all of the elements.
	// The safest thing is to include everything from the start
	// of the subregion to the end of the parent.  Note that this
	// cannot handle negative increments!?
	// reg.size = OBJ_N_MACH_ELTS(dp) * ELEMENT_SIZE(dp);

	//   p p p p p p p
	//   p p c c c p p
	//   p p p p p p p
	//   p p c c c p p

	reg.size =	  OBJ_SEQ_INC(dp)*(OBJ_SEQS(dp)-1)
			+ OBJ_FRM_INC(dp)*(OBJ_FRAMES(dp)-1)
			+ OBJ_ROW_INC(dp)*(OBJ_ROWS(dp)-1)
			+ OBJ_PXL_INC(dp)*(OBJ_COLS(dp)-1)
			+ OBJ_COMP_INC(dp)*(OBJ_COMPS(dp)-1)
			+ 1;
	reg.size *= ELEMENT_SIZE(dp);
//fprintf(stderr,"requesting subregion of %ld bytes at offset %ld\n",
//reg.size,reg.origin);

	buf = clCreateSubBuffer ( parent_buf,
				CL_MEM_READ_WRITE,
				CL_BUFFER_CREATE_TYPE_REGION,
		&reg,
			&status);
	if( status != CL_SUCCESS ){
		report_ocl_error(status, "clCreateSubBuffer");
		SET_OBJ_DATA_PTR(dp,OBJ_DATA_PTR(OBJ_PARENT(dp)));
	} else {
		SET_OBJ_DATA_PTR(dp,buf);
	}
	// BUG - Because this object doesn't "own" the data, the sub-buffer
	// won't be released when the object is destroyed, a possible memory
	// leak...
	// We need to add a special case, or make data releasing a
	// platform-specific function...
#endif // USE_OPENCL_SUBREGION
}