RE: Python syntax question

2008-10-08 Thread Blubaugh, David A.
Sir,

I was just wondering that the module that you are utilizing (Rpyc) is a remote 
process call module for python?  Is this what you are developing with at this 
time? 

Thanks,


David Blubaugh

 

-Original Message-
From: Daniel [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, October 08, 2008 3:11 PM
To: python-list@python.org
Subject: Re: Python syntax question

On Oct 8, 12:07 pm, Marc 'BlackJack' Rintsch [EMAIL PROTECTED] wrote:
 On Wed, 08 Oct 2008 11:02:49 -0700, Daniel wrote:
  Here is one error I get when I try to import it:

  import Rpyc
  Traceback (most recent call last):
    File stdin, line 1, in module
    File C:\Python25\lib\site-packages\Rpyc\__init__.py, line 7, in 
  module
      from Rpyc.Lib import rpyc_excepthook
    File C:\Python25\lib\site-packages\Rpyc\Lib.py, line 65
      print(=== Remote traceback ===, file=stderr)
                                                    ^
  SyntaxError: invalid syntax

  The little carrot points to the equal sign ('=') in 'file=stderr'

  What's the syntax problem?

 That's Python 3.0 syntax where ``print`` is not a keyword anymore but 
 a function.  Won't work with Python 2.5.

 Ciao,
         Marc 'BlackJack' Rintsch

Thanks!  With that I was able to find a solution.


This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


RE: When Python should not be used?

2008-10-06 Thread Blubaugh, David A.
Stef,

May I see your open-source version of a combined Matlab + Labview
program?  Is there a website, I may visit??  


Thanks,


David Blubaugh


 

-Original Message-
From: Stef Mientki [mailto:[EMAIL PROTECTED] 
Sent: Monday, October 06, 2008 2:07 PM
To: python-list@python.org
Subject: Re: When Python should not be used?

Andrea Francia wrote:
 The right tool depends on the current problem.

 While some python users prefer to talk about when Python is the right 
 tool I think that it is more instructive to know when it is not.

 Please, could you let me know what do you think about that?

 Thanks
I'm programming in Python now for about a year, so I'm definitely not an
expert, but this friendly list will correct me I'm wrong.
Here is what I can come up with
- design of GUI is difficult (despite all those well meant programs, of
which I couldn't get one of them working)
- autoit like applications
- low level drivers
- licenses differ a lot, which makes it hard to combine different
packages
- downwards compatibility is sometimes lost
- a number of libraries is quite in-mature but for the rest, it's a
beautiful language, and I'm working on a large application, which should
be open source replacement for MatLab + LabView.

cheers,
Stef



This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


HARD REAL TIME PYTHON

2008-10-06 Thread Blubaugh, David A.
To All,


I have done some additional research into the possibility of utilizing
Python for hard real time development.  I have seen on various websites
where this has been discussed before on the internet.  However, I was
wondering as to how successful anyone has truly been in developing a
program project either in windows or in Linux that was or extremely
close to real time constraints? For example is it possible to develop a
python program that can address an interrupt or execute an operation
within 70 Hz or less?? Are there any additional considerations that I
should investigate first regarding this matter?? 


Thanks,


David Blubaugh







  

This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


Python for the Playstation 3

2008-10-02 Thread Blubaugh, David A.
To All,


I was wondering if there is still a community effort to develop Python
for Linux distributions for the Sony Playstation 3??  I have found a few
WebPages stating this effort to port Python in such a way to take
advantage of the Cell architecture within the playstation?  However, all
of these WebPages are severely dated back as far as 2005-2006, with
absolutely no additional activity since that time.  I believe these
WebPages are now abandoned.  Is there any interest within the Python
development team to port the Python language to the cell processor??  If
not, I could try!!  Anyone else interested in developing the playstation
3 into a powerful supercomputer for the common individual???  I am also
interested in developing clusters of playstations for HPC by taking
advantage of Python's support for RPC and MPI!


Thanks,


David Blubaugh




This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


OS.SYSTEM ERROR !!!

2008-09-30 Thread Blubaugh, David A.
To All, 


I have been attempting to execute the following program within the
Python environment:

Myprogram.exe, which means this is an executable file!!

I would usually execute this program (with the appropriate arguments) by
going to following directory within MS-DOS (Windows XP):

C:\myprogramfolder\run Myprogram.exe 1 1 acc 0


The executable would execute perfectly.  


However, when I would try to execute the following lines of source code
within a python script file:

import os

os.system(rC:\myprogramfolder\run\Myprogram.exe 1 1 acc 0) 


The executable file would start to execute until it would print an error
stating that it cannot use a (.dat) file, which is located under the
following directory:  


C:\myprogramfolder\run\inputs\io\control.dat


I believe I may be missing something here that prevents the executable
file working within python from utilizing this (.dat).  The printed
final error is the following:

ERROR opening inputs/io/control.dat

Does anyone know what that could be ??


Thanks,


David Blubaugh





This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


RE: OS.SYSTEM ERROR !!!

2008-09-30 Thread Blubaugh, David A.
Thank You!!  

I am still new to Python!! 

David Blubaugh


 

-Original Message-
From: Christian Heimes [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 30, 2008 2:08 PM
To: python-list@python.org
Subject: Re: OS.SYSTEM ERROR !!!

Blubaugh, David A. wrote:
 To All,
 
 
 I have been attempting to execute the following program within the 
 Python environment:
 
 Myprogram.exe, which means this is an executable file!!
 
 I would usually execute this program (with the appropriate arguments) 
 by going to following directory within MS-DOS (Windows XP):
 
 C:\myprogramfolder\run Myprogram.exe 1 1 acc 0
 
 
 The executable would execute perfectly.  
 
 
 However, when I would try to execute the following lines of source 
 code within a python script file:
 
 import os
 
 os.system(rC:\myprogramfolder\run\Myprogram.exe 1 1 acc 0)

Try this:

import subprocess
retval = subprocess.call(
 ['Myprogram.exe', '1', '1', 'acc', '0'],
 cwd='C:\myprogramfolder\run')

Christian



This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


RE: OS.SYSTEM ERROR !!!

2008-09-30 Thread Blubaugh, David A.
Yes,

I new it was a directory issue.  I am new to Python.  

Thank You


David Blubaugh

-Original Message-
From: Martin Walsh [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 30, 2008 1:42 PM
To: python-list@python.org
Subject: Re: OS.SYSTEM ERROR !!!

Blubaugh, David A. wrote:
 To All,
 
 I have been attempting to execute the following program within the 
 Python environment:
snip
 
 However, when I would try to execute the following lines of source 
 code within a python script file:
 
 import os
 
 os.system(rC:\myprogramfolder\run\Myprogram.exe 1 1 acc 0)
 
snip
 
 I believe I may be missing something here that prevents the executable

 file working within python from utilizing this (.dat).  The printed 
 final error is the following:
 
 ERROR opening inputs/io/control.dat
 
 Does anyone know what that could be ??

Based on your description, it seems pretty obvious (and easy to confirm)
that Myprogram.exe needs to be run from its containing directory
(C:\myprogramfolder\run). Try something like this...

import os
pwd = os.getcwd()
os.chdir('c:/myprogramfolder/run')
os.system(Myprogram.exe 1 1 acc 0)
os.chdir(pwd)

HTH,
Marty


This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


PYTHON WORKING WITH PERL ??

2008-09-29 Thread Blubaugh, David A.
To All,


I was wondering if it was possible to have a situation where a
programming project would utilized BOTH python and perl?  Such as
utilizing python for internet programming and then utilize perl for text
processing and systems programming?  Is this even feasible???


Thanks,


David Blubaugh





This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


RE: PYTHON WORKING WITH PERL ??

2008-09-29 Thread Blubaugh, David A.
Sir,


You are absolutely correct.  I was praying to G_d I did not have to
slaughter my project's source code in this manner.  However, like life
itself, I was given legacy source code (i.e. someone else errors to fix)
in Perl.  However, I have just found out that there is a way to import
the Perl interpreter within Python!!!  I now believe I can utilize
python as the main platform to develop the project upon !!  


Thanks,

David


 

-Original Message-
From: D'Arcy J.M. Cain [mailto:[EMAIL PROTECTED] 
Sent: Monday, September 29, 2008 1:32 PM
To: Blubaugh, David A.
Cc: python-list@python.org
Subject: Re: PYTHON WORKING WITH PERL ??

On Mon, 29 Sep 2008 13:16:14 -0400
Blubaugh, David A. [EMAIL PROTECTED] wrote:
 I was wondering if it was possible to have a situation where a 
 programming project would utilized BOTH python and perl?  Such as 
 utilizing python for internet programming and then utilize perl for 
 text processing and systems programming?  Is this even feasible???

I don't see why not but I also question if it is a good idea.  Once you
have all your objects and low level methods written in Python it just
makes sense to re-use them rather than trying to duplicate the
functionality in another language.

Of course, sometimes we don't have control over our entire environment
so yes, you can mix them if you have to.

-- 
D'Arcy J.M. Cain [EMAIL PROTECTED] |  Democracy is three wolves
http://www.druid.net/darcy/|  and a sheep voting on
+1 416 425 1212 (DoD#0082)(eNTP)   |  what's for dinner.

This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


RE: PYTHON WORKING WITH PERL ??

2008-09-29 Thread Blubaugh, David A.
Thank You 

Steve!!!  


 

-Original Message-
From: Steve Holden [mailto:[EMAIL PROTECTED] 
Sent: Monday, September 29, 2008 1:38 PM
To: python-list@python.org
Subject: Re: PYTHON WORKING WITH PERL ??

Blubaugh, David A. wrote:
 To All,
 
 
 I was wondering if it was possible to have a situation where a 
 programming project would utilized BOTH python and perl?  Such as 
 utilizing python for internet programming and then utilize perl for 
 text processing and systems programming?  Is this even feasible???
 
 
 Thanks,
 
So sorry to hear Google isn't available from your network ;-)

  http://search.cpan.org/~gaas/pyperl-1.0/perlmodule.pod

regards
 Steve
-- 
Steve Holden+1 571 484 6266   +1 800 494 3119
Holden Web LLC  http://www.holdenweb.com/



This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


Is Pyperl still active ??

2008-09-29 Thread Blubaugh, David A.

To All,


I was wondering if Pyperl is still active??  It appears as though it may
very well be no longer active at this time!!!  Is this correct??


Thanks,


David Blubaugh




This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


Is Pyperl still active ??

2008-09-29 Thread Blubaugh, David A.
To All,


I was wondering if Pyperl is still active??  It appears as though it may
very well be no longer active at this time!!!  Is this correct??


Thanks,


David Blubaugh




This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


Time.sleep(0.0125) not available within Linux

2008-09-22 Thread Blubaugh, David A.
To All,


I was wondering if anyone has come across the issue of not being allowed
to have the following within a Python script operating under Linux:

time.sleep(0.0125) 

It appears that I am not allowed to have the object sleep.  Has anyone
encountered this specific issue before in the past?


Thank You,


David Blubaugh







This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


RE: NEW GENERATED DLL ERROR FOUND WITHIN f2PY.py

2008-09-21 Thread Blubaugh, David A.
Sir,
 
Thank you for your reply.  This is as to how I developed my .pyd file.  I 
entered the following commands within my MS-DOS prompt within Windows XP:

C:\python25\Scripts C:\python25\python  f2py.py -c --fcompiler=gnu95 
--compiler=mingw32 -m hello hello.f90

I am using the gfortran compiler, that was prescribed to use, as well as, the 
required commands on the following website:

http://www.scipy.org/F2PY_Window 
https://webmail.belcan.com/exchweb/bin/redir.asp?URL=http://www.scipy.org/F2PY_Window
 

I comes down to that yes, I am able to generate a .pyd file, which was 
generated by f2py.  However, when I tried to import this file into my python 
script program I was given the following error:
 
 error 193?? 
 
I do not know as to what I am doing incorrectly, since I am generating a .pyd 
file by f2py?  If I am doing anything that is incorrect, then why am I EVEN 
ABLE TO GENERATE A .PYD FILE IN THE FIRST PLACE???   Any Help will be greatly 
appreciated!
 
Thanks,
 
David Blubaugh
 



From: Gabriel Genellina [mailto:[EMAIL PROTECTED]
Sent: Sun 9/21/2008 1:55 PM
To: python-list@python.org
Subject: Re: NEW GENERATED DLL ERROR FOUND WITHIN f2PY.py



En Sat, 20 Sep 2008 16:07:12 -0300, Blubaugh, David A. 
[EMAIL PROTECTED] escribió:

 Let me state that do have extensive experience with developing binary 
 files.  Please note that I have followed all of the instructions to the 
 letter as far as developing a DLL to be imported.  However, it is not 
 working correctly.  I believe it might be my system environment 
 variables??

It might be the sunspots (or the lack of them) as well.
You could start telling us what's your platform, which instructions have 
you followed, which compiler have you used...

--
Gabriel Genellina





This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


NEW GENERATED DLL ERROR FOUND WITHIN f2PY.py

2008-09-20 Thread Blubaugh, David A.
To All,
 
 
I have now been able to generate a .pyd file from a FORTRAN file that I am 
trying to interface with python.  I was able to execute this with an additional 
insight into how f2py operates.  It seems as though the documentation requires 
an upgrade, since there appears to be missing information that might misdirect 
a   f2py newcomer, such as myself.  However, I am now facing the following new 
error:
 
ImportError: DLL load with error code 193
 
The python script is as follows:
 
import hello

print hello.__doc__

print hello.foo.__doc__

hello.foo(4) 

 

The Fortran code is as follows:

! -*- f90 -*-

subroutine foo(a)

integer a 

print*, Hello from Fortran! 

print*, a=, a 

end

 
I was wondering as to what I should now try in order to finally produce a 
python sending and receiving information from a FORTRAN .pyd file.
 
 
Any Suggestions???
 
Do I have to recompile Python with mingw32 in order to finally resolve this 
issue??  
 
 
 
Thanks,
 
 
David Blubaugh
 
 

This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


RE: NEW GENERATED DLL ERROR FOUND WITHIN f2PY.py

2008-09-20 Thread Blubaugh, David A.
Sir, 
 
Let me state that do have extensive experience with developing binary files.  
Please note that I have followed all of the instructions to the letter as far 
as developing a DLL to be imported.  However, it is not working correctly.  I 
believe it might be my system environment variables??
 
Thanks for your reply,
 
David Blubaugh
 
 



From: Fredrik Lundh [mailto:[EMAIL PROTECTED]
Sent: Sat 9/20/2008 1:30 PM
To: python-list@python.org
Subject: Re: NEW GENERATED DLL ERROR FOUND WITHIN f2PY.py



Blubaugh, David A. wrote:

(no need to shout when filling in the subject line, thanks)

 I have now been able to generate a .pyd file from a FORTRAN
  file that I am trying to interface with python.  I was able
  to execute this with an additional insight into how f2py
  operates.
 
 ImportError: DLL load with error code 193

Error code 193 is ERROR_BAD_EXE_FORMAT, which means that the thing
you're trying to import is not a proper DLL.

  copy LICENSE.txt LICENSE.pyd
 1 file(s) copied.

  python
  import LICENSE
Traceback (most recent call last):
   File stdin, line 1, in module
ImportError: DLL load failed with error code 193

In general, the tools for building binary extensions for Python assumes
that you have at least some basic knowledge about how to build binaries
using a compiled language.

/F





This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


Has any one worked with Rpyc

2008-09-13 Thread Blubaugh, David A.
To All,


Has anyone out there worked much with Rpyc?  


Thanks,


David




This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


I cannot find where Numpy 1.2 is located

2008-09-13 Thread Blubaugh, David A.
To All,


I have been trying to locate as to where Numpy 1.2 can be downloaded.  I
will need this update.  The only version available at the Numpy website
for download is only 1.1.1 not the required 1.2 that I definitely need
at this time.

David Blubaugh


 

This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


Has any one out there ever worked with the Rpyc, which is a remote process call for python

2008-09-13 Thread Blubaugh, David A.
To All,


Has any one out there ever worked with the Rpyc, which is a remote
process call for python?


David Blubaugh



This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


PYTHON FOR THE MSP430 or DSP ?

2008-09-10 Thread Blubaugh, David A.
To All,


I was wondering if anyone has ever worked on developing a project for
Python, where the Python and Numpy script code could then be generated
into either C or assembly source for the Texas Instruments MSP430 or
related DSP microcontrollers?  Such as quickly generating from python
algorithms into compact and efficient C source code for these
processors?  


Any Help will be greatly appreciated!!!


Thanks,


David Blubaugh





This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


F2PY ?? Has anyone worked with the F2PY generator?

2008-09-08 Thread Blubaugh, David A.
To All,


Has anyone worked with the F2PY generator?  This is something that is
supposedly built within numpy and scipy for the Python environment.  I
was wondering if anyone has encountered any issues with this
environment??  This is important to find the answers to these questions.



Thanks,


David Blubaugh



This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


RE: F2PY ?? Has anyone worked with the F2PY generator?

2008-09-08 Thread Blubaugh, David A.

Pauli,


Yes,  I am utilizing the windows environment.  I cannot install f2py.  

I obtain the following error when I try to execute the setup.py file
within the f2py folder located within the numpy master folder:


Warning: Assuming default configuration
(lib\parser/{setup_parser,setup}.py was not found)
Appending f2py.lib.parser configuration to f2py.lib
Ignoring attempt to set 'name' (from 'f2py.lib' to 'f2py.lib.parser')
Warning: Assuming default configuration
(lib\extgen/{setup_extgen,setup}.py was not found)
Appending f2py.lib.extgen configuration to f2py.lib
Ignoring attempt to set 'name' (from 'f2py.lib' to 'f2py.lib.extgen')
Appending f2py.lib configuration to f2py
Ignoring attempt to set 'name' (from 'f2py' to 'f2py.lib')
F2PY Version 2_4423

Traceback (most recent call last):
  File C:\Python25\Lib\site-packages\numpy\f2py\setup.py, line 130, in
module
**config)
TypeError: setup() got multiple values for keyword argument 'version'
 


I do not know as to how to fix the multiple values for version??
PLEASE HELP!!!


David Blubaugh





 

-Original Message-
From: Blubaugh, David A. 
Sent: Monday, September 08, 2008 6:04 PM
To: 'python-list@python.org'
Subject: F2PY ?? Has anyone worked with the F2PY generator?

To All,


Has anyone worked with the F2PY generator?  This is something that is
supposedly built within numpy and scipy for the Python environment.  I
was wondering if anyone has encountered any issues with this
environment??  This is important to find the answers to these questions.



Thanks,


David Blubaugh



This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


Using Python to shared memory resources between Linux and Windows

2008-08-26 Thread Blubaugh, David A.
To All,



I was wondering if it was possible to utilize python to share a memory
resource between a linux and windows system??  It should be stated that
both the Linux (CENTOS 5) and windows are physically located on the same
computer.  Is any of this possible?  




Thanks,



David Blubaugh





This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


RE: Using Python to shared memory resources between Linux and Windows

2008-08-26 Thread Blubaugh, David A.
Diez,

What you have said is extremely concerning.  
I am now using VMware.  With Linux as the Master and windows as the
guest operating system.  I was wondering if you have ever had to develop
a share memory resource between Linux and windows within a Vmware setup?




Thanks for the help.  I will not be forgotten,


David Blubaugh


   

-Original Message-
From: Diez B. Roggisch [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 26, 2008 4:54 PM
To: python-list@python.org
Subject: Re: Using Python to shared memory resources between Linux and
Windows

Blubaugh, David A. schrieb:
 To All,

To whom else if I may ask?

 I was wondering if it was possible to utilize python to share a memory

 resource between a linux and windows system??  It should be stated 
 that both the Linux (CENTOS 5) and windows are physically located on 
 the same computer.  Is any of this possible?

No, not as that. You can use IPC-mechanisums such as XMLRPC, CORBA or
Pyro. But software such as VMWare or VirtualBox tries hard to *not* let
guest and host os influence each other.

Diez


This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


FW: Using Python to shared memory resources between Linux and Windows

2008-08-26 Thread Blubaugh, David A.
Diez,

What you have said is extremely concerning.  
I am now using VMware.  With Linux as the Master and windows as the
guest operating system.  I was wondering if you have ever had to develop
a share memory resource between Linux and windows within a Vmware setup?




Thanks for the help.  It will not be forgotten,


David Blubaugh


   

-Original Message-
From: Diez B. Roggisch [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 26, 2008 4:54 PM
To: python-list@python.org
Subject: Re: Using Python to shared memory resources between Linux and
Windows

Blubaugh, David A. schrieb:
 To All,

To whom else if I may ask?

 I was wondering if it was possible to utilize python to share a memory

 resource between a linux and windows system??  It should be stated 
 that both the Linux (CENTOS 5) and windows are physically located on 
 the same computer.  Is any of this possible?

No, not as that. You can use IPC-mechanisums such as XMLRPC, CORBA or
Pyro. But software such as VMWare or VirtualBox tries hard to *not* let
guest and host os influence each other.

Diez


This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list


HASH TABLES IN PYTHON

2008-05-14 Thread Blubaugh, David A.
To Whom It May Concern,


I was wondering if anyone has ever worked with hash tables within the
Python Programming language?  I will need to utilize this ability for
quick numerical calculations.  


Thank You,


David Blubaugh




This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

--
http://mail.python.org/mailman/listinfo/python-list

RE: Bit twiddling floating point numbers

2008-05-06 Thread Blubaugh, David A.
Sorry for the reply.  I did not get your message until now.  I was
wondering if there was a way to develop floating-point mathematics
package within a module.  I was wondering if some of your work on bit
twiddling floating - point numbers could be provided to me!!!  Thanks.  
 
 
David Blubaugh
 
 



From: Jeff Goldfinkle [mailto:[EMAIL PROTECTED] 
Sent: Monday, April 28, 2008 2:10 PM
To: Blubaugh, David A.
Subject: Re: Bit twiddling floating point numbers


sure - go right ahead


On Mon, Apr 28, 2008 at 8:17 PM, Blubaugh, David A.
[EMAIL PROTECTED] wrote:


Are you still out there?  
 
 
Can I still ask you about my question?
 
 
thanks,
 
David
 
 



From: Jeff Goldfinkle [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 07, 2008 1:04 AM
To: Blubaugh, David A. 

Subject: Re: Bit twiddling floating point numbers


Hi David

Sure. I'm not sure what help I can be, but ask away.

Jeff




On Thu, Mar 6, 2008 at 11:25 PM, Blubaugh, David A.
[EMAIL PROTECTED] wrote:


Jeff,


Hello.  This idea or representing a float with long
seems to be
extremely interesting.  I am currently utilizing the
MyHDL environment
to map algorithms to hardware.  May I ask you more
questions in order to
map integer mathematics to emulate floating -point
mathematics, in order
to maybe develop efficient pseudo-floating-point
hardware??

 Thanks,

David Blubaugh





-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
Sent: Thursday, March 06, 2008 4:01 PM
To: python-list@python.org
Subject: Re: Bit twiddling floating point numbers

On Mar 6, 11:00 am, Bryan Olson
[EMAIL PROTECTED] wrote:
 Mark Dickinson wrote:

  Jeff Goldfin wrote:
  I can pack and unpack a float into a long e.g.
  struct.unpack('I',struct.pack('f',0.123))[0]
  but then I'm not sure how to work with the
resulting long.

  Any suggestions?


  One alternative to using struct is to use math.ldexp
and math.frexp:

  m, e = frexp(pi)
  m
  0.78539816339744828
  e
  2
  int(m*2**53)
  7074237752028440L

  Then you can do your bit twiddling on int(m*2**53),
before using
  ldexp to 'repack' the float.

 Ah, those are handy. Jeff described his problem: In
particular, I

 would like to round my float to the n most significant
bits.

 I think this works:

from math import frexp, ldexp, floor

def round_mantissa(x, nbits):
shifter = 1  nbits
(m, e) = frexp(x)
m = floor(m * shifter + 0.5) / shifter
return ldexp(m, e)

 --
 --Bryan
Thanks for the help - your function seems to fit the
bill even better
than gmpy since I don't need an external module. In my
case I'll use m =
floor(m * shifter) / shifter instead of m = floor(m *
shifter +
0.5) / shifter

Jeff



This e-mail transmission contains information that is
confidential and may be
privileged. It is intended only for the addressee(s)
named above. If you receive
this e-mail in error, please do not read, copy or
disseminate it in any manner.
If you are not the intended recipient, any disclosure,
copying, distribution or
use of the contents of this information is prohibited.
Please reply to the
message immediately by informing the sender that the
message was misdirected.
After replying, please erase it from your computer
system. Your assistance in
correcting this error is appreciated.




This e-mail transmission contains information that is
confidential and may be privileged.   It is intended

RE: MESSAGE RESPONSE

2008-04-24 Thread Blubaugh, David A.
Dear Sir,
 
Belcan has an absolute zero-tolerance policy toward material such as the 
material described.  
 
Thank you for your Concern,
 
 
David Blubaugh



From: Dan Upton [mailto:[EMAIL PROTECTED]
Sent: Wed 4/23/2008 12:27 PM
To: python-list@python.org
Subject: Re: MESSAGE RESPONSE



On Wed, Apr 23, 2008 at 10:24 AM, Diez B. Roggisch [EMAIL PROTECTED] wrote:
 Blubaugh, David A. schrieb:

  Is there a way to block these messages.   I do not want to be caught
  with filth such as this material.  I could lose my job with Belcan with
  evil messages such as these messages.
 

  If I (or *anybody*) knew how to block these messages, he or she would sell
 the resulting spam-filter for a fortunen that roughly amasses the one of
 scrooge mc duck  - and go live on the bahamas or even buy them.

  Put up with it. It's (unfortunately) part of ze internet tubes.


And as such, I find it hard to believe you could lose your job over it.




This e-mail transmission contains information that is confidential and may be 
privileged.   It is intended only for the addressee(s) named above. If you 
receive this e-mail in error, please do not read, copy or disseminate it in any 
manner. If you are not the intended recipient, any disclosure, copying, 
distribution or use of the contents of this information is prohibited. Please 
reply to the message immediately by informing the sender that the message was 
misdirected. After replying, please erase it from your computer system. Your 
assistance in correcting this error is appreciated.


--
http://mail.python.org/mailman/listinfo/python-list


MESSAGE RESPONSE

2008-04-23 Thread Blubaugh, David A.
Is there a way to block these messages.   I do not want to be caught
with filth such as this material.  I could lose my job with Belcan with
evil messages such as these messages.


David Blubaugh








 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 22, 2008 5:14 PM
To: python-list@python.org
Subject: Lucky gay sucking cock while butt fucked deep

 Just few link on some movies...

 All just for you...

 Download

  http://download-video.12w.net

  http://world-sex.urllogs.com

  http://video-sex.12w.net


CLICK FREE DOWNLOAD VIDEO PORN...
L
I
C
K

T
O

W
A
T
C
H

V
I
D
E
O

P
O
R
N

D
O
W
N
L
O
A
D

F
R
E
E
.
.
.

W
E
L
C
O
M

T
O

M
O
V
I
E
S

P
O
R
N

D
O
W
N
L
O
A
D
.
.
.


This e-mail transmission contains information that is confidential and may be 
privileged.   It is intended only for the addressee(s) named above. If you 
receive this e-mail in error, please do not read, copy or disseminate it in any 
manner. If you are not the intended recipient, any disclosure, copying, 
distribution or use of the contents of this information is prohibited. Please 
reply to the message immediately by informing the sender that the message was 
misdirected. After replying, please erase it from your computer system. Your 
assistance in correcting this error is appreciated.


--
http://mail.python.org/mailman/listinfo/python-list


RE: Lucky gay sucking cock while butt fucked deep

2008-04-23 Thread Blubaugh, David A.
Is there a way to block these messages.   I do not want to be caught
with filth such as this material.  I could lose my job with Belcan with
evil messages such as these messages.


David Blubaugh








 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 22, 2008 5:14 PM
To: python-list@python.org
Subject: Lucky gay sucking cock while butt fucked deep

 Just few link on some movies...

 All just for you...

 Download

  http://download-video.12w.net

  http://world-sex.urllogs.com

  http://video-sex.12w.net


CLICK FREE DOWNLOAD VIDEO PORN...
L
I
C
K

T
O

W
A
T
C
H

V
I
D
E
O

P
O
R
N

D
O
W
N
L
O
A
D

F
R
E
E
.
.
.

W
E
L
C
O
M

T
O

M
O
V
I
E
S

P
O
R
N

D
O
W
N
L
O
A
D
.
.
.


This e-mail transmission contains information that is confidential and may be 
privileged.   It is intended only for the addressee(s) named above. If you 
receive this e-mail in error, please do not read, copy or disseminate it in any 
manner. If you are not the intended recipient, any disclosure, copying, 
distribution or use of the contents of this information is prohibited. Please 
reply to the message immediately by informing the sender that the message was 
misdirected. After replying, please erase it from your computer system. Your 
assistance in correcting this error is appreciated.


--
http://mail.python.org/mailman/listinfo/python-list


Floating-point support

2008-03-20 Thread Blubaugh, David A.
Would anyone know as to how to develop floating point support for the
MyHDL module?  Has anyone worked with any alternative versions of the
IEEE standard for floating -point?  Also, has anyone developed a
floating-point library for a module within the python environment in
order to execute numerical computations.  I would imagine since I am
translating python to verilog by using MyHDL , that I will have to
develop the floating-point support module in python source code as well
?? 
If I can develop this one feature from MyHDL, it would allow this module
to be fairly competitive with commercial products.  



Thanks,

David Blubaugh

This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

-- 
http://mail.python.org/mailman/listinfo/python-list

Python to C/C++

2008-03-19 Thread Blubaugh, David A.
To All,


Has anyone worked with a translator that will translate python to c/c++
source code?  I know that there is already one translator of this nature
(shedskin compiler) out there.  However, it is still in the beta stage
of development.  Does anyone know of a more developed version of a
translator of this nature?   

Thanks,

David Blubaugh

This e-mail transmission contains information that is confidential and may be 
privileged.   It is intended only for the addressee(s) named above. If you 
receive this e-mail in error, please do not read, copy or disseminate it in any 
manner. If you are not the intended recipient, any disclosure, copying, 
distribution or use of the contents of this information is prohibited. Please 
reply to the message immediately by informing the sender that the message was 
misdirected. After replying, please erase it from your computer system. Your 
assistance in correcting this error is appreciated.


-- 
http://mail.python.org/mailman/listinfo/python-list

Python To C Module Generator Stand-Alone Executable

2008-03-10 Thread Blubaugh, David A.
Does anybody know if the Python To C Module Generator is of any value?
Has anyone found or developed a means to convert python source code into
c source code, where an algorithm that has been developed in python, can
now be converted to C in order to develop a stand alone application?

Thanks,

David Blubaugh

This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

-- 
http://mail.python.org/mailman/listinfo/python-list

FW: unable to download PyGEP

2008-03-03 Thread Blubaugh, David A.


 __ 
 From: Blubaugh, David A.  
 Sent: Monday, March 03, 2008 3:39 PM
 To:   '[EMAIL PROTECTED]'
 Subject:  unable to download PyGEP
 
 Dear Sir,
 
 I have been having issues installing PyGEP.  I have tried the
 following:
 
 at MS-DOS command prompt
 
 
 cd C:\python25\PyGEP-0.3.0.dev-r117
 
 
 I then enter setup.py on command prompt.  
 
 
 
 It then states that it could not find a module named setuptools in
 order to install.  Can you help me with this issue ??  Thanks
 
 
 
 David Blubaugh

This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

-- 
http://mail.python.org/mailman/listinfo/python-list

Python 3.0

2008-02-18 Thread Blubaugh, David A.
Is there a logical reason why Python 3 is not backwards compatible?

David Blubaugh




 

-Original Message-
From: Bill Hart [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 15, 2008 7:44 PM
To: Blubaugh, David A.
Subject: Re: scary thought for consideration

I don't know, it's in alpha now apparently and is not backwards
compatible.

Bill.

On 16/02/2008, Blubaugh, David A. [EMAIL PROTECTED] wrote:
 When will Python 3 be available?

 Thanks,

 David




 -Original Message-
 From: Bill Hart [mailto:[EMAIL PROTECTED]
 Sent: Friday, February 15, 2008 7:03 PM
 To: Blubaugh, David A.
 Subject: Re: scary thought for consideration

 No it should be fine. Python 3 might cause problems.

 On 15/02/2008, Blubaugh, David A. [EMAIL PROTECTED] wrote:
 
 
 
  To All,
 
 
  I am wondering as far as the integration of MyHDL with Python 2.5, 
  if there might be any potential version incompatibility issues?  
  What I mean is will MyHDL not operate correctly, if it is executed 
  with a Python 2.5 version not a Python 2.4? I will be testing to see

  if this possibility is indeed true over the weekend.
 
 
  Thanks,
 
  David Blubaugh
 
  This e-mail transmission contains information that is confidential 
  and
 may
  be privileged.   It is intended only for the addressee(s) named
above.
 If
  you receive this e-mail in error, please do not read, copy or 
  disseminate it in any manner. If you are not the intended recipient,

  any disclosure, copying, distribution or use of the contents of this

  information is prohibited. Please reply to the message immediately 
  by informing the sender that the message was misdirected. After 
  replying,

  please erase it from your computer system. Your assistance in
 correcting this error is appreciated.
 

-- 
http://mail.python.org/mailman/listinfo/python-list


MyHDL

2008-02-18 Thread Blubaugh, David A.
Dear Mr. Polo,


Yes, I believe that there may indeed be a problem with MyHDL module
running under python 2.5  under the windows environment. I have been
having extensive problems with importing the MyHDL module.  I will
provide additional information if required.  Thank you very much for all
of your help.

David Blubaugh







-Original Message-
From: Guilherme Polo [mailto:[EMAIL PROTECTED] 
Sent: Sunday, February 17, 2008 11:38 AM
To: Blubaugh, David A.
Subject: Re: scary thought for consideration

2008/2/15, Blubaugh, David A. [EMAIL PROTECTED]:
 Dear Polo,


  I was wondering if there is a possibility that you could provide help

 with this endeavor?  We can need all the good help, that people such 
 as  yourself, can provide with this endeavor.  Thank you for your 
 direct  response.



  David Blubaugh

Hello David,

Before anything you should check if it there is any problem with running
your modules/project under python 2.5. If there is I can step in and
help ;)

By the way, previously I sent a copy to you and python-list as well.
And sorry for the long delay to answer this.

Cheers,






  -Original Message-
  From: Guilherme Polo [mailto:[EMAIL PROTECTED]
  Sent: Friday, February 15, 2008 5:33 PM
  To: Blubaugh, David A.; python-list@python.org
  Subject: Re: scary thought for consideration

  2008/2/15, Blubaugh, David A. [EMAIL PROTECTED]:
  
  
  
   To All,
  
  
   I am wondering as far as the integration of MyHDL with Python 2.5, 
 if   there might be any potential version incompatibility issues?  
 What I   mean is will MyHDL not operate correctly, if it is executed 
 with a   Python 2.5 version not a Python 2.4? I will be testing to 
 see if this   possibility is indeed true over the weekend.
  

  That depends on how custom your project is. Take Zope for example, 
 a  lot of effort is being done to make it run under python 2.5.

  Having a good test suite ready would be a good way to determine if it

 runs correctly under python 2.5.

  
   Thanks,
  
   David Blubaugh
  
   This e-mail transmission contains information that is confidential 
 and  may
   be privileged.   It is intended only for the addressee(s) named
above.
  If
   you receive this e-mail in error, please do not read, copy or   
 disseminate it in any manner. If you are not the intended recipient,  
  any disclosure, copying, distribution or use of the contents of this

  information is prohibited. Please reply to the message immediately 
 by   informing the sender that the message was misdirected. After 
 replying,

   please erase it from your computer system. Your assistance in  
 correcting this error is appreciated.
  
   --
http://mail.python.org/mailman/listinfo/python-list
  


  --
  -- Guilherme H. Polo Goncalves



--
-- Guilherme H. Polo Goncalves
-- 
http://mail.python.org/mailman/listinfo/python-list


RE: Question

2008-02-18 Thread Blubaugh, David A.
Dan,
 
I have been working with examples within the Scipy and Numpy framework.
Those are the examples that I have been working with at this time,
including the FFT example.  The following command:
 
python setup.py  install.

Is what I did within the Python IDLE environment.  However, python was
not able to see this script file.  Under directory should the MyHDL
folder be located??  What I mean by this, should the MyHDL folder be
installed in the same directory as where the Scipy folder is located??
If I am not making any sense, please inform me as soon as possible.
Thank you for your help. 
 
Respectfully,
 
David Blubaugh
 
 
   



From: Dan Fabrizio [mailto:[EMAIL PROTECTED] 
Sent: Monday, February 18, 2008 1:17 PM
To: Blubaugh, David A.
Subject: Re: Question


Hi David,

I didn't have any problems with the install on Linux and Mac OS X.
Both use python 2.5

python setup.py  install.

Can you tell me more about the problem you are having?   Did you get the
basic install to work?
Did you try any of the examples?


Dan 





On Feb 18, 2008 12:54 AM, Blubaugh, David A. [EMAIL PROTECTED]
wrote:


Dan,

I am just a little bit curious as to how you installed MyHDL on
your Linux machine??  Apparently, I am starting to believe that there
are missing files in my installation for windows.  Especially, my
setup.py file may not be operational within windows.  I have not
received word from Mr. Decaluwe regarding any thoughts on a combined
Scipy/MyHDL hybrid system. There is some internet mail list activity
still occuring within the MyHDL site.  I believe I will post a message
on this forum and see if anyone will respond!!  Also, there might be a
new member in helping us, in addition to the moderate amount of help
from Bill Hart. Thanks for all the help.

David Blubaugh








-Original Message-
From: Blubaugh, David A.
Sent: Fri 2/15/2008 5:56 PM
To: 'Dan Fabrizio'; 'Dan Fabrizio'
Subject: For your information




-Original Message-
From: Blubaugh, David A.
Sent: Fri 2/15/2008 5:56 PM
To: 'Dan Fabrizio'; 'Dan Fabrizio'
Subject: For your information

 Dan,

This is for your information.  I am going to work more this
weekend to see if there is a concern with python 2.5 with MyHDL. 

David




-Original Message-
From: Guilherme Polo [mailto:[EMAIL PROTECTED]
Sent: Friday, February 15, 2008 5:33 PM
To: Blubaugh, David A.; python-list@python.org
Subject: Re: scary thought for consideration

2008/2/15, Blubaugh, David A. [EMAIL PROTECTED]:



 To All,


 I am wondering as far as the integration of MyHDL with Python
2.5, if
 there might be any potential version incompatibility issues?
What I
 mean is will MyHDL not operate correctly, if it is executed
with a
 Python 2.5 version not a Python 2.4? I will be testing to see
if this
 possibility is indeed true over the weekend.


That depends on how custom your project is. Take Zope for
example, a lot of effort is being done to make it run under python 2.5.

Having a good test suite ready would be a good way to determine
if it runs correctly under python 2.5.


 Thanks,

 David Blubaugh

 This e-mail transmission contains information that is
confidential and may
 be privileged.   It is intended only for the addressee(s)
named above. If
 you receive this e-mail in error, please do not read, copy or
 disseminate it in any manner. If you are not the intended
recipient,
 any disclosure, copying, distribution or use of the contents
of this
 information is prohibited. Please reply to the message
immediately by
 informing the sender that the message was misdirected. After
replying,
 please erase it from your computer system. Your assistance in
correcting this error is appreciated.

 --
  http://mail.python.org/mailman/listinfo/python-list



--
-- Guilherme H. Polo Goncalves




This e-mail transmission contains information that is
confidential and may be privileged. It is intended only for the
addressee(s) named above. If you receive this e-mail in error, please do
not read, copy or disseminate it in any manner. If you are not the
intended recipient, any disclosure, copying, distribution or use of the
contents of this information is prohibited. Please reply to the message
immediately by informing the sender that the message was misdirected.
After

Python for Safety-Critical Software Development for Aerospace Applications

2008-02-18 Thread Blubaugh, David A.
To All,


I was wondering if anyone has specific information as to the use of the
Python language for the development of Safety-Critical software for
aerospace applications??  For example, developing Python-based source
code that has been verified to DO-178B Level A certification.  Any
information, will be more than appreciated.  


David Blubaugh

This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

-- 
http://mail.python.org/mailman/listinfo/python-list

RE: Question

2008-02-18 Thread Blubaugh, David A.
I have already solved that problem.  Sorry for not alerting you as to me
of solving this issue.  Thank you very much for the help.  I was
wondering if you would be interested in helping in the development of a
Scipy / MyHDL hybrid.  The advantage of this would be to develop FPGA
logic with the ease of Python programming.  This would especially be
helpful in the development of a rapid DSP development system for FPGAS.
The rapid speed one could possibly obtain with this system might well be
a great deal faster that FPGA development with MATLAB.  Thank you for
your help.

David Blubaugh




-Original Message-
From: Gabriel Genellina [mailto:[EMAIL PROTECTED] 
Sent: Monday, February 18, 2008 4:24 PM
To: python-list@python.org
Subject: Re: Question

En Mon, 18 Feb 2008 17:48:57 -0200, Blubaugh, David A.  
[EMAIL PROTECTED] escribi :

 Dan,
 I have been working with examples within the Scipy and Numpy
framework.
 Those are the examples that I have been working with at this time, 
 including the FFT example.  The following command:
 python setup.py  install.

 Is what I did within the Python IDLE environment.  However, python was

 not able to see this script file.  Under directory should the MyHDL 
 folder be located??  What I mean by this, should the MyHDL folder be 
 installed in the same directory as where the Scipy folder is located??
 If I am not making any sense, please inform me as soon as possible.

Don't do that from inside IDLE. These are some step by step generic
instructions to install a new package; they don't assume much about your
previous knowledge.

1) Open a command prompt window (or system prompt, or console, or...).
Go to the Start menu, click on Run, type cmd (without the quotes),
press Enter.

2) See if you can invoke Python directly; type at the command prompt:

   C:\doesntmatter python -V

   (use a capital V, press Enter at the end. Don't type the text at the
left of the  sign). You should get a response like this:

   Python 2.5.1

   If you get a similar response (maybe a different Python version),
skip to step 5.
   If you get an error message telling that python isn't recognized as
a command or something, continue on step 3.

3) Let's try to find where Python is located. As you appear to have IDLE
installed and working, open it, and execute these two lines:

import sys
print sys.executable
   c:\python25\pythonw.exe

Take note of the response, but omit the last w. We will call this the
full path to python.exe. In the example above, the full path to
python.exe would be c:\python25\python.exe

4) Repeat step 2 above, using the full path to python.exe instead of the
bare word python:

   C:\doesntmatter c:\python25\python.exe -V  [press Enter]
   Python 2.5.1

You should get the installed Python version number, not an error.

5) Decompress the package you want to install into any temporary folder
-it doesn't matter where- using your favorite tool (WinRar, WinZip,
7zip, the Zip file handler built into WinXP...). Probably you've already
done that. Take note of the temporary folder (should contain the
setup.py
script)

6) Come back to the command prompt and make that temporary folder your
current directory, using the cd command. E.g. if it were
c:\temp\mypackage-3.2, type:

   C:\doesntmatter cd c:\temp\mypackage-3.2 [press Enter]
   c:\temp\mypackage-3.2

7) Now execute:

   c:\temp\mypackage-3.2 python setup.py install [press Enter]

(If you had to go thru steps 3 and 4 above, replace the word python with
the full path to python.exe) This should start the package installation;
read its documentation for further details.

-- 
Gabriel Genellina



This e-mail transmission contains information that is confidential and may be 
privileged. It is intended only for the addressee(s) named above. If you 
receive 
this e-mail in error, please do not read, copy or disseminate it in any manner. 
If you are not the intended recipient, any disclosure, copying, distribution or 
use of the contents of this information is prohibited. Please reply to the 
message immediately by informing the sender that the message was misdirected. 
After replying, please erase it from your computer system. Your assistance in 
correcting this error is appreciated.

-- 
http://mail.python.org/mailman/listinfo/python-list


scary thought for consideration

2008-02-15 Thread Blubaugh, David A.
To All,


I am wondering as far as the integration of MyHDL with Python 2.5, if
there might be any potential version incompatibility issues?  What I
mean is will MyHDL not operate correctly, if it is executed with a
Python 2.5 version not a Python 2.4? I will be testing to see if this
possibility is indeed true over the weekend.  


Thanks,

David Blubaugh

This e-mail transmission contains information that is confidential and may be 
privileged.   It is intended only for the addressee(s) named above. If you 
receive this e-mail in error, please do not read, copy or disseminate it in any 
manner. If you are not the intended recipient, any disclosure, copying, 
distribution or use of the contents of this information is prohibited. Please 
reply to the message immediately by informing the sender that the message was 
misdirected. After replying, please erase it from your computer system. Your 
assistance in correcting this error is appreciated.


-- 
http://mail.python.org/mailman/listinfo/python-list

SAGE for FPGA development

2008-02-14 Thread Blubaugh, David A.
Bill,

The potential idea that I had in store for SAGE would be to first be
able to develop complicated algorithms onto hardware.  What I mean by
this is to take for example, a FFT and then be able to map the entire
algorithm into hardware, in a reasonable amount of time.  It currently
takes a few months to develop floating or fixed-point algorithms onto
hardware. The idea behind this is that an algorithm would no longer be
limited by a von-Neumann based architecture, which means that the
algorithm could theoretically process data as fast as the material
science of semiconductors will allow.   That would be the ultimate goal.
I believe SAGE is more than capable to turn this into a reality, will
the inclusion of MyHDL.  Are you interested in being apart of this
development??  

Thanks,

David Blubaugh







-Original Message-
From: Bill Hart [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, February 13, 2008 7:45 PM
To: Blubaugh, David A.
Cc: William Stein
Subject: Re: Fwd: SAGE for FPGA development

Hi David,

I guess I don't know much about programming for FPGA's, though I know a
few people who do.

From what I can gather from the MyHDL website, the package allows one to
specify silicon using python (converting the python to verilog code).
That seems like a powerful tool for designing silicon, but I can't quite
see why one would put this in SAGE. Yes, one would then be able to
specify silicon circuits in SAGE, but that's not going to allow SAGE to
run on FPGA's.

To make it useful, one would then need to modify some of the underlying
packages in SAGE, such as GMP, so that they run through the FPGA.
Alternatively, one would need to program specific fundamental SAGE
functions using MyHDL, then modify the higher level SAGE functions to
call them if an FPGA was available.

So I guess my question is, if MyHDL were in SAGE, who would actually use
it to specify silicon and then use that silicon functionality to do
mathematics?

I note that you work for Belcan. Do you yourself have exertise in using
MyHDL? What would you be able to contribute? Do you have a particular
application in mind that you'd like to code for SAGE using an FPGA?

I note that the MyHDL package is LGPL, which is a good thing.

Regards,

Bill Hart.


On 13/02/2008, Blubaugh, David A. [EMAIL PROTECTED] wrote:
 Bill,

 Please ignore the security message.   The information on FPGAs is that
they are more than capable of handling large algorithms, such as the
multidimensional FFT.  I was wondering as to what would be required in
order to combine MyHDL with Sage???  How would I go about this
combination becoming a reality???  Any help will be more than
appreciated.


 David




 -Original Message-
 From: Bill Hart [mailto:[EMAIL PROTECTED]
 Sent: Monday, February 11, 2008 9:09 PM
 To: sage-devel
 Cc: Blubaugh, David A.
 Subject: Re: Fwd: SAGE for FPGA development

 Dear David Blubaugh,

 Unfortunately I already read your email before reading the security 
 notice at the bottom. What should I do? ;-)

 But seriously, regarding FPGA's, I'm somewhat out-of-touch with what
restrictions are placed on algorithms for FPGA's these days by readily
available hardware. Do you have some up-to-date information on this?

 Perhaps supporting FPGA's should be the domain of something like GMP
and other underlying numerical packages (or the SAGE versions of such
packages). For example I can certainly imagine an FFT running on an FPGA
to multiply huge integers.

 Regards,

 Bill Hart.



 On 8 Feb, 01:20, William Stein [EMAIL PROTECTED] wrote:
  --- Forwarded message ---
  From: Blubaugh, David A. [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
 
  Cc:
  Subject: SAGE for FPGA development
  Date: Thu, 07 Feb 2008 14:26:13 -0800
 
  Sir,
 
  I was wondering if it was possible to integrate MyHDL into SAGE???
  This would hopefully allow for the development of a system that 
  could be utilized to develop numerical algorithms onto FPGAs.
 
  Thanks,
 
  David Blubaugh
 
  This e-mail transmission contains information that is confidential
and may be privileged.   It is intended only for the addressee(s) named
above. If you receive this e-mail in error, please do not read, copy or
disseminate it in any manner. If you are not the intended recipient, any
disclosure, copying, distribution or use of the contents of this
information is prohibited. Please reply to the message immediately by
informing the sender that the message was misdirected. After replying,
please erase it from your computer system. Your assistance in correcting
this error is appreciated.
 
  --
  William Stein
  Associate Professor of Mathematics
  University of Washingtonhttp://wstein.org

-- 
http://mail.python.org/mailman/listinfo/python-list


RE: SAGE for FPGA development

2008-02-14 Thread Blubaugh, David A.
Bill,  


Let me first say that my FPGA experiences are of the following nature:

1.) Developed control algorithms onto a FPGA that were utilized to
control a switch-reluctance motor (three-phase as well six-phase).  

2.) I am currently in the process of developing a specialized
Multidimensional FFT processor that can be utilized to determine the
frequency content and angle of arrival of a target via a linear sensor
array.  

I believe that you are deeply mistaken about that I would be the only
person to use such a system.  The FPGA market will only increase as more
embedded systems utilize more and more FPGAs for the processing needs,
since embedded system are being task with more computationally intensive
tasks, such as for example, image digital signal processing within
portable digital cameras.  Electrical and Computer Engineers could start
to utilize SAGE for system programming and development, not just only
mathematicians or physicists doing their own selected work.

Also, I think that you may have the wrong idea of porting SAGE to be
executed within a FPGA.  What I had in mind was to have MyHDL embedded
within SAGE, where sage could handle the graphical plot outputs of what
is being generated by MyHDL.  To be absolutely clear, SAGE could be used
to handle the graphs for the simulation side of what the logic that is
being generated by MyHDL embedded within the SAGE framework.  This could
help in testing algorithms as they are being generated into verilog FPGA
logic, by having a graphical experience within the entire development
process.


If you have any more additional questions, please contact me as soon as
possible.  


Thanks,

David Blubaugh





 

-Original Message-
From: Bill Hart [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 14, 2008 11:46 AM
To: Blubaugh, David A.
Cc: python-list@python.org; William Stein
Subject: Re: SAGE for FPGA development

David,

I see that if MyHDL was in SAGE, then it could be used to do what you
suggest. But why not get a python interpreter and still do what you
suggest. I don't see the advantage to putting it into SAGE. Who else
would use it? Is there a large group of mathematicians who have access
to FPGA hardware?

Also, you didn't answer my question about what expertise you have.

William Stein is the maintainer of SAGE, so he would be able to say more
about what fits with the design goals of SAGE, but my feeling is that
something would only be added to SAGE if it were going to benefit a
large base of its users (or bring a large base of users to SAGE). At
this point I only see one person who might potentially use this, i.e.
you.

Sorry to seem a little discouraging, but I need a little more
information to launch into a massive project to put FFT's onto FPGA's
for use in SAGE. I mean, can I reasonably afford an FPGA which would be
big enough for this and which I can put into my own home computer?
Is this the way of the future for mathematicians? Should we all be
buying these things? What is performance like on these things?

I *might* be interested, but I need to know a little more.

Bill.

On 14/02/2008, Blubaugh, David A. [EMAIL PROTECTED] wrote:
 Bill,

  The potential idea that I had in store for SAGE would be to first be

 able to develop complicated algorithms onto hardware.  What I mean by

 this is to take for example, a FFT and then be able to map the entire

 algorithm into hardware, in a reasonable amount of time.  It currently

 takes a few months to develop floating or fixed-point algorithms onto

 hardware. The idea behind this is that an algorithm would no longer be

 limited by a von-Neumann based architecture, which means that the  
 algorithm could theoretically process data as fast as the material
  science of semiconductors will allow.   That would be the ultimate
goal.
  I believe SAGE is more than capable to turn this into a reality, will

 the inclusion of MyHDL.  Are you interested in being apart of this  
 development??

  Thanks,


  David Blubaugh








  -Original Message-
  From: Bill Hart [mailto:[EMAIL PROTECTED]

 Sent: Wednesday, February 13, 2008 7:45 PM
  To: Blubaugh, David A.
  Cc: William Stein
  Subject: Re: Fwd: SAGE for FPGA development

  Hi David,

  I guess I don't know much about programming for FPGA's, though I know

 a  few people who do.

  From what I can gather from the MyHDL website, the package allows one

 to  specify silicon using python (converting the python to verilog
code).
  That seems like a powerful tool for designing silicon, but I can't 
 quite  see why one would put this in SAGE. Yes, one would then be able

 to  specify silicon circuits in SAGE, but that's not going to allow 
 SAGE to  run on FPGA's.

  To make it useful, one would then need to modify some of the 
 underlying  packages in SAGE, such as GMP, so that they run through
the FPGA.
  Alternatively, one would need to program specific fundamental SAGE  
 functions using MyHDL, then modify the higher level SAGE

RE: SAGE for FPGA development

2008-02-14 Thread Blubaugh, David A.
 because labview is neither free nor open source.  Labview is not the
route to go for someone like me who has no real capital.  


David Blubaugh








-Original Message-
From: Stef Mientki [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 14, 2008 1:25 PM
To: python-list@python.org
Subject: Re: SAGE for FPGA development

Blubaugh, David A. wrote:
 Bill,


 Let me first say that my FPGA experiences are of the following nature:

 1.) Developed control algorithms onto a FPGA that were utilized to
 control a switch-reluctance motor (three-phase as well six-phase).  

 2.) I am currently in the process of developing a specialized
 Multidimensional FFT processor that can be utilized to determine the
 frequency content and angle of arrival of a target via a linear sensor
 array.  

 I believe that you are deeply mistaken about that I would be the only
 person to use such a system.  The FPGA market will only increase as
more
 embedded systems utilize more and more FPGAs for the processing needs,
 since embedded system are being task with more computationally
intensive
 tasks, such as for example, image digital signal processing within
 portable digital cameras.  Electrical and Computer Engineers could
start
 to utilize SAGE for system programming and development, not just only
 mathematicians or physicists doing their own selected work.

 Also, I think that you may have the wrong idea of porting SAGE to be
 executed within a FPGA.  What I had in mind was to have MyHDL embedded
 within SAGE, where sage could handle the graphical plot outputs of
what
 is being generated by MyHDL.  To be absolutely clear, SAGE could be
used
 to handle the graphs for the simulation side of what the logic that is
 being generated by MyHDL embedded within the SAGE framework.  This
could
 help in testing algorithms as they are being generated into verilog
FPGA
 logic, by having a graphical experience within the entire development
 process.


 If you have any more additional questions, please contact me as soon
as
 possible.  

   
Why not use LabView, it seems to have good FPGA support ?
cheers,
Stef



This e-mail transmission contains information that is confidential and may be 
privileged.   It is intended only for the addressee(s) named above. If you 
receive this e-mail in error, please do not read, copy or disseminate it in any 
manner. If you are not the intended recipient, any disclosure, copying, 
distribution or use of the contents of this information is prohibited. Please 
reply to the message immediately by informing the sender that the message was 
misdirected. After replying, please erase it from your computer system. Your 
assistance in correcting this error is appreciated.


-- 
http://mail.python.org/mailman/listinfo/python-list


RE: Dear David

2008-02-08 Thread Blubaugh, David A.

Steve,


I have discontinued the use of ??  a long time ago.  Why is this
still a problem?  


David



 

-Original Message-
From: Steve Holden [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 08, 2008 10:52 AM
To: python-list@python.org
Subject: Re: Dear David

Dan Upton wrote:
 On Feb 7, 2008 8:59 PM, ajaksu [EMAIL PROTECTED] wrote:
 On Feb 7, 10:05 pm, Blubaugh, David A. [EMAIL PROTECTED]
wrote:
 I do not understand why people such as yourself cannot construct 
 anything but insults and complaints.
 I can help with that. People asked politely a few days ago. Didn't 
 you see it? It happens because you're not following basic etiquette 
 and common practice for online communication. That makes your 
 messages annoying and unpleasant, so people complain and insult in
return.
 Things like USING CAPS AND LOTS OF PUNCTUATION SUCkS!
 IT MAKES READING HARDER!!! LIKE HELL!1!1!!1!
 one!

SEE?
?
 ??


??
 ???
 ??? YOU DO,
 RIGHT
 ?


???
 
 ?NO??
 
 I don't know, I'm inclined to agree with him.  Repeatedly replying to 
 bash his use of grammar or punctuation is unnecessary.  Replying to 
 the list to mock repeatedly is doubly unnecessary.  If nothing else, 
 there comes a point where you should say look, we tried to help him 
 with his mailing list ethics, but it's just not working and LEAVE IT 
 ALONE.
 
 And speaking of annoyances, changing the subject again and again is 
 kind of annoying, too.  At least this one was changing the subject 
 line to legitimately a different topic, unlike Steve's I changed the 
 topic because it 'hurt my eyes' to look at that many consecutive 
 question marks.
 
Hey, all *I* did was remove superfluous punctuation. I left all the
other text in the title alone. I believe I then left the thread alone
too, having no way to constructively help David with his technical
issues. I thought that was a legitimate change of subject line.

regards
  Steve
-- 
Steve Holden+1 571 484 6266   +1 800 494 3119
Holden Web LLC  http://www.holdenweb.com/



This e-mail transmission contains information that is confidential and may be 
privileged.   It is intended only for the addressee(s) named above. If you 
receive this e-mail in error, please do not read, copy or disseminate it in any 
manner. If you are not the intended recipient, any disclosure, copying, 
distribution or use of the contents of this information is prohibited. Please 
reply to the message immediately by informing the sender that the message was 
misdirected. After replying, please erase it from your computer system. Your 
assistance in correcting this error is appreciated.


-- 
http://mail.python.org/mailman/listinfo/python-list


MyHDL project!

2008-02-08 Thread Blubaugh, David A.
 



From: Dan Fabrizio [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 08, 2008 2:56 PM
To: Blubaugh, David A.
Subject: Re: MyHDL project !


David,

No problem with the mailing list, others might have some experience that
could be useful.  Let me know  how you make out this weekend,  I will be
doing the same on my end.   FYI,  I'm workin on an iMac.

Dan




On Feb 8, 2008 2:25 PM, Blubaugh, David A. [EMAIL PROTECTED] wrote:


Hi Dan,
 
I think that is a great idea.  However, I have done additional
reading and it appears that SAGE is really nothing more than python wrap
with scipy and laplack.  Therefore, I think we can start on the same
thing together, since there is little reason to start a divergence
already in this project.  I will try to integrate python with scipy and
MyHDL this weekend and I be giving you updates during the weekend.  I
will try and see what I can get at this time.  Also, do you have any
objections to me forwarding this message to the python community mailing
list??  thanks for being a friend.  
 
Thanks,
 
David Blubaugh
 
 
Also, before I forget to mention.  I am currently residing in
Springboro, Ohio, which is not far from Wright-Patterson Air Force Base.
 
 





From: Dan Fabrizio [mailto:[EMAIL PROTECTED] 

Sent: Friday, February 08, 2008 1:16 PM 

To: Blubaugh, David A.
Subject: Re: MyHDL project !


Hi David,

No need to apologize.  Reply when you get a chance,  I realize
we all have other things we need to do like work and errands and family
and home projects, etc...   I don't know at this point which one would
be better but let's evaluate both and try to select the best for our
needs.  How about if you look at Sage and I look at SciPy, maybe we do a
simple DSP algorithm ( FIR filter ) in both if needed?   What do you
think?We could do a floating point version, then follow up with a
fixed point version and then compare notes.   Just  some of my thoughts,
what are yours?

I live in USA on the east coast very close to Philadelphia, Pa.
How about you,  where do you live?

I have strong interest in the development EDA CAD tools like
MyHDL.   Most of my work recently has been in ASIC and FPGA design for
distributed digital audio and wireless communications products.  I have
been working
on a Timing Analyzer program for a few years.  It is about 75%
complete but is taking longer than expected being a part time effort.  I
used Java and didn't know about Python when I started.   Tcl/Tk is very
popular in a lot of CAD tools I use but it looks like Python is starting
to become popular as well.  I have thought about converting the
application to Python but haven't decided for sure yet.

Regards,
Dan

   





On Feb 8, 2008 12:33 PM, Blubaugh, David A.
[EMAIL PROTECTED] wrote:


Dan,
 
 
Let first apologize for not answering your message
sooner.  I was currently experiencing car problems and was extremely
late to work.  I arrived at work almost at 12:00.  My reason for
selecting the SAGE environment, is that the SAGE environment appears to
be a far more mature environment than SciPy/NumPy/Matplotlib
combination.  I thought that using SAGE could be able to develop better
results sooner than the other combination.  However, the most important
thing to keep in mind for any endeavor is that we MUST keep everything
involved as simple as possible.  Which do you believe would be easier to
develop and use SAGE or a SciPy/NumPy/Matplotlib combination???  Thanks
for all of your sincere help and consideration.  
 
 
David
 
 




From: Dan Fabrizio [mailto:[EMAIL PROTECTED] 

Sent: Thursday, February 07, 2008 7:59 PM 

To: Blubaugh, David A.
Subject: Re: MyHDL project !


Hi David,

Your welcome.  I am glad to have found a new friend as
well and yes, I am interested in helping you on 
this project.

I have a question,  why have you decided to use sage and
not SciPy/NumPy/Matplotlib combination?

Dan



On Feb 7, 2008 5:51 PM, Blubaugh, David A.
[EMAIL PROTECTED] wrote:


Hello Dan,
 
Thank you very much for your reply.  Yes, I am

MyHDL project!!

2008-02-07 Thread Blubaugh, David A.
 sir,


Is there still a possibility to collaborate???  


David Blubaugh


-Original Message-
From: Blubaugh, David A. 
Sent: Friday, February 01, 2008 10:44 AM
To: 'chewie54'
Cc: 'python-list@python.org'
Subject: MyHDL project !

Dan,


I would be honored to start a project such as that in mind.  How do we
begin ??


David Blubaugh


 

-Original Message-
From: chewie54 [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 31, 2008 9:34 PM
To: python-list@python.org
Subject: Re: Will Python on day
replaceMATLAB?

 I have been evaluating the python environment ever more closer.  I 
 believe I can interface python with a development environment known as

 the ImpulseC environment.  The ImpulseC environment develops C to VHDL
 for FPGA development. I would especially love to interface Python
 with ImpulseC and the graphing capabilities of GNU Plot and SciPy in 
 order to recreate a VHDL development environment that will be just as 
 capable as a $50,000 dollar Matlab to VHDL toolbox.  This is also a 
 part of my Masters thesis.  Is anyone willing to help in this
endeavor?

 David Blubaugh


Why not use MyHDL which is written in Python and translates to Verilog.
I assume ImpulseC is a commercial product and costs a log.  MyHDL is
free.
If you have any interests in combining MyHDL with SciPy and NumPy I
would be interested in getting involved.

Dan Fabrizio


This e-mail transmission contains information that is confidential and may be 
privileged.   It is intended only for the addressee(s) named above. If you 
receive this e-mail in error, please do not read, copy or disseminate it in any 
manner. If you are not the intended recipient, any disclosure, copying, 
distribution or use of the contents of this information is prohibited. Please 
reply to the message immediately by informing the sender that the message was 
misdirected. After replying, please erase it from your computer system. Your 
assistance in correcting this error is appreciated.


-- 
http://mail.python.org/mailman/listinfo/python-list


RE: Dear David (was: MyHDL project)

2008-02-07 Thread Blubaugh, David A.
I do not understand why people such as yourself cannot construct
anything but insults and complaints.  Please e-mail me something that is
of reasonable technological value regarding Python development, not just
informing me that that my messages are difficult to read under
circumstances that are ridiculous at best.  thanks.

David



-Original Message-
From: ajaksu [mailto:[EMAIL PROTECTED] 
Sent: Thursday, February 07, 2008 5:49 PM
To: python-list@python.org
Subject: Re: Dear David (was: MyHDL project)

On Feb 7, 4:48 pm, Blubaugh, David A. [EMAIL PROTECTED] wrote:
  sir,

 Is there still a possibility to collaborate???

 David Blubaugh

Dear David A. Blubaugh,
Could you please make it a little less painful to read your messages?
You're giving a bad name to Belcan, too.

Daniel


This e-mail transmission contains information that is confidential and may be 
privileged.   It is intended only for the addressee(s) named above. If you 
receive this e-mail in error, please do not read, copy or disseminate it in any 
manner. If you are not the intended recipient, any disclosure, copying, 
distribution or use of the contents of this information is prohibited. Please 
reply to the message immediately by informing the sender that the message was 
misdirected. After replying, please erase it from your computer system. Your 
assistance in correcting this error is appreciated.


-- 
http://mail.python.org/mailman/listinfo/python-list


MyHDL project !!!!!

2008-02-01 Thread Blubaugh, David A.
Dan,


I would be honored to start a project such as that in mind.  How do we
begin ??


David Blubaugh


 

-Original Message-
From: chewie54 [mailto:[EMAIL PROTECTED] 
Sent: Thursday, January 31, 2008 9:34 PM
To: python-list@python.org
Subject: Re: Will Python on day
replaceMATLAB?

 I have been evaluating the python environment ever more closer.  I 
 believe I can interface python with a development environment known as

 the ImpulseC environment.  The ImpulseC environment develops C to VHDL
 for FPGA development. I would especially love to interface Python
 with ImpulseC and the graphing capabilities of GNU Plot and SciPy in 
 order to recreate a VHDL development environment that will be just as 
 capable as a $50,000 dollar Matlab to VHDL toolbox.  This is also a 
 part of my Masters thesis.  Is anyone willing to help in this
endeavor?

 David Blubaugh


Why not use MyHDL which is written in Python and translates to Verilog.
I assume ImpulseC is a commercial product and costs a log.  MyHDL is
free.
If you have any interests in combining MyHDL with SciPy and NumPy I
would be interested in getting involved.

Dan Fabrizio


This e-mail transmission contains information that is confidential and may be 
privileged.   It is intended only for the addressee(s) named above. If you 
receive this e-mail in error, please do not read, copy or disseminate it in any 
manner. If you are not the intended recipient, any disclosure, copying, 
distribution or use of the contents of this information is prohibited. Please 
reply to the message immediately by informing the sender that the message was 
misdirected. After replying, please erase it from your computer system. Your 
assistance in correcting this error is appreciated.


-- 
http://mail.python.org/mailman/listinfo/python-list


MyHDL project for FPGA development!

2008-02-01 Thread Blubaugh, David A.
Dan,
 
Thank you very much for your reply. My Master's thesis is for Wright
State University and is of the following nature:
 
 
I am currently engaged with a Masters project, that utilizes a linear
array of isotropic sensors, or in my case electromagnetic antennas. I am
trying to develop a specialized Multidimensional FFT processor, that can
determine the angle of arrival and frequency content of a perceived
target with respect to the position of the linear array.  I should
further state that this Multidimensional FFT processor is currently of
only two dimensions.   Therefore, the MDFFT will only have a result of
frequency value versus angle of arrival of the target with respect to
the position of the linear array.  There is a great deal of mathematics
that are involved (SciPy), especially considering that in order to model
the two-dimensional signal of the linear sensor array, I have to utilize
concepts borrowed from differential geometry.  This is why I will need
to utilize a toolset like SciPy with python.  I would still like to
include the ImpulseC environment, since the environment does provide an
interesting connection between FPGA hardware and software running on
embedded processors ,such as the Power PC on Xilinx FPGAS.  I believe
that a marriage between Python, ImpulseC, MyHDL, SciPy, Gene Expression
Programming, and GNU Plot will develop into a very interesting and
powerful algorithm development environment for FPGAS.  I will also need
a way to develop floating-point hardware, since I will need to have the
dynamic range of floating-point in order to determine the angle of
arrival of targets placed many miles away from the linear sensor array.
This is why Impulse C should still be considered, since they provide the
ability of generating efficient floating-point hardware.   I have to go
now, since I have to report for my employment duties. In conclusion, I
would very much to continue development for a Python, Scipy, MyHDL
combined.   If there are any more questions, Dan, please contact me as
soon as possible.  
 
 
Respectfully,
 
David 



From: Dan Fabrizio [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 01, 2008 11:14 AM
To: Blubaugh, David A.
Subject: Re: MyHDL project !


David, 


Let's start by discussing your masters thesis subject in more detail. 
We can take a project from conception to hardware using MyHDL,  NumPy 
and SciPy.  Maybe you could use this project as a proof for your 
thesis showing this methodology warrants consideration compared other 
ASIC/FPGA flows. 


Let's discuss some of your ideas and decide how to proceed. 


Dan 


On Feb 1, 2008 10:43 AM, Blubaugh, David A. [EMAIL PROTECTED]
wrote:


Dan,


I would be honored to start a project such as that in mind.  How
do we
begin ??


David Blubaugh




-Original Message-
From: chewie54 [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 31, 2008 9:34 PM
To: python-list@python.org
Subject: Re: Will Python on day

replaceMATLAB?

 I have been evaluating the python environment ever more
closer.  I
 believe I can interface python with a development environment
known as

 the ImpulseC environment.  The ImpulseC environment develops C
to VHDL
 for FPGA development. I would especially love to interface
Python
 with ImpulseC and the graphing capabilities of GNU Plot and
SciPy in
 order to recreate a VHDL development environment that will be
just as
 capable as a $50,000 dollar Matlab to VHDL toolbox.  This is
also a
 part of my Masters thesis.  Is anyone willing to help in this
endeavor?

 David Blubaugh


Why not use MyHDL which is written in Python and translates to
Verilog.
I assume ImpulseC is a commercial product and costs a log.
MyHDL is
free.
If you have any interests in combining MyHDL with SciPy and
NumPy I
would be interested in getting involved.

Dan Fabrizio


This e-mail transmission contains information that is
confidential and may be privileged.   It is intended only for the
addressee(s) named above. If you receive this e-mail in error, please do
not read, copy or disseminate it in any manner. If you are not the
intended recipient, any disclosure, copying, distribution or use of the
contents of this information is prohibited. Please reply to the message
immediately by informing the sender that the message was misdirected.
After replying, please erase it from your computer system. Your
assistance in correcting this error is appreciated.





-- 
http://mail.python.org/mailman/listinfo/python-list

PLEASE ACCEPT MY SINCERE APOLOGIES

2008-01-31 Thread Blubaugh, David A.
To Everyone on the planet Earth,  


Please accept my apologies for

Why the Hell has nobody answered my question.


I am just trying to finish a Masters thesis that is quite beyond
anything in this world.  


David Blubaugh





 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of [EMAIL PROTECTED]
Sent: Thursday, January 31, 2008 7:30 PM
To: python-list@python.org
Subject: Python-list Digest, Vol 53, Issue 2

Send Python-list mailing list submissions to
python-list@python.org

To subscribe or unsubscribe via the World Wide Web, visit
http://mail.python.org/mailman/listinfo/python-list
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]

You can reach the person managing the list at
[EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific than
Re: Contents of Python-list digest...

This e-mail transmission contains information that is confidential and may be 
privileged.   It is intended only for the addressee(s) named above. If you 
receive this e-mail in error, please do not read, copy or disseminate it in any 
manner. If you are not the intended recipient, any disclosure, copying, 
distribution or use of the contents of this information is prohibited. Please 
reply to the message immediately by informing the sender that the message was 
misdirected. After replying, please erase it from your computer system. Your 
assistance in correcting this error is appreciated.


-- 
http://mail.python.org/mailman/listinfo/python-list


Will Python on day replace MATLAB?????????????????????????????????????????????????????

2008-01-31 Thread Blubaugh, David A.
To All,


I have been evaluating the python environment ever more closer.  I
believe I can interface python with a development environment known as
the ImpulseC environment.  The ImpulseC environment develops C to VHDL
for FPGA development. I would especially love to interface Python
with ImpulseC and the graphing capabilities of GNU Plot and SciPy in
order to recreate a VHDL development environment that will be just as
capable as a $50,000 dollar Matlab to VHDL toolbox.  This is also a part
of my Masters thesis.  Is anyone willing to help in this endeavor?  


David Blubaugh   







-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of [EMAIL PROTECTED]
Sent: Thursday, January 31, 2008 1:06 PM
To: python-list@python.org
Subject: Python-list Digest, Vol 52, Issue 448

Send Python-list mailing list submissions to
python-list@python.org

To subscribe or unsubscribe via the World Wide Web, visit
http://mail.python.org/mailman/listinfo/python-list
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]

You can reach the person managing the list at
[EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific than
Re: Contents of Python-list digest...

This e-mail transmission contains information that is confidential and may be 
privileged.   It is intended only for the addressee(s) named above. If you 
receive this e-mail in error, please do not read, copy or disseminate it in any 
manner. If you are not the intended recipient, any disclosure, copying, 
distribution or use of the contents of this information is prohibited. Please 
reply to the message immediately by informing the sender that the message was 
misdirected. After replying, please erase it from your computer system. Your 
assistance in correcting this error is appreciated.


-- 
http://mail.python.org/mailman/listinfo/python-list


Why the HELL has nobody answered my question !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

2008-01-30 Thread Blubaugh, David A.
I do not understand why no one has answered the following question:

Has anybody worked with Gene Expression Programming   


David Blubaugh






 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of [EMAIL PROTECTED]
Sent: Wednesday, January 30, 2008 6:10 PM
To: python-list@python.org
Subject: Python-list Digest, Vol 52, Issue 437

Send Python-list mailing list submissions to
python-list@python.org

To subscribe or unsubscribe via the World Wide Web, visit
http://mail.python.org/mailman/listinfo/python-list
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]

You can reach the person managing the list at
[EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific than
Re: Contents of Python-list digest...

This e-mail transmission contains information that is confidential and may be 
privileged.   It is intended only for the addressee(s) named above. If you 
receive this e-mail in error, please do not read, copy or disseminate it in any 
manner. If you are not the intended recipient, any disclosure, copying, 
distribution or use of the contents of this information is prohibited. Please 
reply to the message immediately by informing the sender that the message was 
misdirected. After replying, please erase it from your computer system. Your 
assistance in correcting this error is appreciated.


-- 
http://mail.python.org/mailman/listinfo/python-list


RE: Python Genetic Algorithm

2008-01-28 Thread Blubaugh, David A.
Sir,

Have you ever worked with Gene Expression Programming


David Blubaugh




  

-Original Message-
From: Wildemar Wildenburger [mailto:[EMAIL PROTECTED] 
Sent: Monday, January 28, 2008 7:24 AM
To: python-list@python.org
Subject: Re: Python Genetic Algorithm

Steven D'Aprano wrote:
 I'm not sure I'm following you here. So a chromosome is bit of 
 functionality, right? So basically it is a function. So my advice 
 would be to write these functions and store it to the 
 indivuals-list like
 so:
 
 No, a chromosome is a bit of *data*: a noun, not a verb. Read these 
 bits
 again:
 
 Individuals HAVE what's called a chromosome - a SPECIFICATION of what

 it contains. For example, common chromosomes are BIT STRINGS, ...
 
Oh, OK. I *sort of* got this. Sort of. My reasoning was that these
functions would return their associated representation upon being
called. Which makes not much sense, especially after your explanation.



 Some background which may help you understand what the OP is asking
for.
 
 [snip little GA-intro]
 
Thanks Steven, that sure was useful. I think I now have a new toy
hammer. I'm sure I'll see myself looking for toy nails everywhere over
the next few weeks.

:)
/W


This e-mail transmission contains information that is confidential and may be 
privileged.   It is intended only for the addressee(s) named above. If you 
receive this e-mail in error, please do not read, copy or disseminate it in any 
manner. If you are not the intended recipient, any disclosure, copying, 
distribution or use of the contents of this information is prohibited. Please 
reply to the message immediately by informing the sender that the message was 
misdirected. After replying, please erase it from your computer system. Your 
assistance in correcting this error is appreciated.


-- 
http://mail.python.org/mailman/listinfo/python-list


Has Anyone Worked with Gene Expression Programming ???????????????????????????

2008-01-25 Thread Blubaugh, David A.
To Anyone,



Has anyone worked with Gene Expression Programming???  Specifically, has
anyone out there worked with pygep software package???  I have a few
questions


David Blubaugh
-- 
http://mail.python.org/mailman/listinfo/python-list

pygep

2008-01-21 Thread Blubaugh, David A.
To Anyone out there!!



I was wondering if anyone out there has had any experience with pygep
program.  this program is an open source version for Gene Expression
Programming, which I will need to utilize in order to complete my
Master's Thesis.   Thanks for any help!!



David Blubaugh 
-- 
http://mail.python.org/mailman/listinfo/python-list