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
We look at the simple case:
We place eta_f_1436234 (38:(.Idx 4294967296), eta_f_cps_cont_1436287) with the computed entry nominal main and construct the scope and scheduler.
The resulting place is main. We place the app in default fashion by moving the body of main.
To place eta_f_1436134 (_1436318, eta_f_cps_cont_1436350), we again compute the scope entry main, construct the scope, the scheduler.
But the scheduler suggests the place main resulting in the wrong order above.
The correct place would be eta_f_cps_cont_1436287 as the tuple requires the argument _1436318 of eta_f_cps_cont_1436287.
Code used to place:
// entry is computedScopescope(entry);Schedulersched_(scope);
auto place = sched_.smart(app);
The text was updated successfully, but these errors were encountered:
The generated code is:
First we start with
We look at the simple case:
We place
eta_f_1436234 (38:(.Idx 4294967296), eta_f_cps_cont_1436287)
with the computed entry nominalmain
and construct the scope and scheduler.The resulting place is
main
. We place the app in default fashion by moving the body of main.To place
eta_f_1436134 (_1436318, eta_f_cps_cont_1436350)
, we again compute the scope entrymain
, construct the scope, the scheduler.But the scheduler suggests the place main resulting in the wrong order above.
The correct place would be
eta_f_cps_cont_1436287
as the tuple requires the argument_1436318
ofeta_f_cps_cont_1436287
.Code used to place:
The text was updated successfully, but these errors were encountered: