Skip to content

Commit

Permalink
cleanup: some weight properties were leftover
Browse files Browse the repository at this point in the history
because they had a typo weigth and were not found by search-replace
  • Loading branch information
abouteiller committed Oct 25, 2023
1 parent b69c8a6 commit 9b61fe0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/zpotrf_L.jdf
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,7 @@ RW T <- (k == 0) ? ddescA(k, k) [ type = %{ return ADTT_READ(d

; (k >= (descA->mt - PRI_CHANGE)) ? (descA->mt - k) * (descA->mt - k) * (descA->mt - k) : PRI_MAX

BODY [type=CUDA
weigth=k]
BODY [type=CUDA]
{
int tempkm = k == descA->mt-1 ? descA->m - k*descA->mb : descA->mb;
int ldak = LDA(ddescA, T);
Expand Down
3 changes: 1 addition & 2 deletions src/zpotrf_U.jdf
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,7 @@ RW T <- (k == 0) ? ddescA(k, k) [ type = %{ return ADTT_READ(d

; (k >= (descA->nt - PRI_CHANGE)) ? (descA->nt - k) * (descA->nt - k) * (descA->nt - k) : PRI_MAX

BODY [type=CUDA
weigth=k]
BODY [type=CUDA]
{
int tempkn = k == descA->nt-1 ? descA->n - k*descA->nb : descA->nb;
int ldak = LDA(ddescA, T);
Expand Down

0 comments on commit 9b61fe0

Please sign in to comment.