Is it possible to combine MPI (as backend) and GTK (as frontend)


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Is it possible to combine MPI (as backend) and GTK (as frontend)
# 1  
Old 06-10-2007
Is it possible to combine MPI (as backend) and GTK (as frontend)

Hello All,



i wonder if it make sense to attemp to use GTK to create a GUI as frontend handling data input and result display, and to use MPI to implement data process in the backend.



I would be very grateful if you can provide an example code.





Thanks,
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Ubuntu

Software to work and convert to pdf with good frontend

Hello, I use pdftk for join pdf and split pages and more option! But this is through terminal! I need the software with frontend and, especially, with option on button right mouse hover icon document whit option "convert direct to pdf". This software, or frontend exist? Thanks (0 Replies)
Discussion started by: enodev
0 Replies

2. UNIX for Dummies Questions & Answers

How to write a new Gdb backend?

Hi Everyone, I am new to Unix-like system and for GDB. I want to write a new GDB backend which will be possible either by GDB Generic or by GDB server or both. So does anyone has idea which one is preferable and from where and how should I start to write ? I sucessefully build gdb-7.5.50-1 in... (1 Reply)
Discussion started by: Heeka
1 Replies

3. UNIX for Advanced & Expert Users

High available frontend to WebApps behind a firewall

Hello, my question is about proposed implementation of high available and secure FrontEnd to WebApps behind a firewall. The components of the network and their relationships are as follows: 2 WebApps servers behind a firewall (BackEnd), denoted by GUI1 and GUI2, running Web Applications ... (0 Replies)
Discussion started by: MaciejS
0 Replies

4. UNIX and Linux Applications

phonon-backend-gstreamer vs phonon-backend-vlc vs phonon-backend-xine

phonon-backend-gstreamer vs phonon-backend-vlc vs phonon-backend-xine What are the advantages and disadvantages of phonon-backend-gstreamer, phonon-backend-vlc, and phonon-backend-xine. I was reading this and got curious. ... (1 Reply)
Discussion started by: cokedude
1 Replies

5. Programming

gdb/mi, frontend, windows

Hi, I am doing frontend for gdb. Got such things in place: - gdb from mingw package - windows OS - sample aplication to be debugged - my application (frontend) I can open sample application under gdb and debug it. What I want is to connect somehow from my application to gdb and debug... (0 Replies)
Discussion started by: Chrisdot
0 Replies

6. Shell Programming and Scripting

Help with Informatica Backend Shell Script

Request Any one of your to provide me a script which does the following in a single unix script. Basically Users will load data in SHARED LINK everyday, should write a UNIX SCRIPT which will ........ 1) Unix script should Open the LINK (FTP) 2) Each DIRECTORY in the link contains many... (0 Replies)
Discussion started by: informaticalabs
0 Replies

7. Programming

cdrecord frontend for dvd burning

I came across a small script called pyBurn (attached) which is a frontend for cdrecord. But it only burns cd's and doesn't even recognize my dvd-burner. I'm still learning python (very early stages) so I can't do much with it... is it possible to make it burn dvd's too? (I'm running Ubuntu Gutsy... (0 Replies)
Discussion started by: el mariachi
0 Replies

8. Shell Programming and Scripting

Kill a backend process

Hello, I am trying to kill a backend process i know i can type a simple command kill -9 pid and my process will be killed. But the task is that there are two commands in the script which run the backend process and when that script is runned then we cannot find the PID of the two commands ... (13 Replies)
Discussion started by: er_aparna
13 Replies

9. UNIX for Dummies Questions & Answers

best frontend for iptables?

Hi, I'm dealing with iptables on Linux, and even if I personally like text configuration, I believe in the case of a firewall would be nice to have a graphical tool. I've cheked several frontends like Vuurmuur and UIF, but I wanted to know your opinion on the subject. Thanks.. (3 Replies)
Discussion started by: piltrafa
3 Replies
Login or Register to Ask a Question
MPIL_Request_set_name(3)					      LAM/MPI						  MPIL_Request_set_name(3)

NAME
MPIL_Request_set_name - LAM/MPI-specific function to set a string name on an MPI_Request SYNOPSIS
#include <mpi.h> int MPIL_Request_set_name(MPI_Request req, char *name) INPUT PARAMETERS
req - MPI_Request (handle) name - Name NOTES
The name must be a null-terminated string. It is copied into internal storage during this call. ERRORS
If an error occurs in an MPI function, the current MPI error handler is called to handle it. By default, this error handler aborts the MPI job. The error handler may be changed with MPI_Errhandler_set ; the predefined error handler MPI_ERRORS_RETURN may be used to cause error values to be returned (in C and Fortran; this error handler is less useful in with the C++ MPI bindings. The predefined error handler MPI::ERRORS_THROW_EXCEPTIONS should be used in C++ if the error value needs to be recovered). Note that MPI does not guarantee that an MPI program can continue past an error. All MPI routines (except MPI_Wtime and MPI_Wtick ) return an error value; C routines as the value of the function and Fortran routines in the last argument. The C++ bindings for MPI do not return error values; instead, error values are communicated by throwing exceptions of type MPI::Exception (but not by default). Exceptions are only thrown if the error value is not MPI::SUCCESS . Note that if the MPI::ERRORS_RETURN handler is set in C++, while MPI functions will return upon an error, there will be no way to recover what the actual error value was. MPI_SUCCESS - No error; MPI routine completed successfully. MPI_ERR_ARG - Invalid argument. Some argument is invalid and is not identified by a specific error class. This is typically a NULL pointer or other such error. SEE ALSO
MPIL_Request_get_name LOCATION
mpil_rsetname.c LAM
/MPI 7.1.4 6/24/2006 MPIL_Request_set_name(3)