Skip to content

Commit

Permalink
more reasonable max LUT size
Browse files Browse the repository at this point in the history
  • Loading branch information
calad0i committed Jan 19, 2024
1 parent 0be26b2 commit bc0353a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HGQ/proxy/unary_lut.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from HGQ.proxy.precision_derivation import get_input_kifs, get_produced_kif, get_result_kifRS
from HGQ.utils import apf_to_tuple, tuple_to_apf

LUT_SIZE_LIMITATION = int(os.environ.get('LUT_SIZE_LIMITATION', 2**20))
LUT_SIZE_LIMITATION = int(os.environ.get('LUT_SIZE_LIMITATION', 2**12))


class UnaryLUT(Layer):
Expand Down

0 comments on commit bc0353a

Please sign in to comment.