Skip to content

Console Output

+ diff --exclude=.git --exclude=version_clubb_core.txt --exclude=version_silhs.txt -r clubb clubb_release
Only in clubb/jenkins_tests: clubb_ifort_debug_plot
Only in clubb_release/jenkins_tests: clubb_ifort_debug_run
Only in clubb/jenkins_tests: clubb_nvhpc_gpu_vs_cpu_plot
diff '--exclude=.git' '--exclude=version_clubb_core.txt' '--exclude=version_silhs.txt' -r clubb/postprocessing/pyplotgen/pyplotgen.py clubb_release/postprocessing/pyplotgen/pyplotgen.py
135d134
<         # Append date to output folder name
diff '--exclude=.git' '--exclude=version_clubb_core.txt' '--exclude=version_silhs.txt' -r clubb/postprocessing/pyplotgen/python_html_gallery/gallery.py clubb_release/postprocessing/pyplotgen/python_html_gallery/gallery.py
57c57
< def OrganizeRoot(output_folder,file_extension=".png"):
---
> def OrganizeRoot(output_dir,file_extension=".png"):
60c60
<     static_varbles.root = output_folder
---
>     static_varbles.root = output_dir
168c168
< def WriteGalleryPages(output_folder,multithreaded=False,file_extension=".png"):
---
> def WriteGalleryPages(multithreaded=False,file_extension=".png"):
171,172c171
<         output_name = str(output_folder).split('/')[-1]
<         index_file.write(static_varbles.header.replace("PyPlotgen Output",str(output_name)))
---
>         index_file.write(static_varbles.header)
222c221
< def main(output_folder, multithreaded=False, file_extension=".png"):
---
> def main(output_dir, multithreaded=False, file_extension=".png"):
224,225c223,224
<     OrganizeRoot(output_folder,file_extension)
<     WriteGalleryPages(output_folder,multithreaded=multithreaded,file_extension=file_extension)
---
>     OrganizeRoot(output_dir,file_extension)
>     WriteGalleryPages(multithreaded=multithreaded,file_extension=file_extension)
diff '--exclude=.git' '--exclude=version_clubb_core.txt' '--exclude=version_silhs.txt' -r clubb/postprocessing/pyplotgen/requirements.txt clubb_release/postprocessing/pyplotgen/requirements.txt
3c3
< matplotlib~=3.9.1
---
> matplotlib~=3.2.1
diff '--exclude=.git' '--exclude=version_clubb_core.txt' '--exclude=version_silhs.txt' -r clubb/postprocessing/pyplotgen/src/DataReader.py clubb_release/postprocessing/pyplotgen/src/DataReader.py
459c459
<             dependent_values[:] = np.nan # fill this array with nans since 0's imply the variable was 0 when instead it doesn't exist
---
>             dependent_values[:] = np.NaN # fill this array with nans since 0's imply the variable was 0 when instead it doesn't exist
diff '--exclude=.git' '--exclude=version_clubb_core.txt' '--exclude=version_silhs.txt' -r clubb/postprocessing/pyplotgen/src/interoperability.py clubb_release/postprocessing/pyplotgen/src/interoperability.py
41c41
<     return re.sub("\$[^$]*\$",'',string)
\ No newline at end of file
---
>     return re.sub('\$[^$]*\$','',string)
\ No newline at end of file
diff '--exclude=.git' '--exclude=version_clubb_core.txt' '--exclude=version_silhs.txt' -r clubb/src/SILHS/latin_hypercube_driver_module.F90 clubb_release/src/SILHS/latin_hypercube_driver_module.F90
561c561
<     r_status = curandGenerate(cu_gen, rand_pool(:,:,:,:), ngrdcol*num_samples*nz*(pdf_dim+d_uniform_extra))
---
>     r_status = curandGenerate(cu_gen, rand_pool(:,:,2:nz,:), ngrdcol*num_samples*(nz-1)*(pdf_dim+d_uniform_extra))