Skip to content

Commit

Permalink
fix for test_k_level_condition
Browse files Browse the repository at this point in the history
  • Loading branch information
edopao committed Feb 7, 2025
1 parent 1751deb commit ba6e8c7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/gt4py/next/iterator/embedded.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import itertools
import math
import operator
import sys
import warnings

import numpy as np
Expand Down Expand Up @@ -677,7 +676,7 @@ def __float__(self):
return np.nan

def __int__(self):
return sys.maxsize
return np.iinfo(np.int32).max

def __repr__(self):
return "_UNDEFINED"
Expand Down

0 comments on commit ba6e8c7

Please sign in to comment.