Re: [Numpy-discussion] YouTrack testbed

2012-04-12 Thread william ratcliff
Has anyone tried Rietveld, Gerrit, or Phabricator? On Thu, Apr 12, 2012 at 4:05 PM, Travis Oliphant wrote: > This looks good. Maggie and Bryan are now setting up a Redmine instance > to try out how hard that is to administer.I have some experience with > Redmine and have liked what I've s

Re: [Numpy-discussion] Fortran was dead ... [was Re:rewriting NumPy code in C or C++ or similar]

2011-03-16 Thread william ratcliff
Related to this, what is the status of fwrap? Can it be used with fortran 95/2003 language features? There is a rather large code crystallographic codebase (fullprof) that is written in fortran 77 that the author has been porting to fortran 95/2003 and actually using modules for. I'd like to wri

Re: [Numpy-discussion] seeking advice on a fast string->array conversion

2010-11-20 Thread william ratcliff
Actually, I do use spec when I have synchotron experiments. But why are your files so large? On Nov 16, 2010 9:20 AM, "Darren Dale" wrote: > I am wrapping up a small package to parse a particular ascii-encoded > file format generated by a program we use heavily here at the lab. (In > the unlikely

Re: [Numpy-discussion] Compiling for free on Windows32

2009-04-15 Thread william ratcliff
Hi! What I do is make a distutils.cfg file and put in the $PYTHONHOME/Lib/distutils directory (for me, c:\python25\lib\distutils) and then it will use mingw32 for the compilation. I've attached the one I use. Cheers, William On Wed, Apr 15, 2009 at 4:06 PM, wrote: > On Wed, Apr 15, 2009 at

[Numpy-discussion] patching docs

2009-04-23 Thread william ratcliff
Hi! I'd like to suggest a patch for: numpy .core .fromnumeric .put The docstring contains: for i, val in zip(ind,v): x.flat[i]=val It should be: fo

Re: [Numpy-discussion] patching docs

2009-04-23 Thread william ratcliff
I signed up for an account as williamratcliff May I have edit rights? Thanks, William 2009/4/24 Stéfan van der Walt > Hi William > > Please sign up for an account on the docs editor at > > http://docs.scipy.org > > Regards > Stéfan > > 2009/4/24 william ratcliff

Re: [Numpy-discussion] patching docs

2009-04-24 Thread william ratcliff
, put<http://docs.scipy.org/numpy/docs/numpy.core.fromnumeric.put/#put>is roughly equivalent to: for i, val in zip(ind, v): x.flat[i] = val Am I missing something obvious cheers, William On Fri, Apr 24, 2009 at 9:43 AM, Joe Harrington wrote: > william ratcliff writes: > > &

Re: [Numpy-discussion] patching docs

2009-04-24 Thread william ratcliff
Thanks! I was up pretty late last night and wanted to make sure I hadn't missed something while sleep deprived! Cheers, William 2009/4/24 Stéfan van der Walt > 2009/4/24 william ratcliff : > > Actually, if I look here: > > http://docs.scipy.org/numpy/docs/numpy.

[Numpy-discussion] state of G3F2PY?

2009-06-16 Thread william ratcliff
Hi! I'm looking at trying to bind a rather large (>150K lines of code) crystallography library to python and would like to know what the state of F2py is. Are allocatable arrays supported? Derived types? Modules, Pointers, etc.? Is there a list somewhere? Has anyone else looked into wrapping

Re: [Numpy-discussion] state of G3F2PY?

2009-06-16 Thread william ratcliff
at 12:13 PM, Kurt Smith wrote: > On Tue, Jun 16, 2009 at 8:21 AM, william > ratcliff wrote: > > Hi! I'm looking at trying to bind a rather large (>150K lines of code) > > crystallography library to python and would like to know what the state > of > > F2py is

Re: [Numpy-discussion] Plans for Numpy 1.4.0 and scipy 0.8.0

2009-06-22 Thread william ratcliff
I haven't used it, but you might try Rational Purify from IBM as a valgrind alternative on Windows. They used to have a free trial. Btw. Are there any docs that I can read on the issues involved in fortran-c-python bindings? Anything related to gfortran (fortran 95/2003) and python in particula

Re: [Numpy-discussion] Scipy Conference 2009 Lecture Recordings

2009-07-16 Thread william ratcliff
I think for PyCon, a lot of the seminars are online for free (even for non attendees). Also, when I've run a workshop, I just asked the speakers to sign a release form to authorize distribution of videos, etc. This would be best to be agreed upon in advance. Personally, for me, conferences are m

Re: [Numpy-discussion] [ANN] Announcing the SciPy conference schedule

2009-07-17 Thread william ratcliff
A humble suggestion--for the March meeting of the american physical society, there is a roommate finder for splitting hotel rooms. This could be useful in keeping expenses down for some. There should be a way to do it without liability Cheers, William On Wed, Jul 15, 2009 at 10:13 PM, Gael V

[Numpy-discussion] A question about ctypes and numpy

2008-01-15 Thread william ratcliff
Hi! I have been having some difficulty understanding how to deal with multidimensional ndarrays in structs with ctypes. Namely, I want to the define numpy arrays in python and have them operated on in C, and have them updated on the python side. Here is a toy example: c code fragment: foo.c typ

Re: [Numpy-discussion] Numpy/Cython Google Summer of Code project idea

2008-03-07 Thread william ratcliff
Will Cython be compatible with OpenMP? I tried with weave some time back and failed miserably. Has anyone tried with ctypes? Cheers, William On Fri, Mar 7, 2008 at 12:50 PM, Christopher Barker <[EMAIL PROTECTED]> wrote: > Joris De Ridder wrote: > > Thanks. I've a few questions concerning the o