From 67cd9f9dcaf15ac6e868539a9c47c23fa7829cde Mon Sep 17 00:00:00 2001 From: Marcin Zalewski Date: Wed, 9 Aug 2023 02:22:38 -0700 Subject: [PATCH] Update to the latest Legion (#1007) Update legate.core SHA --------- Co-authored-by: Manolis Papadakis Co-authored-by: Manolis Papadakis --- cmake/versions.json | 2 +- examples/black_scholes.py | 1 - examples/cg.py | 1 - examples/gemm.py | 1 - examples/ingest.py | 4 ++-- examples/kmeans.py | 1 - examples/kmeans_slow.py | 1 - examples/kmeans_sort.py | 1 - examples/linreg.py | 1 - examples/logreg.py | 1 - 10 files changed, 3 insertions(+), 11 deletions(-) diff --git a/cmake/versions.json b/cmake/versions.json index b5842f7c7..9ac4a7478 100644 --- a/cmake/versions.json +++ b/cmake/versions.json @@ -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" } } } diff --git a/examples/black_scholes.py b/examples/black_scholes.py index 55374ea09..b92dd3fe5 100644 --- a/examples/black_scholes.py +++ b/examples/black_scholes.py @@ -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, diff --git a/examples/cg.py b/examples/cg.py index a0399778e..0ac350fc7 100644 --- a/examples/cg.py +++ b/examples/cg.py @@ -236,7 +236,6 @@ def run_preconditioned_cg( help="iterations between convergence tests", ) parser.add_argument( - "-p", "--pre", dest="precondition", action="store_true", diff --git a/examples/gemm.py b/examples/gemm.py index c70a666c1..79af8e476 100644 --- a/examples/gemm.py +++ b/examples/gemm.py @@ -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, diff --git a/examples/ingest.py b/examples/ingest.py index 90dc9a4e0..12477983f 100644 --- a/examples/ingest.py +++ b/examples/ingest.py @@ -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) diff --git a/examples/kmeans.py b/examples/kmeans.py index a12723d94..b5352d197 100644 --- a/examples/kmeans.py +++ b/examples/kmeans.py @@ -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, diff --git a/examples/kmeans_slow.py b/examples/kmeans_slow.py index a4d4c7009..753f6dca3 100644 --- a/examples/kmeans_slow.py +++ b/examples/kmeans_slow.py @@ -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, diff --git a/examples/kmeans_sort.py b/examples/kmeans_sort.py index ae84ca6da..a2f377e3a 100644 --- a/examples/kmeans_sort.py +++ b/examples/kmeans_sort.py @@ -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, diff --git a/examples/linreg.py b/examples/linreg.py index 7ec3d11ba..7d77d11ea 100644 --- a/examples/linreg.py +++ b/examples/linreg.py @@ -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, diff --git a/examples/logreg.py b/examples/logreg.py index 78d243ae9..399081cee 100644 --- a/examples/logreg.py +++ b/examples/logreg.py @@ -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,