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
Problem using mpiexec with python and mpi4py
I have a PC with Linux OpenSuse Leap 15.3.
I use python through Anaconda version 4.11.0.
I have mpi4py installed but when I want to run a simple program like:
from mpi4py import MPI
comm = MPI.COMM_WO...
Miguel
Votes: 0
Answers: 1
What is the correct way to handle a "mutex-like" lock for a mpi4py function call?
I have a function call in python which uses a package method that is non-thread safe (The package writes to three temporary files which have the same name). As the data needed to pass into this method...
Phantom139
Votes: 0
Answers: 1