本文整理汇总了C#中GASS.CUDA.BLAS.Types.cublasHandle类的典型用法代码示例。如果您正苦于以下问题:C# cublasHandle类的具体用法?C# cublasHandle怎么用?C# cublasHandle使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
cublasHandle类属于GASS.CUDA.BLAS.Types命名空间,在下文中一共展示了cublasHandle类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: cublasDger_v2
private static extern CUBLASStatusv2 cublasDger_v2(cublasHandle handle, int m, int n, ref double alpha, IntPtr x, int incx, IntPtr y, int incy, IntPtr A, int lda);
示例2: cublasZrot
public CUBLASStatusv2 cublasZrot(cublasHandle handle, int n, IntPtr x, int incx, IntPtr y, int incy, ref double c, ref ComplexD s)
{
return cublasZrot_v2(handle, n, x, incx, y, incy, ref c, ref s);
}
示例3: cublasZrotg
public CUBLASStatusv2 cublasZrotg(cublasHandle handle, ref ComplexD a, ref ComplexD b, ref double c, ref ComplexD s)
{
return cublasZrotg_v2(handle, ref a, ref b, ref c, ref s);
}
示例4: cublasZrotg_v2
private static extern CUBLASStatusv2 cublasZrotg_v2(cublasHandle handle, ref ComplexD a, ref ComplexD b, ref double c, ref ComplexD s);
示例5: cublasZdotc
public CUBLASStatusv2 cublasZdotc(cublasHandle handle, int n, IntPtr x, int incx, IntPtr y, int incy, ref ComplexD result)
{
return cublasZdotc_v2(handle, n, x, incx, y, incy, ref result);
}
示例6: cublasCrot_v2
private static extern CUBLASStatusv2 cublasCrot_v2(cublasHandle handle, int n, IntPtr x, int incx, IntPtr y, int incy, ref float c, ref ComplexF s);
示例7: cublasZrot_v2
private static extern CUBLASStatusv2 cublasZrot_v2(cublasHandle handle, int n, IntPtr x, int incx, IntPtr y, int incy, ref double c, ref ComplexD s);
示例8: cublasDger
public CUBLASStatusv2 cublasDger(cublasHandle handle, int m, int n, ref double alpha, IntPtr x, int incx, IntPtr y, int incy, IntPtr A, int lda)
{
throw new NotImplementedException();
}
示例9: cublasDspmv
public CUBLASStatusv2 cublasDspmv(cublasHandle handle, cublasFillMode uplo, int n, ref double alpha, IntPtr ap, IntPtr x, int incx, ref double beta, IntPtr y, int incy)
{
throw new NotImplementedException();
}
示例10: cublasDsymv_v2
private static extern CUBLASStatusv2 cublasDsymv_v2(cublasHandle handle, cublasFillMode uplo, int n, ref double alpha, IntPtr A, int lda, IntPtr x, int incx, ref double beta, IntPtr y, int incy);
示例11: cublasSgemv
public CUBLASStatusv2 cublasSgemv(cublasHandle handle, cublasOperation trans, int m, int n, ref float alpha, IntPtr A, int lda, IntPtr x, int incx, ref float beta, IntPtr y, int incy)
{
throw new NotImplementedException();
}
示例12: cublasDspr2_v2
private static extern CUBLASStatusv2 cublasDspr2_v2(cublasHandle handle, cublasFillMode uplo, int n, ref double alpha, IntPtr x, int incx, IntPtr y, int incy, IntPtr ap);
示例13: cublasSspr_v2
private static extern CUBLASStatusv2 cublasSspr_v2(cublasHandle handle, cublasFillMode uplo, int n, ref float alpha, IntPtr x, int incx, IntPtr ap);
示例14: cublasSsbmv_v2
private static extern CUBLASStatusv2 cublasSsbmv_v2(cublasHandle handle, cublasFillMode uplo, int n, int k, ref float alpha, IntPtr A, int lda, IntPtr x, int incx, ref float beta, IntPtr y, int incy);
示例15: cublasZdotc_v2
private static extern CUBLASStatusv2 cublasZdotc_v2(cublasHandle handle, int n, IntPtr x, int incx, IntPtr y, int incy, ref ComplexD result);