Exemplo n.º 1
0
        public new DiagnoseBase Clone()
        {
            DiagnoseBase obj = base.Clone() as DiagnoseBase;

            obj.patient  = patient.Clone();
            obj.DiagType = DiagType.Clone();
            obj.ICD10    = ICD10.Clone();
            obj.Dept     = Dept.Clone();
            obj.Doctor   = Doctor.Clone();
            return(obj);
        }
Exemplo n.º 2
0
 public static extern IntPtr cvGetDiag(IntPtr arr, IntPtr submat, DiagType diag);
Exemplo n.º 3
0
        public static extern CublasStatus cublasZtrsv_v2(CudaBlasHandle handle, FillMode uplo, Operation trans,
										 DiagType diag, int n, [In] CUdeviceptr A, int lda,
										 CUdeviceptr x, int incx);
Exemplo n.º 4
0
        public static extern CublasStatus cublasZtrsm_v2(CudaBlasHandle handle,
										SideMode side,
										FillMode uplo,
										Operation trans,
										DiagType diag,
										int m,
										int n,
										[In] CUdeviceptr alpha, //host or device pointer  
										[In] CUdeviceptr A,
										int lda,
										CUdeviceptr B,
										int ldb);
Exemplo n.º 5
0
 public static extern CublasStatus cublasZtrsmBatched( CudaBlasHandle    handle, 
                                                   SideMode  side, 
                                                   FillMode  uplo,
                                                   Operation trans, 
                                                   DiagType  diag,
                                                   int m, 
                                                   int n, 
                                                   ref cuDoubleComplex alpha, /*Host or Device Pointer*/
                                                   CUdeviceptr A, 
                                                   int lda,
                                                   CUdeviceptr B, 
                                                   int ldb,
                                                   int batchCount);
Exemplo n.º 6
0
        public static extern CublasStatus cublasCtrmm_v2(CudaBlasHandle handle,
										SideMode side,
										FillMode uplo,
										Operation trans,
										DiagType diag,
										int m,
										int n,
										[In] ref cuFloatComplex alpha, //host or device pointer  
										[In] CUdeviceptr A,
										int lda,
										[In] CUdeviceptr B,
										int ldb,
										CUdeviceptr C,
										int ldc);