Skip to content

Commit

Permalink
Fix syntax error in examples/hpl.jl
Browse files Browse the repository at this point in the history
Removed spaces to fix syntax error in examples/hpl.jl from `size (A, 1)` to `size(A,1)`
  • Loading branch information
zhmz90 committed Jun 5, 2016
1 parent 37cc5e6 commit 813ded6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/hpl.jl
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ end ## hpl()
### Panel factorization ###

function panel_factor_seq(A, I, col_dep)
n = size (A, 1)
n = size(A, 1)

## Enforce dependencies
#wait(col_dep)
Expand All @@ -70,7 +70,7 @@ end ## panel_factor_seq()
### Trailing update ###

function trailing_update_seq(A, I, J, panel_p, row_dep, col_dep)
n = size (A, 1)
n = size(A, 1)

## Enforce dependencies
#wait(row_dep, col_dep)
Expand Down

0 comments on commit 813ded6

Please sign in to comment.