Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的代码中,当我调用 findMax 函数时,索引变量无法定义,但 max,我可以定义并工作。我因此尝试使用不同的名称,但不起作用。什么是问题?
即使您禁用所有优化,CUDA 编译器也会执行一些优化。index在设备函数 findMax 中没有副作用,因此编译器消除了该变量。
index