You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I create and load a module containing a single very large hex literal, it takes a very long time to load: about 5 minutes on my new fast machine for a size on the order of half a million bits. The running time seems to be (at least) quadratic in the length.
module Test where
x : [500000]
x = 0x3a1c27d9ef018b....
(Why do I want to load such files? The idea is to generate modules like this from binary files, as a workaround for issue #137.)
The text was updated successfully, but these errors were encountered:
If I create and load a module containing a single very large hex literal, it takes a very long time to load: about 5 minutes on my new fast machine for a size on the order of half a million bits. The running time seems to be (at least) quadratic in the length.
(Why do I want to load such files? The idea is to generate modules like this from binary files, as a workaround for issue #137.)
The text was updated successfully, but these errors were encountered: