igraph-help
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [igraph] Re: Re: Callback for long metric calculations.


From: Chris Wj
Subject: Re: [igraph] Re: Re: Callback for long metric calculations.
Date: Fri, 12 Dec 2008 09:05:09 -0500

Tamas, I would be very interested in looking at what you have previously done. It sounds like it is along the same lines of what I am looking to do. Maybe we can revitalize and collaborate on it.

On Fri, Dec 5, 2008 at 6:15 PM, Tamas Nepusz <address@hidden> wrote:
Hi Chris,


I'm wondering what kind of issues I am going to run in to if I use the processing.Process class from pyprocessing along with the igraph.set_progress_handler method (process memory copy?).
You might try the following:

- spawn a new process with pyprocessing and build a shared queue between the parent and the child process (I think the Queue object in pyprocessing does exactly this, but I'm not sure, I've never used pyprocessing)
- set the progress handler in the child process to put the progress report in the queue
- make the parent process regularly poll the queue and print the progress report accordingly.


These are mainly ideas I have brewing about optimizing making multiple calculations. I'm also looking to slap a web interface on it, which can timeout if I make it wait for calculations to finish.
If you are planning to implement a web interface, maybe you'll find one of my older side-projects useful; this is a simple HTTP-based server-client application where the server maintains a job queue and sends the jobs in the queue to the clients that perform the calculation, repeatedly report the progress and finally send back the result to the server. Job progress can be monitored from any web browser that has access to the server. I used that for calculating properties of graphs generated according to a given graph model with various parameters -- the job description included the parameters only, the clients generated the graphs, calculated the necessary properties and sent back the results. I have never released it and it definitely needs a lot of polishing, but anyway, if it might be useful for you, let me know and I'll try to find the source code.


--
Tamas



_______________________________________________
igraph-help mailing list
address@hidden
http://lists.nongnu.org/mailman/listinfo/igraph-help


reply via email to

[Prev in Thread] Current Thread [Next in Thread]