Skip to content

Commit

Permalink
Merge pull request #106 from abouteiller/cleanup/weight-attr
Browse files Browse the repository at this point in the history
cleanup: some weight properties were leftover
  • Loading branch information
abouteiller authored Oct 25, 2023
2 parents b69c8a6 + 9b61fe0 commit 5773c44
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 5773c44

Please sign in to comment.