python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Unknown fatal error while calling C++ programm with Spawn in mpi4py
I have a Python script called manager.py, looking like this:
#!/usr/bin/python3
from mpi4py import MPI
import os
import sys
print("Running C++ workers")
cpp_mpi_info = MPI.Info.Create()
cpp...
mlinke-ai
Votes: 0
Answers: 0
Can MPI run a task-based program as OpenMP?
I'm just interested in difference between OpenMP and MPI.
Can MPI also parallelize while and recursive function like 'task' in OpenMP?
If MPI can run the task-based program, then a reduction on task i...
Tomo
Votes: 0
Answers: 1
MPI-IO only writes data from one process
For some reason, MPI-IO is only writing the data from one of my processes out to a file. I used MPI_File_open to open the file, MPI_File_set_view to set the view for each process, and MPI_File_write_a...
Mav
Votes: 0
Answers: 1
Improving a clumsy automatic cuboid domain decomposition algorithm
Introduction
For my library, I need to split up a cuboid point lattice for assignment to multiple processing elements (PEs).
As you can see, no points are shared between the PEs, and certain PEs (her...
Nitin Malapally
Votes: 0
Answers: 0