From 11c994f422eb9e6c7aa1b45bb95cff6fb04fb52f Mon Sep 17 00:00:00 2001 From: Phillis Tang Date: Tue, 23 Jul 2024 12:35:04 -0700 Subject: [PATCH] Update dimension valid range to signed integer --- index.bs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.bs b/index.bs index 8230e000..22f53d32 100644 --- a/index.bs +++ b/index.bs @@ -1071,7 +1071,7 @@ dictionary MLOperandDescriptor {

-A valid dimension is an integer greater than zero in the range of {{unsigned long}}. Implementations may impose a smaller upper bound. +A valid dimension is an integer greater than zero and in the range of {{long}}. Implementations may impose a smaller upper bound.

Issue(391): Should 0-size dimensions be supported?