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
since #19743 was merged, we now have feature completeness for pipelining,
however if pipelining is enabled, we currently block the main compiler thread until all the TASTy files are written, which imposes some performance hit.
for optimum throughput, we should write the files (and notify Zinc) asynchronously.
then at some later point in the compiler (say backend) we can assume the files were likely to have been written by that point, join the thread and report any errors.
The text was updated successfully, but these errors were encountered:
since #19743 was merged, we now have feature completeness for pipelining,
however if pipelining is enabled, we currently block the main compiler thread until all the TASTy files are written, which imposes some performance hit.
for optimum throughput, we should write the files (and notify Zinc) asynchronously.
then at some later point in the compiler (say backend) we can assume the files were likely to have been written by that point, join the thread and report any errors.
The text was updated successfully, but these errors were encountered: