We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0b875d commit 6bfc667Copy full SHA for 6bfc667
IGC/VectorCompiler/igcdeps/src/cmc.cpp
@@ -376,7 +376,7 @@ void CMKernel::createPointerGlobalAnnotation(const KernelArgInfo &ArgInfo,
376
377
auto PtrAnnotation = std::make_unique<PointerArgumentAnnotation>();
378
379
- PtrAnnotation->IsStateless = AddrMode == ArgAddressMode::Stateless;
+ PtrAnnotation->IsStateless = AddrMode != ArgAddressMode::Bindless;
380
PtrAnnotation->IsBindlessAccess = AddrMode == ArgAddressMode::Bindless;
381
PtrAnnotation->HasStatefulAccess = AddrMode == ArgAddressMode::Stateful;
382
PtrAnnotation->AddressSpace = KERNEL_ARGUMENT_ADDRESS_SPACE_GLOBAL;
0 commit comments