我正在编写一个 OpenCL 程序,并在构建时收到此错误:
Build Log:
ptxas application ptx input, line 268; error : State space mismatch between instruction and address in instruction 'ld'
ptxas application ptx input, line 269; error : State space mismatch between instruction and address in instruction 'ld'
ptxas application ptx input, line 270; error : State space mismatch between instruction and address in instruction 'ld'
ptxas application ptx input, line 271; error : State space mismatch between instruction and address in instruction 'ld'
....(same error on several more lines)
相应的 ptx 行(自动生成)是:
ld.local.u32 %r1913, [demands$inst_to_cust+16];
ld.local.u32 %rl10, [demands$inst_to_cust+12];
ld.local.u32 %rl12, [demands$inst_to_cust+8];
ld.local.u32 %rl14, [demands$inst_to_cust+4];
ld.local.u32 %rl16, [demands$inst_to_cust];
这是我编写的函数:
int
demands(cl_ushort ball, cl_ushort bin,
__global const struct problem *problem,
__constant const struct demand *demand,
const cl_ushort soln[BALL_MAXNUM],
struct demand_op ops[DEMAND_MAXOPS],
__global cl_ushort debug_data[DEBUG_LEN])
{
int i, k = demand->data[0];
int serv_to_rack[] = {0, 1, 1};
int inst_to_cust[] = {0, 0, 0, 1, 1};
int maxinst_per_rack[] = {2, 1};
int cust_num = inst_to_cust[ball];
int max = ball, min = ball, count = 1;
int max_in_rack = maxinst_per_rack[cust_num];
for (i = ball; i < NUM_BALLS; i++) {
if (inst_to_cust[i] == ball) max = i;
else break;
}
.....
}
错误的原因是什么?如何解决?