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
22f36ffb
Commit
22f36ffb
authored
Apr 05, 2017
by
Mathieu Faverge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix corner case where we have a full TT operation
parent
b89c9744
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
compute/pztpgqrt.c
compute/pztpgqrt.c
+1
-1
compute/pztpqrt.c
compute/pztpqrt.c
+1
-1
No files found.
compute/pztpgqrt.c
View file @
22f36ffb
...
...
@@ -58,7 +58,7 @@ void morse_pztpgqrt( int L,
int
ib
,
minMT
;
/* Dimension of the first column */
int
maxm
=
Q2
->
m
-
L
;
int
maxm
=
chameleon_max
(
Q2
->
m
-
L
,
1
)
;
int
maxmt
=
(
maxm
%
Q2
->
mb
==
0
)
?
(
maxm
/
Q2
->
mb
)
:
(
maxm
/
Q2
->
mb
+
1
);
int
maxmtk
;
...
...
compute/pztpqrt.c
View file @
22f36ffb
...
...
@@ -45,7 +45,7 @@ void morse_pztpqrt( int L, MORSE_desc_t *A, MORSE_desc_t *B, MORSE_desc_t *T,
int
ib
;
/* Dimension of the first column */
int
maxm
=
B
->
m
-
L
;
int
maxm
=
chameleon_max
(
B
->
m
-
L
,
1
)
;
int
maxmt
=
(
maxm
%
B
->
mb
==
0
)
?
(
maxm
/
B
->
mb
)
:
(
maxm
/
B
->
mb
+
1
);
morse
=
morse_context_self
();
...
...
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