Re: python 2.5 and 3gb switch



no sir nothing spectacular like that,
I'll explain further -
The .blend file I have is 550mb
It originates from 13,000+ meshes imported from Solidworks ( 3d CAD program)
of a piece of machinery. A python script was used for this purpose -it also
performed some other tasks on the meshes like matching materials from a
library and identifying sharp edges for normals in the renderer.
This part was not a problem - the commit space reached 2,4 gb
The next step is to export it in parts of about 2 million faces each in a
file format Indigo uses.
I need to save and reopen to unload commit space to do that... this means I
have about 1.4gb commit.
If I start the export script it will run fine until just about the end -
this consumes another 700mb - ( I have the max MS recommends -2.9gb- set in
the 3gb switch to play with and I actually know this is the limit cos I've
hit that too..)
Right at this point I still have 800mb available but here's the kicker - It
needs about the same 550mb to complete the save.I know this from previous
work on lesser files.
This is where python gives 'memerror'. Although the space is there it wont
use it.
I believe I should be using Python that is 3gb enabled as well
This is the same error I ran across doing smaller tasks without the switch
btw Blender does not crash.
HTH
Neil


.



Relevant Pages

  • Re: My only complaint about Python
    ... >> who dont have access to VS to get involved with Python development? ... >Very few Python contributors have access to VS, ... >since most aren't running on Windows either. ... IMO a python script that created the whole thing from sources (well, ok, not including bootstrapping ...
    (comp.lang.python)
  • Re: perl to python
    ... > Kirk> on being explicit rather than implicit. ... > python script that evals the passed expression string in the loop. ... > Kirk> command line. ...
    (comp.lang.python)
  • Re: How to pipe from python script to system process that script starts
    ... What I want to do in this specific instance is use a python script to call exipick to find all frozen messages in the Exim queue, then feed the message id's to something such as "exim -Mvh" so I can look at the message headers. ... So far I've been able to get everything working except for how to get my python script to be able to pass the message id's to the exim command as the needed single parameter. ...
    (Debian-User)
  • Re: recursive function call
    ... > I have in my python script a function that look like this: ... for a in arg2: ... advantage/drawback that nested lists are ...
    (comp.lang.python)
  • Re: Shebang or Hashbang for modules or not?
    ... What I meant here is that you don't technically need the shebang and x bit to allow execution of a Python file. ... More seriously, and as far as I'm concerned, when I want to make a python script available as a unix command, I either use a symlink or a shell script calling the python script. ... But one is always usefull, while the other is either totally useless or only partially useful. ...
    (comp.lang.python)