Enum IssueType
- Namespace
- DotCompute.Abstractions.Types
- Assembly
- DotCompute.Abstractions.dll
Defines the types of memory coalescing issues that can be identified.
public enum IssueType
Fields
BankConflict = 5Shared memory bank conflicts are occurring.
Divergence = 6Thread divergence is causing inefficient memory access.
Misalignment = 1Memory access is not properly aligned to cache line boundaries.
None = 0No issues detected.
RandomAccess = 4Memory access pattern is random or unpredictable.
SmallElements = 3Element size is too small for efficient memory transactions.
StridedAccess = 2Memory access pattern has a stride greater than 1.
UncoalescedAccess = 7Uncoalesced global memory access.