straight-action-80318
03/28/2023, 9:51 PMFailed to digest inputs: "Error storing Digest: Input/output error"
. My understanding is this comes from my Pex file being too large. Is there a good way to debug/understand how big the things going into it are? I assume that this is because I’m using a GPU version of PyTorch which is a massive whl
witty-crayon-22786
03/28/2023, 9:52 PMstraight-action-80318
03/28/2023, 10:01 PMwitty-crayon-22786
03/28/2023, 10:02 PMpants package
in particular, the solution is generally to switch from using a monolithic pex
file to using the packed
layout: https://www.pantsbuild.org/docs/reference-pex_binary#codelayoutcodepacked
layout is preferable anyway when your deploy binary gets this large.straight-action-80318
03/28/2023, 11:53 PM