Class BurstBLAS
Burst specific BLAS implementation
Assembly: Unity.Barracuda.BurstBLAS.dll
Syntax
[Preserve]
public class BurstBLAS : BLASPlugin
Methods
Declaration
public bool IsCurrentPlatformSupported()
Returns
IsNative()
Declaration
Returns
SGEMM(float*, int, int, float*, int, int, float*, int, int, int, bool, bool)
Declaration
public void SGEMM(float* Ap, int AM, int AN, float* Bp, int BM, int BN, float* Cp, int CM, int CN, int bs, bool transposeA = false, bool transposeB = false)
Parameters
ScheduleSGEMM(JobHandle, float*, int, int, float*, int, int, float*, int, int, int, bool, bool)
Declaration
public JobHandle ScheduleSGEMM(JobHandle dependsOn, float* Ap, int AM, int AN, float* Bp, int BM, int BN, float* Cp, int CM, int CN, int bs, bool transposeA = false, bool transposeB = false)
Parameters
Returns
Implements