Nexus/Library/PackageCache/com.unity.burst@21aa83e7fd8f/Runtime/CompilerServices/SPMD.cs

16 lines
391 B
C#
Raw Permalink Normal View History

2026-01-06 17:23:00 +01:00
using System;
namespace Unity.Burst.CompilerServices.Spmd
{
/// <summary>
/// Specifies that multiple calls to a method act as if they are
/// executing in a Single Program, Multiple Data (SPMD) paradigm.
/// </summary>
#if UNITY_BURST_EXPERIMENTAL_SPMD_ATTRIBUTE
[AttributeUsage(AttributeTargets.Method)]
public class SpmdAttribute : Attribute
{
}
#endif
}