Hi All,
I have two builds of paraview on the same machine. One was built with intel compilers, the other with gcc (see spec below). I’ve built some dependencies prior to the build using spack (hdf5, netcdf-c, python) but have done so using the respective compiler environments. I’m working with the Exodus-II file format, and forcing off-screen rendering.
Problem: If I use the slice filter on the domain, I get the expected result out of both. However, if I place a plane in the domain at the same location as the slice, and use the ResampleWithDataset filter, I find that the Intel-compiled code produces very unexpected results.
I’m launching the servers the exact same way, using a different server-port for each:
mpirun -np 8 ./pvserver --force-offscreen-rendering --mpi
I’ve also put my “Remote Render Threshold” to zero to ensure that rendering is taking place on the server machine.
If it’d be helpful, I can upload CMakeCache.txt files for each. Below are the flags I’m passing to CMake:
-DCMAKE_CXX_FLAGS:STRING='-Wl,--copy-dt-needed-entries'
-DCMAKE_C_FLAGS:STRING='-Wl,--copy-dt-needed-entries'
-DBUILD_TESTING:BOOL=OFF
-DCMAKE_BUILD_TYPE_paraview:STRING=Release
-DCMAKE_INSTALL_PREFIX:PATH=" + somewhere)
-DENABLE_paraviewsdk:BOOL=ON
-Dsuperbuild_download_location:PATH=" + somewhere)
-Dparaview_SOURCE_SELECTION:STRING=git
-Dparaview_GIT_TAG:STRING=v5.8.0
-Dparaview_SOURCE_DIR:PATH=" + somewhere)
-DENABLE_vtkm:BOOL=OFF
-DENABLE_python:BOOL=ON
-DENABLE_python3:BOOL=ON
-DUSE_SYSTEM_python3:BOOL=ON
-DENABLE_paraview:BOOL=ON
-DENABLE_png:BOOL=ON
-DENABLE_osmesa:BOOL=ON
-Dmesa_USE_SWR:BOOL=OFF
-DENABLE_ospray:BOOL=ON
-DBUILD_SHARED_LIBS:BOOL=ON
-DBUILD_SHARED_LIBS_paraview=OFF
-DENABLE_mpi:BOOL=ON
-DPARAVIEW_USE_MPI:BOOL=ON
-DUSE_SYSTEM_mpi:BOOL=ON
-DENABLE_zlib:BOOL=ON
-DUSE_SYSTEM_zlib:BOOL=ON
-DENABLE_hdf5:BOOL=ON
-DUSE_SYSTEM_hdf5:BOOL=ON
-DENABLE_netcdf:BOOL=ON
-DUSE_SYSTEM_netcdf:BOOL=ON
-DPARAVIEW_ENABLE_MOTIONFX:BOOL=OFF
-DPARAVIEW_EXTRA_CMAKE_ARGUMENTS='-DVTK_MPI_NUMPROCS=4;-DVTK_MODULE_ENABLE_ParaView_PythonCatalyst=YES;-DVTK_MODULE_ENABLE_ParaView_Catalyst=YES;-DVTK_MODULE_ENABLE_ParaView_cgns=NO;-DVTK_MODULE_ENABLE_ParaView_VTKExtensionsCGNSReader=NO;-DVTK_MODULE_ENABLE_ParaView_VTKExtensionsCGNSWriter=NO'
Does anyone have any ideas or thoughts? Thanks so much for your time!