[docs]defget_simulation_adapter(name:str,comm=None):""" Return the adapter corresponding to the given simulator name. :param str name: Name of the simulator. :param comm: The mpi4py MPI communicator to use. Only nodes in the communicator will participate in the simulation. The first node will idle as the main node. """from._backendsimportget_simulation_adaptersreturnget_simulation_adapters()[name](comm=comm)