Tagged Questions

0
votes
2answers
63 views

psyco complains about unsupported opcode 54, what is it?

The Psyco log output look like this: 21:08:47.56 Logging started, 10/29/09 %%%%%%%%%%%%%%%%%%%% 21:08:47.56 unsupported opcode 54 at create_l0:124 % % …
2
votes
3answers
135 views

Does using Psyco with django make any sense ?

I know the benefits of Psyco for a Desktop app, but in a Web app where a process ( = a web page or an AJAX call) dies immediately after been fired, isn't it pointless ?
4
votes
4answers
379 views

Why does Psyco use a lot of memory?

Psyco is a specialising compiler for Python. The documentation states Psyco can and will use large amounts of memory. What are the main reasons for this memory usage? Is substantial memory …
2
votes
2answers
103 views

What are the risks (if any) of mixing Psyco into my project?

I work on a large financial pricing application in which some long running calculations. We have identified some functions which can be sped up by the selective application of psyco. My management …
0
votes
2answers
82 views

Porting a Python app that uses Psyco to Mac

I'm trying to port my Python app from Windows to Mac. My app uses Psyco. How exactly do I install Psyco on Mac? Keep in mind I'm a Mac newbie.
15
votes
7answers
672 views

Why not always use psyco for Python code?

psyco seems to be quite helpful in optimizing Python code, and it does it in a very non-intrusive way. Therefore, one has to wonder. Assuming you're always on a x86 architecture (which is where most …
2
votes
1answer
237 views

Psyco x64?

Is there a way to get the same sort of speedup on x64 architecture as you can get from psyco on 32 bit processors?