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 AN, int AM, float* Bp, int BN, int BM, float* Cp, int CN, int CM, 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 AN, int AM, float* Bp, int BN, int BM, float* Cp, int CN, int CM, int bs, bool transposeA = false, bool transposeB = false)
Parameters
Returns
Implements