On Wed, Oct 4, 2017 at 10:31 PM Sebastian Schoellhammer < [email protected]> wrote:
> Hello list, > > we do some heavy baking via arnold's render to texture in maya. > > Maya had the habit to run out of mem or hang so I'm now batching those > bakes by running a new instance of maya each time using subprocess.popen > > I've noticed that it's just taking up just one core now though :/ . > Is this a limitation of popen or something else I'm missing here? > It likely won't be caused by Popen. That is just a standard fork and exec for a new process. It will likely be a factor of the command and its options for choosing how to thread. > > Thanks a lot in advance! > > seb > > > -- > Sebastian Schoellhammer > > w <http://www.sebscorner.org>ww.mokumedia.de <http://www.mokumedia.de> > > -- > You received this message because you are subscribed to the Google Groups > "Python Programming for Autodesk Maya" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/python_inside_maya/CAMLepcbqjh9YTP%2Bk-doVhmsOwbM_43tOMSbLk-EnCXO9ajLoGw%40mail.gmail.com > <https://groups.google.com/d/msgid/python_inside_maya/CAMLepcbqjh9YTP%2Bk-doVhmsOwbM_43tOMSbLk-EnCXO9ajLoGw%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAPGFgA2_LwcWKG15RjZSg%2BTQun_YdWpcEw979AgWuoC3bKhBRA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
