From 6dd65f3e0442a90dcf14c786f0b5223d4f3871be Mon Sep 17 00:00:00 2001 From: Philip Mueller Date: Tue, 28 May 2024 13:12:03 +0200 Subject: [PATCH] Added a todo. --- src/jace/stages.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/jace/stages.py b/src/jace/stages.py index 52a44fc..020eebc 100644 --- a/src/jace/stages.py +++ b/src/jace/stages.py @@ -110,9 +110,9 @@ def lower( if len(kwargs) != 0: raise NotImplementedError("Currently only positional arguments are supported.") - # Currently the SDFG that we build only supports `C_CONTIGUOUS` memory order. - # Since we support the paradigm that "everything passed to `lower` should also be - # accepted as argument to call the result", we forbid other memory orders here. + # TODO(phimuell): Currently the SDFG that we build only supports `C_CONTIGUOUS` memory + # order. Since we support the paradigm that "everything passed to `lower` should also + # be accepted as argument to call the result", we forbid other memory orders here. if not all((not util.is_array(arg)) or arg.flags["C_CONTIGUOUS"] for arg in args): raise NotImplementedError("Currently can not handle strides beside 'C_CONTIGUOUS'.")