Visible to Intel only — GUID: GUID-45527CC5-A1B9-4769-A3D6-8A0E264A8BBC
Visible to Intel only — GUID: GUID-45527CC5-A1B9-4769-A3D6-8A0E264A8BBC
DPCT1081
Message
The generated code assumes that <pointer variable> points to the global memory address space. If it points to a local or private memory address space, replace address_space::global with address_space::local or address_space::private.
Detailed Help
Intel® DPC++ Compatibility Tool tries to deduce the address space of the memory that <pointer variable> points to. If the tool cannot deduce the address space (for example, the pointer variable is used by multiple functions), the tool will use address_space::global and the warning will be emitted.
Suggestions to Fix
Check the address space of the memory that <pointer variable> points to and replace address_space::global with the correct address space.