Skip to content
Snippets Groups Projects
  1. Sep 23, 2014
  2. Sep 22, 2014
  3. Sep 21, 2014
    • Burlen Loring's avatar
      fix MPI tags where greater than MPI_TAG_UB · f91b31b6
      Burlen Loring authored
      While writing data as pvtp on NERSC's Cray XC30, in some case
      ParaView crashed with the error:
      
        MPI_Recv(113): Invalid tag, value is 3389002
      
      This patch reduces tag values used in MPI send/recv calls
      below reported value of MPI_TAG_UB.
      
        MPI VERSION = CRAY MPICH version 7.0.0 (ANL base 3.1)
        MPI_TAG_UB = 2097151
      
      Change-Id: I1a867a1e2f61f425fbf59dc19283106e7693226a
      f91b31b6
  4. Sep 20, 2014
  5. Sep 19, 2014
    • Utkarsh Ayachit's avatar
      Add workaround to skip display test. · aa012001
      Utkarsh Ayachit authored
      In some setups, the X server may not be ready for clients when the
      pvserver starts, but would be by the time a render view is created.
      Added a workaround for such cases. By specifying the
      "--disable-xdisplay-test" command line option on the rendering server
      processes, you can skip this test entirely.
      
      Change-Id: I061618b755907d7633f1d57e222a4790f37cdafa
      aa012001
    • Utkarsh Ayachit's avatar
      Fix search path for ".plugins" in static builds. · 5956702f
      Utkarsh Ayachit authored
      On linux, with static builds when running from install dir, we need to
      look for .plugins file in the lib directory, not the bin. This fixes
      that.
      
      Change-Id: I8ef91a85356566bb7738e749cadca3f3105054b9
      5956702f
    • Utkarsh Ayachit's avatar
      Fixed issues with plugins and static pvserver. · bd526f0b
      Utkarsh Ayachit authored
      The problem setup is this:
      
      I have two local builds of ParaView, one static and one shared.
      First, I connect with shared pvserver as (cs://localhost) and load some
      distributed plugin (e.g. Moments) -- works as expected.
      
      Next, I restart ParaView and connect to the static pvserver using the
      same url (cs://localhost). Now attempting to load the same plugin will fail.
      
      This happens because the client tells the server to load the plugin
      configuration XML from its QSettings (since we want to restore auto-load
      preferences, as well as extra use-loaded plugins). The second time, it
      uses the XML obtained from the pvserver ran the first time (which was a
      shared build) and hence has different paths for the plugins.
      
      This interim fix addresses this issue by not overriding the paths the
      server had determined. We need a cleaner fix for plugin configuration
      management.
      
      connect with the shared pvserver
      
      Change-Id: Iaa7ce40928e34418ac59df9d23b04e704375db5d
      bd526f0b
    • Utkarsh Ayachit's avatar
      Don't load shared libraries in static builds. · 50a13f4a
      Utkarsh Ayachit authored
      Fixed vtkPVPluginLoader to not attempt to load shared libraries in a
      static build of ParaView.
      
      Change-Id: I3eddbc0c369431db9d0490881854cd42084164cc
      50a13f4a
    • Utkarsh Ayachit's avatar
      Fix dashboad issues. · b4fabe91
      Utkarsh Ayachit authored
      Also make test use a magnification factor to do more aggressive testing.
      
      Change-Id: Ia49b445ead2dd827b7ebe50931f4186983350969
      b4fabe91
    • Shawn Waldon's avatar
      Keep scroll position when syntax highlighting python · 15015a05
      Shawn Waldon authored
      Change-Id: I9036f1f3201242637bad3e645aeaba76ff6621e8
      15015a05
    • Utkarsh Ayachit's avatar
      New baseline for tile display tests. · 4ce0c6c3
      Utkarsh Ayachit authored
      Change-Id: I53dcdfb52fe9fcb647e03b9253687016971771cf
      4ce0c6c3
    • Utkarsh Ayachit's avatar
      Increate tile display test thresholds. · 372e37cc
      Utkarsh Ayachit authored
      These tests are a pain! Increase the threhold. We need to make these
      less flacky in future.
      
      Change-Id: I6669273bed386d98586847f5ff1f593664b597e3
      372e37cc
    • Utkarsh Ayachit's avatar
      Pass "-dr" to pvpython when running tests. · 9771e547
      Utkarsh Ayachit authored
      Change-Id: I6ec1931506abce4c217237843533c9d707c50d3b
      9771e547
    • Utkarsh Ayachit's avatar
      Added MPAS issues with coprocessing. · 77bb9ac1
      Utkarsh Ayachit authored
      MPAS coprocessing scripts pass an a writer object that's not a proxy. We
      fix coprocessing.py to handle that.
      
      Change-Id: If06b13c1c8fec663d41633fc6e6f9d3dc0f81378
      77bb9ac1
    • Utkarsh Ayachit's avatar
      Fix chart representation being modified in render. · 20671f9c
      Utkarsh Ayachit authored
      vtkSMContextViewProxy was updating axes ranges at end of render which
      resulted in making the representation proxy modified. While this is not
      the end of the world in most cases, in symmetric batch mode, it can use
      the view proxy to be marked 'dirty' differently on ranks (since axes
      ranges never change on satellites.
      
      This hack, similar to what we do to handle updates for camera properties
      addresses that issue. We need a more gracefully support for such
      'auto-updating' properties.
      
      Added a test would fail with "pvbatch -sym" without this fix.
      
      Change-Id: I18ae6c1efd5940855097f1ad8deeae527a0b846d
      20671f9c
    • Utkarsh Ayachit's avatar
      Cleanup axes bounds computation in vtkPVXYChartView. · b922bede
      Utkarsh Ayachit authored
      vtkPVXYChartView doesn't need to compute axes bounds anywhere except
      after vtkPVXYChartView::Update(). That method gets called when any of
      the display properties or view properties change, or when data changes.
      Thus, that's the only place where we need to recompute the axes bounds.
      
      Change-Id: Id89559ca18c6f82f0e1029d044d0703697b3e24f
      b922bede
    • Utkarsh Ayachit's avatar
      Fix missing render() on resetDisplay(). · 7960da82
      Utkarsh Ayachit authored
      Change-Id: I42df17a03aa57acd29430ab3acc12c34afb45434
      7960da82
    • Utkarsh Ayachit's avatar
      Merge topic 'update_paraview_icons' · 58ab3684
      Utkarsh Ayachit authored and Kitware Robot's avatar Kitware Robot committed
      bb2e9213 Update the splash screen images.
      7b05e8eb Minor edits to About dialog formatting and layout.
      9d5f2a26 Based on popular demand, splash screens are back by default.
      21e0e226 Updating ParaView icons.
      58ab3684
  6. Sep 18, 2014
  7. Sep 17, 2014
Loading