From 32ff36469c3688b44de415fb9d7e0249f1c4e55e Mon Sep 17 00:00:00 2001 From: Marcin Zalewski Date: Wed, 26 Jul 2023 14:54:40 -0700 Subject: [PATCH 01/11] Update legate.core to the PR for Legion update --- cmake/versions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/versions.json b/cmake/versions.json index 6c3aa0918f..28b447538b 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" : "ac75ac05a9056f49729797415ee489b45686a528" + "git_tag" : "pull_request/803" } } } From ba33ebbdcea72629bbcf289fb84cbc702d8a1216 Mon Sep 17 00:00:00 2001 From: Marcin Zalewski Date: Wed, 26 Jul 2023 17:06:03 -0700 Subject: [PATCH 02/11] Use commit hash --- cmake/versions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/versions.json b/cmake/versions.json index 28b447538b..75d0bd2475 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" : "pull_request/803" + "git_tag" : "e080b84ecaa52f481109f8a8c9ac171c5e2244eb" } } } From 3f7db4f0b04557873fcc01b79add873546ded27f Mon Sep 17 00:00:00 2001 From: Marcin Zalewski Date: Wed, 26 Jul 2023 20:35:40 -0700 Subject: [PATCH 03/11] Update the version of legate.core to one from the tip of the dev branch. --- cmake/versions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/versions.json b/cmake/versions.json index 75d0bd2475..344fe6cf2a 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" : "e080b84ecaa52f481109f8a8c9ac171c5e2244eb" + "git_tag" : "35d0d4bd3c9d19946ccc641ec7074b44bbae8046" } } } From 78074bb50bd9b878686ff633c914aca3d70577b8 Mon Sep 17 00:00:00 2001 From: Marcin Zalewski Date: Wed, 26 Jul 2023 20:37:04 -0700 Subject: [PATCH 04/11] Revert "Update the version of legate.core to one from the tip of the dev branch." This reverts commit 3f7db4f0b04557873fcc01b79add873546ded27f. --- cmake/versions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/versions.json b/cmake/versions.json index 344fe6cf2a..75d0bd2475 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" : "e080b84ecaa52f481109f8a8c9ac171c5e2244eb" } } } From 5cee0eb7918904c95554b44695791b61501524a6 Mon Sep 17 00:00:00 2001 From: Marcin Zalewski Date: Mon, 31 Jul 2023 15:39:51 -0700 Subject: [PATCH 05/11] Update to latest legion --- cmake/versions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/versions.json b/cmake/versions.json index 75d0bd2475..a7c3aea6e0 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" : "e080b84ecaa52f481109f8a8c9ac171c5e2244eb" + "git_tag" : "2fae6ea901e2f2b16d68cace1e321b17527bdf58" } } } From 76cdabcecc10fb4d3fff56f086be80b517f29a71 Mon Sep 17 00:00:00 2001 From: Manolis Papadakis Date: Tue, 1 Aug 2023 15:06:39 -0700 Subject: [PATCH 06/11] Try removing python signal handler, for better C++ backtraces in CI --- cmake/versions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/versions.json b/cmake/versions.json index a7c3aea6e0..e799fa6ed2 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" : "2fae6ea901e2f2b16d68cace1e321b17527bdf58" + "git_tag" : "06f9007526f578dc7262849b3381935bf0678ebc" } } } From 73664ba00d3d2aead811451fce479fc4beaa4c7f Mon Sep 17 00:00:00 2001 From: Manolis Papadakis Date: Tue, 1 Aug 2023 23:08:41 -0700 Subject: [PATCH 07/11] Remove short-form option "-p" from example scripts It conflicts with pytest's "-p no:faulthandler" --- 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 - 9 files changed, 2 insertions(+), 10 deletions(-) diff --git a/examples/black_scholes.py b/examples/black_scholes.py index 55374ea091..b92dd3fe5a 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 a0399778e1..0ac350fc71 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 c70a666c19..79af8e476f 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 90dc9a4e05..12477983fb 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 a12723d942..b5352d197b 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 a4d4c7009b..753f6dca37 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 ae84ca6da6..a2f377e3af 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 7ec3d11bae..7d77d11ea6 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 78d243ae92..399081cee1 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, From 08a1a896c20699d8a8ef1bac387744a3aa1c9f6f Mon Sep 17 00:00:00 2001 From: Marcin Zalewski Date: Wed, 2 Aug 2023 16:08:35 -0700 Subject: [PATCH 08/11] Update legate to the latest version --- cmake/versions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/versions.json b/cmake/versions.json index e799fa6ed2..e2f0f63875 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" : "06f9007526f578dc7262849b3381935bf0678ebc" + "git_tag" : "32a4e76aa3255c2ea841f16888bab3859b887b46" } } } From 96b1f61de2e66db978c80e7dac9089c6be886e66 Mon Sep 17 00:00:00 2001 From: Manolis Papadakis Date: Fri, 4 Aug 2023 09:14:50 -0700 Subject: [PATCH 09/11] Update to get AllReduce fix --- cmake/versions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/versions.json b/cmake/versions.json index e2f0f63875..d6ec2fc290 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" : "32a4e76aa3255c2ea841f16888bab3859b887b46" + "git_tag" : "86635c492f2d5e5e909abad22616f37f102c4cdb" } } } From af8b4550aa09540c2d5db565aec712f3f8c80f91 Mon Sep 17 00:00:00 2001 From: Marcin Zalewski Date: Fri, 4 Aug 2023 14:34:15 -0700 Subject: [PATCH 10/11] Update legate --- cmake/versions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/versions.json b/cmake/versions.json index a5d9a48b2e..11689cc4e4 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" : "86635c492f2d5e5e909abad22616f37f102c4cdb" + "git_tag" : "ae45bac78b888bf7043422bc73342d7cb3216829" } } } From 4997520a35294ede1279c3d2c0e8ccaa602f96f8 Mon Sep 17 00:00:00 2001 From: Marcin Zalewski Date: Tue, 8 Aug 2023 15:40:54 -0700 Subject: [PATCH 11/11] Change to the latest legate.core from the dev tree --- cmake/versions.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/versions.json b/cmake/versions.json index 11689cc4e4..9ac4a7478b 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" : "ae45bac78b888bf7043422bc73342d7cb3216829" + "git_tag" : "2fb6353407e0498f1cb2f530751b95b8cbc4ca99" } } }