You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to use a float shared memory variable (replace int by float in SharedMemory sample)
static void SharedMemoryVariableKernel(
GroupedIndex index, // The grouped thread index (1D in this case)
ArrayView<int> dataView, // A view to a chunk of memory (1D in this case)
ArrayView<int> outputView) // A view to a chunk of memory (1D in this case)
{
// Compute the global 1D index for accessing the data view
var globalIndex = index.ComputeGlobalIndex();
// 'Allocate' a single shared memory variable of type float
ref float sharedVariable = ref ILGPU.SharedMemory.Allocate<float>();
...
This lead to an exception (only for OpenCL)
NotSupportedIntrinsicException : The function 'IsNaNF' does not have an intrinsic implementation for this backend. 'EnableAlgorithms' from the Algorithms library not invoked?
The text was updated successfully, but these errors were encountered:
The latest OpenCL backend updates should solve this problem. I will close this issue for now. If the problem persists in a future release, please reopen this issue or create another bug report.
I tried to use a float shared memory variable (replace int by float in SharedMemory sample)
This lead to an exception (only for OpenCL)
The text was updated successfully, but these errors were encountered: