Skip to content

Commit

Permalink
Use the right type for scalar arguments (#942)
Browse files Browse the repository at this point in the history
* Use the right type for scalar arguments

* Bump Legate Core version
  • Loading branch information
magnatelee authored May 30, 2023
1 parent bcaa348 commit c063753
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmake/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"git_url" : "https://github.com/nv-legate/legate.core.git",
"git_shallow": false,
"always_download": false,
"git_tag" : "afdf183ad054caa262825742bd4f48e66274f883"
"git_tag" : "fff8f3c98fd087f05123590bf07e1dcd321a46f1"
}
}
}
4 changes: 2 additions & 2 deletions cunumeric/linalg/cholesky.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def transpose_copy_single(
task.add_input(input)
# Output has the same shape as input, but is mapped
# to a column major instance
task.add_scalar_arg(False, ty.int32)
task.add_scalar_arg(False, ty.bool_)

task.add_broadcast(output)
task.add_broadcast(input)
Expand All @@ -62,7 +62,7 @@ def transpose_copy(
task.add_input(p_input)
# Output has the same shape as input, but is mapped
# to a column major instance
task.add_scalar_arg(False, ty.int32)
task.add_scalar_arg(False, ty.bool_)

task.execute()

Expand Down

0 comments on commit c063753

Please sign in to comment.