@@ -688,7 +688,7 @@ def run_uvdata_uvsim(
688
688
689
689
# Allow up to 50% of available memory for SkyModel data.
690
690
skymodel_mem_max = 0.5 * mem_avail
691
- print ( f"Mem { mem_avail } , footprint { skymodel_mem_footprint } " )
691
+
692
692
Nsky_parts = np .ceil (skymodel_mem_footprint / float (skymodel_mem_max ))
693
693
Nsky_parts = max (Nsky_parts , 1 )
694
694
if Nsky_parts > Nsrcs :
@@ -786,7 +786,7 @@ def run_uvdata_uvsim(
786
786
# These lines are affected by issue 179 of line_profiler, so the nocover
787
787
# above will need to stay until this issue is resolved (see profiling.py).
788
788
task_inds = np .array (uvdata_indices )
789
- print ( f"inds shape { task_inds . shape } " )
789
+
790
790
bl_inds = task_inds [:, 0 ] % Nbls
791
791
time_inds = (task_inds [:, 0 ] - bl_inds ) // Nbls
792
792
Ntimes_loc = np .unique (time_inds ).size
@@ -814,7 +814,6 @@ def run_uvsim(
814
814
params ,
815
815
return_uv = False ,
816
816
quiet = False ,
817
- thread_multiple = False ,
818
817
backend = "progsteps" ,
819
818
):
820
819
"""
@@ -828,9 +827,6 @@ def run_uvsim(
828
827
If true, do not write results to file and return uv_out. (Default False)
829
828
quiet: bool
830
829
If True, do not print anything to stdout. (Default False)
831
- thread_multiple : bool
832
- When set to True uses the MPI.THREAD_MULTIPLE otherwise use MPI.THREAD_SERIALIZED
833
- (Default False)
834
830
backend : str
835
831
Specifies the backend monitor for simulation progress and display.
836
832
The `tqdm` module is required for 'tqdm' and 'send_recv'
0 commit comments