Skip to content

Commit

Permalink
Update to the latest Legion (#1007)
Browse files Browse the repository at this point in the history
Update legate.core SHA

---------

Co-authored-by: Manolis Papadakis <[email protected]>
Co-authored-by: Manolis Papadakis <[email protected]>
  • Loading branch information
3 people authored Aug 9, 2023
1 parent c41a47e commit 67cd9f9
Show file tree
Hide file tree
Showing 10 changed files with 3 additions and 11 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" : "35d0d4bd3c9d19946ccc641ec7074b44bbae8046"
"git_tag" : "2fb6353407e0498f1cb2f530751b95b8cbc4ca99"
}
}
}
1 change: 0 additions & 1 deletion examples/black_scholes.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ def run_black_scholes(N, D):
help="number of options to price in thousands",
)
parser.add_argument(
"-p",
"--precision",
type=int,
default=32,
Expand Down
1 change: 0 additions & 1 deletion examples/cg.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,6 @@ def run_preconditioned_cg(
help="iterations between convergence tests",
)
parser.add_argument(
"-p",
"--pre",
dest="precondition",
action="store_true",
Expand Down
1 change: 0 additions & 1 deletion examples/gemm.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ def run_gemm(N, I, warmup, ft): # noqa: E741
help="number of elements in one dimension",
)
parser.add_argument(
"-p",
"--precision",
type=int,
default=32,
Expand Down
4 changes: 2 additions & 2 deletions examples/ingest.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
nargs="+",
default=[3, 2, 2, 1],
)
parser.add_argument("-p", "--custom-partitioning", action="store_true")
parser.add_argument("-s", "--custom-sharding", action="store_true")
parser.add_argument("--custom-partitioning", action="store_true")
parser.add_argument("--custom-sharding", action="store_true")
args = parser.parse_args()
dtype = uint16
tile_shape = (1, 301, 704, 360)
Expand Down
1 change: 0 additions & 1 deletion examples/kmeans.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ def run_kmeans(C, D, T, I, N, S, benchmarking): # noqa: E741
help="number of elements in the data set in thousands",
)
parser.add_argument(
"-p",
"--precision",
type=int,
default=32,
Expand Down
1 change: 0 additions & 1 deletion examples/kmeans_slow.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ def run_kmeans(C, D, T, I, N, S, benchmarking): # noqa: E741
help="number of elements in the data set in thousands",
)
parser.add_argument(
"-p",
"--precision",
type=int,
default=32,
Expand Down
1 change: 0 additions & 1 deletion examples/kmeans_sort.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@ def run_kmeans(C, D, T, I, N, S, benchmarking): # noqa: E741
help="number of elements in the data set in thousands",
)
parser.add_argument(
"-p",
"--precision",
type=int,
default=32,
Expand Down
1 change: 0 additions & 1 deletion examples/linreg.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ def run_linear_regression(N, F, T, I, warmup, S, B): # noqa: E741
help="number of elements in the data set in thousands",
)
parser.add_argument(
"-p",
"--precision",
type=int,
default=32,
Expand Down
1 change: 0 additions & 1 deletion examples/logreg.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ def run_logistic_regression(N, F, T, I, warmup, S, B): # noqa: E741
help="number of elements in the data set in thousands",
)
parser.add_argument(
"-p",
"--precision",
type=int,
default=32,
Expand Down

0 comments on commit 67cd9f9

Please sign in to comment.