- Sep 23, 2014
-
-
Utkarsh Ayachit authored
Change-Id: I2d9a41e0ac5c614c5218afe8f6273b4966095cc1
-
15015a05 Keep scroll position when syntax highlighting python
-
5209bc13 Minor API consistency cleanups.
-
f91b31b6 fix MPI tags where greater than MPI_TAG_UB
- Sep 22, 2014
-
-
Utkarsh Ayachit authored
Added new GetDisplayProperty() and GetViewProperties() methods for consistency. Change-Id: I12e90c04fdc378c66dc37be678460cd49916987c
-
Utkarsh Ayachit authored
The 'if' was inverted. Fixed that. Change-Id: I160776b77d8fed6d8b390108c1895619721a33fa
-
- Sep 21, 2014
-
-
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
-
- Sep 20, 2014
-
-
aa012001 Add workaround to skip display test.
-
b4fabe91 Fix dashboad issues. 4ce0c6c3 New baseline for tile display tests. 372e37cc Increate tile display test thresholds. 9771e547 Pass "-dr" to pvpython when running tests. 77bb9ac1 Added MPAS issues with coprocessing. 20671f9c Fix chart representation being modified in render. b922bede Cleanup axes bounds computation in vtkPVXYChartView. 7960da82 Fix missing render() on resetDisplay().
-
- Sep 19, 2014
-
-
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
-
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
-
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
-
Utkarsh Ayachit authored
Fixed vtkPVPluginLoader to not attempt to load shared libraries in a static build of ParaView. Change-Id: I3eddbc0c369431db9d0490881854cd42084164cc
-
Utkarsh Ayachit authored
Also make test use a magnification factor to do more aggressive testing. Change-Id: Ia49b445ead2dd827b7ebe50931f4186983350969
-
Shawn Waldon authored
Change-Id: I9036f1f3201242637bad3e645aeaba76ff6621e8
-
Utkarsh Ayachit authored
Change-Id: I53dcdfb52fe9fcb647e03b9253687016971771cf
-
Utkarsh Ayachit authored
These tests are a pain! Increase the threhold. We need to make these less flacky in future. Change-Id: I6669273bed386d98586847f5ff1f593664b597e3
-
Utkarsh Ayachit authored
Change-Id: I6ec1931506abce4c217237843533c9d707c50d3b
-
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
-
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
-
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
-
Utkarsh Ayachit authored
Change-Id: I42df17a03aa57acd29430ab3acc12c34afb45434
-
- Sep 18, 2014
-
-
Utkarsh Ayachit authored
Change-Id: I2a7b5503371e66295551e12729aad9796d3f86e1
-
Utkarsh Ayachit authored
Change-Id: I7c8471a65c0ac95a35e764de355673124f23f28a
-
Utkarsh Ayachit authored
Change-Id: Idc19300fcb019dfa7a0a543afea4869dc9eb2bf8
-
- Sep 17, 2014
-
-
Utkarsh Ayachit authored
Updating ParaView icons to a newer version -- flat shading. Change-Id: I4ba122f7899e9dad6fa99f5a70964133c9dc45ee
-
ad33f754 Updating VTK to pull in a fix to polydata.
-
Utkarsh Ayachit authored
Change-Id: I72c84d2df6122f7fe219493cfe478fbb313693cc
-
Utkarsh Ayachit authored
Added support to vtkPVRenderView to enable representations to request either remote or local rendering. vtkImageVolumeRepresentation uses this new mechanism to tell the view that volume rendering requires remote rendering. Now, when in client-server (or distributed) mode, a volume rendering an image data, ParaView will automatically switch to remote rendering, if possible. When not possible, we also display an error message. Also updated ImageVolumeRendering test to no longer manually force remote-rendering. Change-Id: I973b55f6bcaa1348c9e6f9c1739334dfc3318c47
-
Utkarsh Ayachit authored
The code to send server-side messages to client was losing the string termination character resulting in the client showing trailing garbage. Fixed that. Change-Id: Ibd6aec9fdcc488e2e7cd7c9564461580d457c645
-
Utkarsh Ayachit authored
ParaView was using obsolete PARAVIEW_USE_X flag. That flag was removed during modularization changes. Fixed to use the proper VTK_USE_X flag to check if we should use X API. This now fixes the detection of a valid display on the server nodes. Change-Id: I9478f991f81825fd3809895a311a0d3ce4e82043
-
Andrew Bauer authored
Change-Id: I768fcfd0e7a9f29bf2b8f2166e27fc0a5682ac3e
-
b39ffc1e FIX: valueMatch for a SMProxyProperty with no proxies returns false
-