From a11b097bdde4c3234920aaa6df58b94e51b8b651 Mon Sep 17 00:00:00 2001 From: Hannes Vogt Date: Tue, 14 Nov 2023 14:38:15 +0000 Subject: [PATCH] fix constructors.empty doctest --- src/gt4py/next/constructors.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/gt4py/next/constructors.py b/src/gt4py/next/constructors.py index c64adc30d8..30ef8452aa 100644 --- a/src/gt4py/next/constructors.py +++ b/src/gt4py/next/constructors.py @@ -78,10 +78,6 @@ def empty( >>> from gt4py._core import definitions as core_defs >>> JDim = gtx.Dimension("J") >>> b = gtx.empty({IDim: 3, JDim: 3}, int, device=core_defs.Device(core_defs.DeviceType.CPU, 0)) - >>> b.ndarray - array([[0, 0, 0], - [0, 0, 0], - [0, 0, 0]]) >>> b.shape (3, 3) """