-
-
Notifications
You must be signed in to change notification settings - Fork 215
Closed
Labels
Description
Comment:
xref conda-forge/pytorch-cpu-feedstock#409
PyTorch started taking a lot more space to build recently. While trying to workaround it by increasing the CIrun runner size, two problems were noticed:
- Builds are performed in
c:\bldrather than (unless I'm mistaken) the much largerd:\partition. Effectively, choosing a larger builder had no effect, since it did only increase thed:\partition which was used for miniforge but not thec:\partition which was used for build. - The partitions don't take up all the available space, so increasing the builder disk size doesn't immediately benefit the builds.
I've tried modifying the files in the feedstock to force d:\bld instead but to no avail. Instead, for now, we've used the snippet in conda-forge/pytorch-cpu-feedstock@a6b03c9 (as suggested by @aktech, thanks a lot!) to resize the c:\ partition to use the additional space available.
Could we:
- Include this (or a similar snippet) in the templates, to use all the space available in the runner?
- Look into using
d:\for build (and then resizing it instead), since it seems to be the larger partition?