Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Chameleon
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
AGULLO Emmanuel
Chameleon
Commits
cc2a3552
Commit
cc2a3552
authored
Nov 08, 2018
by
Mathieu Faverge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Silent warning for unused variables
parent
f39c61b6
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
24 deletions
+2
-24
cudablas/compute/cuda_ztsmlq.c
cudablas/compute/cuda_ztsmlq.c
+0
-9
cudablas/compute/cuda_ztsmqr.c
cudablas/compute/cuda_ztsmqr.c
+1
-3
cudablas/compute/cuda_zttmlq.c
cudablas/compute/cuda_zttmlq.c
+0
-9
cudablas/compute/cuda_zttmqr.c
cudablas/compute/cuda_zttmqr.c
+1
-3
No files found.
cudablas/compute/cuda_ztsmlq.c
View file @
cc2a3552
...
@@ -33,7 +33,6 @@ int CUDA_ztsmlq(
...
@@ -33,7 +33,6 @@ int CUDA_ztsmlq(
CUBLAS_STREAM_PARAM
)
CUBLAS_STREAM_PARAM
)
{
{
int
i
,
i1
,
i3
;
int
i
,
i1
,
i3
;
int
NW
;
int
kb
;
int
kb
;
int
ic
=
0
;
int
ic
=
0
;
int
jc
=
0
;
int
jc
=
0
;
...
@@ -45,14 +44,6 @@ int CUDA_ztsmlq(
...
@@ -45,14 +44,6 @@ int CUDA_ztsmlq(
return
-
1
;
return
-
1
;
}
}
/* NW is the minimum dimension of WORK */
if
(
side
==
ChamLeft
)
{
NW
=
IB
;
}
else
{
NW
=
N1
;
}
if
((
trans
!=
ChamNoTrans
)
&&
(
trans
!=
ChamConjTrans
))
{
if
((
trans
!=
ChamNoTrans
)
&&
(
trans
!=
ChamConjTrans
))
{
return
-
2
;
return
-
2
;
}
}
...
...
cudablas/compute/cuda_ztsmqr.c
View file @
cc2a3552
...
@@ -33,7 +33,7 @@ int CUDA_ztsmqr(
...
@@ -33,7 +33,7 @@ int CUDA_ztsmqr(
CUBLAS_STREAM_PARAM
)
CUBLAS_STREAM_PARAM
)
{
{
int
i
,
i1
,
i3
;
int
i
,
i1
,
i3
;
int
NQ
,
NW
;
int
NQ
;
int
kb
;
int
kb
;
int
ic
=
0
;
int
ic
=
0
;
int
jc
=
0
;
int
jc
=
0
;
...
@@ -48,11 +48,9 @@ int CUDA_ztsmqr(
...
@@ -48,11 +48,9 @@ int CUDA_ztsmqr(
/* NQ is the order of Q */
/* NQ is the order of Q */
if
(
side
==
ChamLeft
)
{
if
(
side
==
ChamLeft
)
{
NQ
=
M2
;
NQ
=
M2
;
NW
=
IB
;
}
}
else
{
else
{
NQ
=
N2
;
NQ
=
N2
;
NW
=
M1
;
}
}
if
((
trans
!=
ChamNoTrans
)
&&
(
trans
!=
ChamConjTrans
))
{
if
((
trans
!=
ChamNoTrans
)
&&
(
trans
!=
ChamConjTrans
))
{
...
...
cudablas/compute/cuda_zttmlq.c
View file @
cc2a3552
...
@@ -33,7 +33,6 @@ int CUDA_zttmlq(
...
@@ -33,7 +33,6 @@ int CUDA_zttmlq(
CUBLAS_STREAM_PARAM
)
CUBLAS_STREAM_PARAM
)
{
{
int
i
,
i1
,
i3
;
int
i
,
i1
,
i3
;
int
NW
;
int
kb
,
l
;
int
kb
,
l
;
int
ic
=
0
;
int
ic
=
0
;
int
jc
=
0
;
int
jc
=
0
;
...
@@ -47,14 +46,6 @@ int CUDA_zttmlq(
...
@@ -47,14 +46,6 @@ int CUDA_zttmlq(
return
-
1
;
return
-
1
;
}
}
/* NQ is the order of Q */
if
(
side
==
ChamLeft
)
{
NW
=
IB
;
}
else
{
NW
=
N1
;
}
if
((
trans
!=
ChamNoTrans
)
&&
(
trans
!=
ChamConjTrans
))
{
if
((
trans
!=
ChamNoTrans
)
&&
(
trans
!=
ChamConjTrans
))
{
return
-
2
;
return
-
2
;
}
}
...
...
cudablas/compute/cuda_zttmqr.c
View file @
cc2a3552
...
@@ -33,7 +33,7 @@ int CUDA_zttmqr(
...
@@ -33,7 +33,7 @@ int CUDA_zttmqr(
CUBLAS_STREAM_PARAM
)
CUBLAS_STREAM_PARAM
)
{
{
int
i
,
i1
,
i3
;
int
i
,
i1
,
i3
;
int
NQ
,
NW
;
int
NQ
;
int
kb
,
l
;
int
kb
,
l
;
int
ic
=
0
;
int
ic
=
0
;
int
jc
=
0
;
int
jc
=
0
;
...
@@ -50,11 +50,9 @@ int CUDA_zttmqr(
...
@@ -50,11 +50,9 @@ int CUDA_zttmqr(
/* NQ is the order of Q */
/* NQ is the order of Q */
if
(
side
==
ChamLeft
)
{
if
(
side
==
ChamLeft
)
{
NQ
=
M2
;
NQ
=
M2
;
NW
=
IB
;
}
}
else
{
else
{
NQ
=
N2
;
NQ
=
N2
;
NW
=
M1
;
}
}
if
((
trans
!=
ChamNoTrans
)
&&
(
trans
!=
ChamConjTrans
))
{
if
((
trans
!=
ChamNoTrans
)
&&
(
trans
!=
ChamConjTrans
))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment