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
As of 4e8e027, I cannot run this testscript, as it doesn't deal well with commands that never finish. Below is me running the same file.cue file with the old and new evaluator manually, with timings:
$ time CUE_EXPERIMENT=evalv3=0 cue export repro.cue; echo --; time CUE_EXPERIMENT=evalv3=1 cue export repro.cue
{
"out": "foo"
}
real 0m0.014s
user 0m0.007s
sys 0m0.009s
--
^C
real 0m17.613s
user 0m52.158s
sys 0m3.985s
Note that I had to kill the new evaluator run at about 25GiB of memory used, so that it wouldn't start forcing my laptop to use swap memory.
The text was updated successfully, but these errors were encountered:
We know from the cycle algorithm that inline and
non-rooted structs/lists should get the same treatment
as regular fields. This is a first step in removing
their discrepancies.
To avoid some test breakages, we had to move where
the unification of shared structures was done.
This indeed seems to be a more sensible spot.
Issue cue-lang#3476
Issue cue-lang#2850
Issue cue-lang#2854Fixescue-lang#3509
Signed-off-by: Marcel van Lohuizen <mpvl@gmail.com>
Change-Id: Ic26cb31f207d7be0209d01bad5c6df3130251e2f
Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/1202269
Unity-Result: CUE porcuepine <cue.porcuepine@gmail.com>
Reviewed-by: Matthew Sackman <matthew@cue.works>
TryBot-Result: CUEcueckoo <cueckoo@cuelang.org>
As of 4e8e027, I cannot run this testscript, as it doesn't deal well with commands that never finish. Below is me running the same
file.cue
file with the old and new evaluator manually, with timings:Note that I had to kill the new evaluator run at about 25GiB of memory used, so that it wouldn't start forcing my laptop to use swap memory.
The text was updated successfully, but these errors were encountered: