This repository was archived by the owner on Mar 12, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +10
-0
lines changed Expand file tree Collapse file tree 5 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Base.showerror(io::IO, err::CUBLASError) =
11
11
12
12
name (err:: CUBLASError ) = string (err. code)
13
13
14
+ # # COV_EXCL_START
14
15
function description (err)
15
16
if err. code == CUBLAS_STATUS_SUCCESS
16
17
" the operation completed successfully"
@@ -36,6 +37,7 @@ function description(err)
36
37
" no description for this error"
37
38
end
38
39
end
40
+ # # COV_EXCL_STOP
39
41
40
42
41
43
# # API call wrapper
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Base.showerror(io::IO, err::CUFFTError) =
11
11
12
12
name (err:: CUFFTError ) = string (err. code)
13
13
14
+ # # COV_EXCL_START
14
15
function description (err:: CUFFTError )
15
16
if err. code == CUFFT_SUCCESS
16
17
" the operation completed successfully"
@@ -50,6 +51,7 @@ function description(err::CUFFTError)
50
51
" no description for this error"
51
52
end
52
53
end
54
+ # # COV_EXCL_STOP
53
55
54
56
55
57
# # API call wrapper
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Base.showerror(io::IO, err::CURANDError) =
11
11
12
12
name (err:: CURANDError ) = string (err. code)
13
13
14
+ # # COV_EXCL_START
14
15
function description (err)
15
16
if err. code == CURAND_STATUS_SUCCESS
16
17
" generator was created successfully"
@@ -42,6 +43,7 @@ function description(err)
42
43
" no description for this error"
43
44
end
44
45
end
46
+ # # COV_EXCL_STOP
45
47
46
48
47
49
# # API call wrapper
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Base.showerror(io::IO, err::CUSOLVERError) =
11
11
12
12
name (err:: CUSOLVERError ) = string (err. code)
13
13
14
+ # # COV_EXCL_START
14
15
function description (err)
15
16
if err. code == CUSOLVER_STATUS_SUCCESS
16
17
" the operation completed successfully"
@@ -32,6 +33,7 @@ function description(err)
32
33
" no description for this error"
33
34
end
34
35
end
36
+ # # COV_EXCL_STOP
35
37
36
38
37
39
# # API call wrapper
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Base.showerror(io::IO, err::CUTENSORError) =
11
11
12
12
name (err:: CUTENSORError ) = unsafe_string (cutensorGetErrorString (err))
13
13
14
+ # # COV_EXCL_START
14
15
function description (err:: CUTENSORError )
15
16
if err. code == CUTENSOR_STATUS_SUCCESS
16
17
" the operation completed successfully"
@@ -44,6 +45,7 @@ function description(err::CUTENSORError)
44
45
" no description for this error"
45
46
end
46
47
end
48
+ # # COV_EXCL_STOP
47
49
48
50
49
51
# # API call wrapper
You can’t perform that action at this time.
0 commit comments