user3262424
user3262424

Reputation: 7479

Python: 64bit Numpy?

I am currently working with numpy on a 32bit system (Ubuntu 10.04 LTS).

Can I expect my code to work fluently, in the same manner, on a 64bit (Ubuntu) system?

Does numpy have an compatibility issues with 64bit python?

Upvotes: 1

Views: 2560

Answers (2)

VolkA
VolkA

Reputation: 36711

There are official Ubuntu packages and the installation instructions explicitly mention AMD64 as a target plattform: Installing SciPy/Linux.

The code uses type identifiers with exact size definitions (e.g. "float64") internally, so the code will also be portable between plattforms. You should notice a performance impact for the better or worse depending on the type of algorithms you run.

Upvotes: 2

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 798744

NumPy has been used on 64-bit systems of all types for years now. I doubt you will find anything new that doesn't show up elsewhere as well.

Upvotes: 4

Related Questions