Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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