From lifestudent37 at gmail.com Thu Jan 1 19:29:27 2015 From: lifestudent37 at gmail.com (Student Life) Date: Fri, 2 Jan 2015 00:29:27 +0000 Subject: [vtk-developers] Storing actors into memory C++ Message-ID: Hi, I am going to be using C++ to develop a software that allows the user to interact with multiple objects/actors on the screen. They should be able to move objects/actors independently from one another. The thing is, I need to store all of this in memory and so I have come up with this class structure to store objects in memory. I also have another class to handle the vtkPicker, i.e. if points are selected on the actor, then they stay there even if that object/actor is moved independently the points should move with it. I am thinking of using inheritance, this is my sort of class structure... Actor Class... class ScreenObjects { vtkActor (LinkedList); // I intend on using a linkedlist to store all the actors public: ScreenObjects(); // Constructor. Initializes vtkActor to null. void readSTLFile(); // Reads the STL File bool setObject(); // Sets current object, so you can only interact with the selected object void reset(); //Resets everything, including vtkActors } Picker Class... class PickerActor : class ScreenObjects { public: PickerActor(); } Would really appreciate it if you could give me some ideas or suggestions for my class structure. Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: From yue.nicholas at gmail.com Fri Jan 2 21:51:15 2015 From: yue.nicholas at gmail.com (Nicholas Yue) Date: Fri, 02 Jan 2015 18:51:15 -0800 Subject: [vtk-developers] Retrieving data from UnstructuredGrid Message-ID: <54A75923.6000203@gmail.com> Hi, Using the sample data from VTKData as an example 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 1 1 1 0 0 0 0 0 0 I have written initial code to load the unstructured grid file. How should I go about extracting the PointData Scalars from the unstructured grid ? Eventually, my *.vtu file will have velocity (vector), density (scalar) and other additional PointData (file will be binary due to size) Which CXX example is helpful in understanding PointData extraction from unstructured grid ? Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, OSX, Linux, Windows http://au.linkedin.com/in/nicholasyue https://vimeo.com/channels/naiadtools From joachim.pouderoux at kitware.com Sat Jan 3 19:06:48 2015 From: joachim.pouderoux at kitware.com (Joachim Pouderoux) Date: Sun, 04 Jan 2015 01:06:48 +0100 Subject: [vtk-developers] Retrieving data from UnstructuredGrid In-Reply-To: <54A75923.6000203@gmail.com> References: <54A75923.6000203@gmail.com> Message-ID: <54A88418.8000308@kitware.com> Hi, Not sure to understand what your are doing. Do you want to use the VTK library to read those VTU files and process them with it or are you writing an external VTU file reader? If your are dealing with VTK, the vtkXMLUnstructuredGridReader will produce an vtkUnstructuredGrid object to hold the unstructured grid. From it you will be able to retrieve all the information you might need (geometry, topology as long as point and cell data arrays). To access the point data from a vtkDataSet (vtkUnstructuredGrid is a derived class), call ugrid->GetPointData(), you will get a vtkPointData object which inherits from vtkDataSetAttributes. From it you will be able to retrieve all attached point data arrays - see class documentation http://www.vtk.org/doc/nightly/html/classvtkPointData.html. ex: vtkDataArray* array = ugrid->GetPointData()->GetArray("myscalararrayname"); // to retrieve the data array from its name vtkDataArray* array = ugrid->GetPointData()->GetScalars(); // to retrieve the data array tagged as being the active scalar vtkFloatArray* farray = vtkFloatArray::SafeDownCast(array); // data array is an abstract class, you might want to use the real type class for fastest access: eg: float Hope it helps. Joachim On 03/01/2015 03:51, Nicholas Yue wrote: > Hi, > > Using the sample data from VTKData as an example > > > byte_order="LittleEndian" compressor="vtkZLibDataCompressor"> > > > > > 1 1 1 1 0 0 0 0 0 0 > 1 1 1 0 0 0 > 1 1 1 0 0 0 > > > > > > > 0 0 0 > > I have written initial code to load the unstructured grid file. > > How should I go about extracting the PointData Scalars from the > unstructured grid ? > > Eventually, my *.vtu file will have velocity (vector), density > (scalar) and other additional PointData (file will be binary due to size) > > Which CXX example is helpful in understanding PointData extraction > from unstructured grid ? > > Cheers > From lifestudent37 at gmail.com Tue Jan 6 05:53:06 2015 From: lifestudent37 at gmail.com (Student Life) Date: Tue, 6 Jan 2015 10:53:06 +0000 Subject: [vtk-developers] Best way to store multiple vtkActors using C++ Message-ID: Hi, I basically want to store multiple vtkActors within my render window so that the user can interact with them. I also want to group some vtkActors together I was thinking of using a linkedlist, to store each vtkActor. I was also thinking of grouping multiple vtkActors so that they can be interacted with and rotated in unison. I was thinking of doing this using a vtkAssembly, but I'm not too sure. I am new to VTK and would greatly appreciate some help/advice. Many thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.gobbi at gmail.com Tue Jan 6 13:39:03 2015 From: david.gobbi at gmail.com (David Gobbi) Date: Tue, 6 Jan 2015 11:39:03 -0700 Subject: [vtk-developers] Dashboard warning vtkStructuredData.h Message-ID: The mingw dashboard is showing tons of warnings about the inline methods in vtkStructuredData.h https://open.cdash.org/viewBuildError.php?type=1&buildid=3641101 I believe that this is due to the order in which the inlined methods are defined. Specifically, inline methods should not be used prior to their definition, otherwise the mingw compiler complains. For example, this: inline vtkIdType vtkStructuredData::GetNumberOfCells(int ext[6], int) { int cellDims[3]; vtkStructuredData::GetCellDimensionsFromExtent(ext,cellDims); ... } appears in the header file before this: inline void vtkStructuredData::GetCellDimensionsFromExtent( int ext[6], int celldims[3], int) { celldims[0] = vtkStructuredData::Max(ext[1] - ext[0], 0); celldims[1] = vtkStructuredData::Max(ext[3] - ext[2], 0); celldims[2] = vtkStructuredData::Max(ext[5] - ext[4], 0); } If the definition of GetCellDimensionsFromExtent() appeared before the definition of GetNumberOfCells(), then mingw wouldn't complain. - David -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.lonie at kitware.com Tue Jan 6 13:40:22 2015 From: david.lonie at kitware.com (David Lonie) Date: Tue, 6 Jan 2015 13:40:22 -0500 Subject: [vtk-developers] Dashboard warning vtkStructuredData.h In-Reply-To: References: Message-ID: Thanks for the heads up -- I'm working on a cleanup branch for this topic now, and will add these fixes to it. Dave On Tue, Jan 6, 2015 at 1:39 PM, David Gobbi wrote: > The mingw dashboard is showing tons of warnings about the inline > methods in vtkStructuredData.h > > https://open.cdash.org/viewBuildError.php?type=1&buildid=3641101 > > I believe that this is due to the order in which the inlined methods > are defined. Specifically, inline methods should not be used prior to > their definition, otherwise the mingw compiler complains. > > For example, this: > > inline vtkIdType vtkStructuredData::GetNumberOfCells(int ext[6], int) > { > int cellDims[3]; > vtkStructuredData::GetCellDimensionsFromExtent(ext,cellDims); > ... > } > > appears in the header file before this: > > inline void vtkStructuredData::GetCellDimensionsFromExtent( > int ext[6], int celldims[3], int) > { > celldims[0] = vtkStructuredData::Max(ext[1] - ext[0], 0); > celldims[1] = vtkStructuredData::Max(ext[3] - ext[2], 0); > celldims[2] = vtkStructuredData::Max(ext[5] - ext[4], 0); > } > > If the definition of GetCellDimensionsFromExtent() appeared before the > definition of GetNumberOfCells(), then mingw wouldn't complain. > > - David > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.lonie at kitware.com Tue Jan 6 13:48:13 2015 From: david.lonie at kitware.com (David Lonie) Date: Tue, 6 Jan 2015 13:48:13 -0500 Subject: [vtk-developers] Dashboard warning vtkStructuredData.h In-Reply-To: References: Message-ID: This should do the trick: http://review.source.kitware.com/#/c/18681/ Dave On Tue, Jan 6, 2015 at 1:40 PM, David Lonie wrote: > Thanks for the heads up -- I'm working on a cleanup branch for this topic > now, and will add these fixes to it. > > Dave > > On Tue, Jan 6, 2015 at 1:39 PM, David Gobbi wrote: > >> The mingw dashboard is showing tons of warnings about the inline >> methods in vtkStructuredData.h >> >> https://open.cdash.org/viewBuildError.php?type=1&buildid=3641101 >> >> I believe that this is due to the order in which the inlined methods >> are defined. Specifically, inline methods should not be used prior to >> their definition, otherwise the mingw compiler complains. >> >> For example, this: >> >> inline vtkIdType vtkStructuredData::GetNumberOfCells(int ext[6], int) >> { >> int cellDims[3]; >> vtkStructuredData::GetCellDimensionsFromExtent(ext,cellDims); >> ... >> } >> >> appears in the header file before this: >> >> inline void vtkStructuredData::GetCellDimensionsFromExtent( >> int ext[6], int celldims[3], int) >> { >> celldims[0] = vtkStructuredData::Max(ext[1] - ext[0], 0); >> celldims[1] = vtkStructuredData::Max(ext[3] - ext[2], 0); >> celldims[2] = vtkStructuredData::Max(ext[5] - ext[4], 0); >> } >> >> If the definition of GetCellDimensionsFromExtent() appeared before the >> definition of GetNumberOfCells(), then mingw wouldn't complain. >> >> - David >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.lonie at kitware.com Tue Jan 6 13:57:58 2015 From: david.lonie at kitware.com (David Lonie) Date: Tue, 6 Jan 2015 13:57:58 -0500 Subject: [vtk-developers] Dashboard warning vtkStructuredData.h In-Reply-To: References: Message-ID: Also, most of the red and yellow on the dashboard should be cleaned up once that topic lands. There were some issues that gerrit didn't catch, and the holidays have delayed these fixes going in. Bear with me, folks, we'll have it green again soon ;-) On Tue, Jan 6, 2015 at 1:48 PM, David Lonie wrote: > This should do the trick: > > http://review.source.kitware.com/#/c/18681/ > > Dave > > On Tue, Jan 6, 2015 at 1:40 PM, David Lonie > wrote: > >> Thanks for the heads up -- I'm working on a cleanup branch for this topic >> now, and will add these fixes to it. >> >> Dave >> >> On Tue, Jan 6, 2015 at 1:39 PM, David Gobbi >> wrote: >> >>> The mingw dashboard is showing tons of warnings about the inline >>> methods in vtkStructuredData.h >>> >>> https://open.cdash.org/viewBuildError.php?type=1&buildid=3641101 >>> >>> I believe that this is due to the order in which the inlined methods >>> are defined. Specifically, inline methods should not be used prior to >>> their definition, otherwise the mingw compiler complains. >>> >>> For example, this: >>> >>> inline vtkIdType vtkStructuredData::GetNumberOfCells(int ext[6], int) >>> { >>> int cellDims[3]; >>> vtkStructuredData::GetCellDimensionsFromExtent(ext,cellDims); >>> ... >>> } >>> >>> appears in the header file before this: >>> >>> inline void vtkStructuredData::GetCellDimensionsFromExtent( >>> int ext[6], int celldims[3], int) >>> { >>> celldims[0] = vtkStructuredData::Max(ext[1] - ext[0], 0); >>> celldims[1] = vtkStructuredData::Max(ext[3] - ext[2], 0); >>> celldims[2] = vtkStructuredData::Max(ext[5] - ext[4], 0); >>> } >>> >>> If the definition of GetCellDimensionsFromExtent() appeared before the >>> definition of GetNumberOfCells(), then mingw wouldn't complain. >>> >>> - David >>> >>> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ken.martin at kitware.com Tue Jan 6 14:48:42 2015 From: ken.martin at kitware.com (Ken Martin) Date: Tue, 6 Jan 2015 14:48:42 -0500 Subject: [vtk-developers] Long failing test Message-ID: <3e3d3b49de0c7b5ec480fed9ed799270@mail.gmail.com> Nothing to do with OpenGL2, but TestChartXYZ test fails on various platforms and it has been bugging me. It turns out it is failing due to floating point issues. Basically 1) By default the plot data points define the bounds of the axes for the chart 2) the axes define the plot area (clip stuff outside that) 3) which defines the clipping plane equations 4) which can in turn clip the original data points subject to floating point precision This is what is happening (FYI, the point that disappears in the middle is actual on the boundary in the depth axis). So ... I can ?fix? the test by defining axes that are slightly bigger than the data and replacing the valid image. This is what I am planning to do unless someone hollers. I?m not sure what the more general fix is. Thanks Ken Someone wrote... In reply to this post by Sean McBride I suspect a real VTK bug behind this test failure. I get *exactly* the same test image on my Windows / Visual Studio 2012 dashboards: http://open.cdash.org/testDetails.php?test=266709768&build=3539864 I suspect there is a rounding error or something like that, which is causing two of the symbols to end up exactly on top of two of the other symbols. On Wed, Oct 22, 2014 at 1:40 PM, Sean McBride <[hidden email] > wrote: > Hi all, > > I've had VTK dashboards running on OS X 10.10 for months now, but now that 10.10 is out and the NDA is over I've directed them to the public dashboard. > > Can someone please mark these as expected: > > Mac10.10-clang-dbg-x86_64 > Mac10.10-clang-rel-x86_64 > Ken Martin PhD Chairman & CFO Kitware Inc. 28 Corporate Drive Clifton Park NY 12065 ken.martin at kitware.com 518 881-4901 (w) 518 371-4573 (f) This communication, including all attachments, contains confidential and legally privileged information, and it is intended only for the use of the addressee. Access to this email by anyone else is unauthorized. If you are not the intended recipient, any disclosure, copying, distribution or any action taken in reliance on it is prohibited and may be unlawful. If you received this communication in error please notify us immediately and destroy the original message. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: From marcus.hanwell at kitware.com Tue Jan 6 14:51:42 2015 From: marcus.hanwell at kitware.com (Marcus D. Hanwell) Date: Tue, 6 Jan 2015 14:51:42 -0500 Subject: [vtk-developers] Long failing test In-Reply-To: <3e3d3b49de0c7b5ec480fed9ed799270@mail.gmail.com> References: <3e3d3b49de0c7b5ec480fed9ed799270@mail.gmail.com> Message-ID: On Tue, Jan 6, 2015 at 2:48 PM, Ken Martin wrote: > Nothing to do with OpenGL2, but TestChartXYZ test fails on various platforms > and it has been bugging me. It turns out it is failing due to floating > point issues. Basically > > 1) By default the plot data points define the bounds of the axes for > the chart > > 2) the axes define the plot area (clip stuff outside that) > > 3) which defines the clipping plane equations > > 4) which can in turn clip the original data points subject to floating > point precision > > This is what is happening (FYI, the point that disappears in the middle is > actual on the boundary in the depth axis). So ... I can ?fix? the test by > defining axes that are slightly bigger than the data and replacing the valid > image. This is what I am planning to do unless someone hollers. I?m not sure > what the more general fix is. > That seems reasonable to me, I hadn't spotted the floating point issue you describe but it makes sense. Thanks, Marcus From david.gobbi at gmail.com Tue Jan 6 15:39:12 2015 From: david.gobbi at gmail.com (David Gobbi) Date: Tue, 6 Jan 2015 13:39:12 -0700 Subject: [vtk-developers] Long failing test In-Reply-To: References: <3e3d3b49de0c7b5ec480fed9ed799270@mail.gmail.com> Message-ID: On Tue, Jan 6, 2015 at 12:51 PM, Marcus D. Hanwell < marcus.hanwell at kitware.com> wrote: > > > That seems reasonable to me, I hadn't spotted the floating point issue > you describe but it makes sense. > Shouldn't this also be reported as a bug, so that in the future someone might take the time to investigate further and perhaps fix the issue? - David -------------- next part -------------- An HTML attachment was scrubbed... URL: From marcus.hanwell at kitware.com Wed Jan 7 16:23:00 2015 From: marcus.hanwell at kitware.com (Marcus D. Hanwell) Date: Wed, 7 Jan 2015 16:23:00 -0500 Subject: [vtk-developers] Long failing test In-Reply-To: References: <3e3d3b49de0c7b5ec480fed9ed799270@mail.gmail.com> Message-ID: On Tue, Jan 6, 2015 at 3:39 PM, David Gobbi wrote: > On Tue, Jan 6, 2015 at 12:51 PM, Marcus D. Hanwell > wrote: >> >> >> That seems reasonable to me, I hadn't spotted the floating point issue >> you describe but it makes sense. > > > Shouldn't this also be reported as a bug, so that in the future someone > might take the time to investigate further and perhaps fix the issue? > Perhaps, beyond adding a little padding (which is probably desirable to ensure all points are visible by default) how would we best address this? Marcus From julio.hoffimann at gmail.com Wed Jan 7 23:17:00 2015 From: julio.hoffimann at gmail.com (=?UTF-8?Q?J=C3=BAlio_Hoffimann?=) Date: Wed, 7 Jan 2015 20:17:00 -0800 Subject: [vtk-developers] Fwd: QVTKWidget segfault on Linux with Qt5, VTK6.2, GCC4.9, C++14 In-Reply-To: References: Message-ID: Forwarding this email to the developers mailing list as I think this might be a bug in VTK. -J?lio ---------- Forwarded message ---------- From: "J?lio Hoffimann" Date: Jan 5, 2015 11:25 AM Subject: QVTKWidget segfault on Linux with Qt5, VTK6.2, GCC4.9, C++14 To: "VTK Users" Cc: Dear VTKers, Attached is a testcase that reproduces the issue I'm having with QVTKWidget. If you download the zip, run CMake and run the program, it should simply show a VTK viewer inside the main window. If however you uncomment line 30 in vtkviewer.cpp, the program crashes whenever the cursor is over the QVTKWidget window. Could you please confirm that I'm not misusing the API? I appreciate if you can try to reproduce the issue. Sincerely, J?lio. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: vtkdebug.zip Type: application/zip Size: 3064 bytes Desc: not available URL: From ngoonee.talk at gmail.com Thu Jan 8 16:55:50 2015 From: ngoonee.talk at gmail.com (Oon-Ee Ng) Date: Fri, 9 Jan 2015 05:55:50 +0800 Subject: [vtk-developers] Build error with current release and git on Arch Linux 64-bit Message-ID: Yesterday I sent a mail to vtk-users, but in the meantime I've 'solved' it. Summary:- vtk not compiling for me due to the error(s) in [1]. Errors indicate that std::min and std::max cannot deal with having differing types (specifically, you can't min(uint, int) or max(int, uint)). The file involved is in Rendering/FreeType/vtkFreeTypeTools.cxx Based on current release (not sure whether git has any newer edits, does not seem so), the affected code was committed in Nov 15 2012, commit 6dd7b574d7594319e764fea4d336adf85a71d8ab). Anyway, the changes I had to make were to lines 1189, 1954, and 1955, pasting them here as I'm no git-guru and tend to generate malformed patches. The changes are really easy anyway, and someone should verify that I'm not just ignoring the problem:- 1189 metaData.descent = std::min(-((int)(bitmap->rows) - (bitmapGlyph->top - 1)), 1954 and 1955 bbox[1] = std::max(bbox[1], pen[0] + bitmapGlyph->left + (int)(bitmap->width)); bbox[2] = std::min(bbox[2], pen[1] + bitmapGlyph->top - 1 - (int)(bitmap->rows)); Hope this helps. I'm surprised I'm only now running into this problem, but just glad to be able to recompile vtk for qt5 support for my project. [1] - http://pastebin.com/t8Tu74pV From marcus.hanwell at kitware.com Fri Jan 9 09:16:18 2015 From: marcus.hanwell at kitware.com (Marcus D. Hanwell) Date: Fri, 9 Jan 2015 09:16:18 -0500 Subject: [vtk-developers] Build error with current release and git on Arch Linux 64-bit In-Reply-To: References: Message-ID: On Thu, Jan 8, 2015 at 4:55 PM, Oon-Ee Ng wrote: > Yesterday I sent a mail to vtk-users, but in the meantime I've 'solved' it. > > Summary:- vtk not compiling for me due to the error(s) in [1]. > > Errors indicate that std::min and std::max cannot deal with having > differing types (specifically, you can't min(uint, int) or max(int, > uint)). > > The file involved is in Rendering/FreeType/vtkFreeTypeTools.cxx > Topic http://review.source.kitware.com/#/t/5259/ on Gerrit should resolve this issue. Please let me know if not. Thanks, Marcus From marcus.hanwell at kitware.com Fri Jan 9 09:58:46 2015 From: marcus.hanwell at kitware.com (Marcus D. Hanwell) Date: Fri, 9 Jan 2015 09:58:46 -0500 Subject: [vtk-developers] Getting ready for VTK's next release Message-ID: Hi, We are hoping to make a VTK release soon, and would appreciate feedback on anything you really want to get in before we do so. My current target is the end of January, let me know if this presents any particular issues for you. Our coverage is still above 70% after our last hackathon, we closed a number of bug reports, and there has been some great progress made in a number of areas since our last release. Closer to the time we will be asking for summaries of major changes in this release, so please get thinking about that too. The OpenGL2 backend is still considered experimental, OpenGL will remain the default for this release. We would like to have more people try the new rendering code out, and it is pretty easy to switch to OpenGL2 during configuration. Please try to finish off any larger features in the next week or so, or consider delaying them until after we tag. Thanks, Marcus From michael.christopher.hogg at gmail.com Sat Jan 10 07:20:45 2015 From: michael.christopher.hogg at gmail.com (Michael Hogg) Date: Sat, 10 Jan 2015 23:20:45 +1100 Subject: [vtk-developers] Subclassing vtkRenderPass in python Message-ID: Hi, Can anyone tell me how to subclass vtkRenderPass in python? I have tried to create subclass myRenderPass, but when I try to create an instance of this class Python just crashes with no warnings / messages. This is what I did: import vtk class myRenderPass(vtk.vtkRenderPass): def __init__(self): super(myRenderPass,self).__init__(self) def Render(self,s): self.DelegatePass.Render(s) self.NumberOfRenderedProps = self.DelegatePass.GetNumberOfRenderedProps() myRenderPass() Could anyone offer some suggestions? I know that vtkRenderPass is an abstract class, so I may not be defining one of these virtual functions. But from the C++ code, it appears that only Render() must be defined. Cheers, Michael -------------- next part -------------- An HTML attachment was scrubbed... URL: From will.schroeder at kitware.com Sat Jan 10 10:04:46 2015 From: will.schroeder at kitware.com (Will Schroeder) Date: Sat, 10 Jan 2015 10:04:46 -0500 Subject: [vtk-developers] Flying Edges Message-ID: Over the holidays I gave myself the gift of designing and implementing a new contouring algorithm :-) To my utter delight and amazement I stumbled upon a novel approach that is readily parallelizable and yet wicked fast in serial mode as well. The algorithm (vtkFlyingEdges2D/vtkFlyingEdges3D) has been pushed into gerrit for review if anyone is interested (FlyingEdges branch). Consider this a work in progress, we are benchmarking and working through parallel implementation details now. We are planning a paper submission in the near future. TLDR Details + As many of you know the VTK community is taking aim at seriously reworking the system to better support parallel computing. Much of this work is being led by Berk Geveci and his team. For example, Berk introduced the vtkSMPTools into VTK about a year ago, and we are actively working with some big name chip manufacturers, DOE Labs, research organizations, and other customers/collaborators to get this ambitious undertaking done. Hopefully individuals in this VTK community will also lend their significant expertise as well. + Under prodding by Berk, and inspired by Patrick O'Leary's "born parallel" slogan to rethinking systems and algorithms for parallel computing, the motivation was to take one of the most important visualization algorithms (isocontouring) and see if we could redesign it for emerging parallel approaches. + The venerable Marching Cubes algorithm introduced the key idea that the topology of an isosurface within a voxel can be captured with an index into a simple, finite case table. Yet the implementation of the algorithm can be slower than you might expect because, for example, on interior voxels, voxel edges can be processed up to four times, and vertices visited eight times (ignoring gradient calculations). Also the output mesh is dynamically created: a priori the number of output points and triangles is unknown, which means that memory resizing (realloc's) are required. Finally, the algorithm is often implemented with a "locator" or hash table to prevent the creation of duplicate points on shared voxel edges (the so-called point merging problem). Not good for parallel computing. + Ken Martin's extremely fast Synchronized Templates algorithm introduced the notion of a "voxel axes" or "edge triad" which consists of the three x-y-z voxel axes located at the voxel origin. This triad is moved through the volume in such a way as to intersect each voxel edge only one time (with special treatment on the +x+y+z volume boundaries). (An aside: Ken wrote this like 15 years ago, it's been the VTK standard ever since. Initially we filed a patent application [since abandoned] but that was before we realized how stupid it is for an open source company to hold patents. Live and learn :-)) + Flying Edges builds on these concepts and introduces some novel ideas. It is a 3-pass algorithm: the first two passes gather information about the volume including "intersections" along x-edges, and the number of output primitives and points. The final pass generates output into preallocated arrays. Some of the key ideas include: -- each pass traverses x-rows in the volume completely independently meaning that it is readily parallelizable. -- the case table is based on the four voxel x-edges (which can be easily transformed to and from a vertex-based MC table). Because the cases are edge based, the computation of cases is parallel separable. -- The novel concept of "computational trimming" is used to avoid massive amounts of work. Basically the fact that isosurfaces are topologically smooth is combined with the results of the first pass (building x-voxel-edge cases) to reason about where the isosurface can exist in the volume. This very simple topological reasoning enables the algorithm to skip portions of x-rows, entire x-rows, and even x-y slices very rapidly. -- Some simple edge metadata is gathered for each x-row volume edge which can be used to allocate and partition memory for separate threads to write into without contention (i.e., no mutexes or locks). This metadata also enables the algorithm to process the voxels along each x-row in such a way as to synchronously increment the point ids and triangle ids without requiring point merging or hashing. In fact, topology generation (i.e., creating triangles) is completely independent from point/geometry generation (i.e., interpolating point coordinates and attributes along edges). + Early results show a 2-5x speedup over Synchronized Templates (>10x over vtkImageMarchingCubes) when running in serial. However, this is very data dependent and I suspect compiler dependent since there is a lot of C++ templating and in-lining going on (make sure to build optimized/release mode). Anyway I am very excited because once the parallel loops are functioning properly we should see much more performance improvement. The scalability may be hampered however because data movement over the memory bus may slow things up (computations are relatively modest compared to the total data processed). We'll be benchmarking performance over the next couple of months to see where we really are and of course we'll update this community at that time. + The memory overhead of the algorithm is roughly 2-bits per vertex. However as implemented now I'm avoiding bit packing and just use a byte (unsigned char) per vertex. + Other interesting tidbits: -- The basic algorithm is extremely simple to implement. Most of the complications come from dealing with volume boundaries. It would be possible to significantly reduce code complexity by either padding the +x+y+z volume boundaries by a layer of voxels, or alternatively not processing the outermost layer of voxels. -- Because I am lazy, the algorithm reuses the MC case table as enumerated in VTK (vtkMarchingCubesTriangleCases.h). However at instantiation the MC table is converted to a Flying Edges edge-based case table. Also note that the MC table as originally defined is for a left-handed coordinate system (see the original paper). So reordering of triangles is required to make sure that normals and triangle ordering is consistent. -- On our radar is potential vectorization of operation like interpolation across voxel edges. As you know some of the big hardware manufacturers are really pushing this now and we'd like to learn how to best take advantage of this emerging resource. -- Probably the biggest downside of this algorithm is that is can produce degenerate triangles (i.e., zero-area triangles in 3D, zero-length line segments in 2D). The major reason is that when preallocating output memory, we do so based on topological evaluation. However, during actual point generation in degenerate cases (a degenerate case occurs when one of more vertex scalar values == isocontour value) multiple intersection points can occur at the vertex producing degeneracies. Since discarding a degenerate triangle would mess up the output preallocation we can't just throw away degenerate primitives. However I have already thought through a solution to this problem but it is based on (spoiler alert) a much more complex case table that enumerates 3-values per vertex: (<,==,>) when compared to the isocontour value. This is a novel idea as well, mostly the academic literature completely ignores the reality of degeneracies. Maybe next holiday season we'll slip it into the algorithm..... Okay I've got to get back to the pointy-haired management stuff. But please feel free to provide feedback, or offers of collaboration :-) In particular we'd love support, either in funding or brainpower, to do even more cool parallel processing stuff. Hoping to hear from you, and I hope your coming year is as exciting as mine is looking to be! Best, W -- William J. Schroeder, PhD Kitware, Inc. 28 Corporate Drive Clifton Park, NY 12065 will.schroeder at kitware.com http://www.kitware.com (518) 881-4902 -------------- next part -------------- An HTML attachment was scrubbed... URL: From julio.hoffimann at gmail.com Sat Jan 10 12:14:27 2015 From: julio.hoffimann at gmail.com (=?UTF-8?Q?J=C3=BAlio_Hoffimann?=) Date: Sat, 10 Jan 2015 09:14:27 -0800 Subject: [vtk-developers] Getting ready for VTK's next release In-Reply-To: References: Message-ID: There are issues regarding Qt5 on Linux for sure: http://public.kitware.com/pipermail/vtk-developers/2015-January/031154.html -J?lio -------------- next part -------------- An HTML attachment was scrubbed... URL: From andrew.amaclean at gmail.com Sat Jan 10 16:34:39 2015 From: andrew.amaclean at gmail.com (Andrew Maclean) Date: Sun, 11 Jan 2015 08:34:39 +1100 Subject: [vtk-developers] Getting ready for VTK's next release Message-ID: Thanks for the heads up Marcus. FYI, I have been running VTK with OpenGL2 and Qt5.3 for a while now on Windows VS2012, Ubuntu 14.10 (GCC 4.9) and Mac OSX Yosemite. All these machines build using CMake 3.1, Python 2.7 and Tcl, Qt 5.3 with no major issues. One thing I would like to see, if possible, is making the default Qt version 5. Maybe the same for ParaView also. Regards Andrew > ---------- Forwarded message ---------- > From: "Marcus D. Hanwell" > To: VTK Developers > Cc: > Date: Fri, 9 Jan 2015 09:58:46 -0500 > Subject: [vtk-developers] Getting ready for VTK's next release > Hi, > > We are hoping to make a VTK release soon, and would appreciate > feedback on anything you really want to get in before we do so. My > current target is the end of January, let me know if this presents any > particular issues for you. > > Our coverage is still above 70% after our last hackathon, we closed a > number of bug reports, and there has been some great progress made in > a number of areas since our last release. Closer to the time we will > be asking for summaries of major changes in this release, so please > get thinking about that too. > > The OpenGL2 backend is still considered experimental, OpenGL will > remain the default for this release. We would like to have more people > try the new rendering code out, and it is pretty easy to switch to > OpenGL2 during configuration. > > Please try to finish off any larger features in the next week or so, > or consider delaying them until after we tag. > > Thanks, > > Marcus > > > > -- ___________________________________________ Andrew J. P. Maclean ___________________________________________ -------------- next part -------------- An HTML attachment was scrubbed... URL: From andrew.amaclean at gmail.com Sat Jan 10 16:38:23 2015 From: andrew.amaclean at gmail.com (Andrew Maclean) Date: Sun, 11 Jan 2015 08:38:23 +1100 Subject: [vtk-developers] Getting ready for VTK's next release In-Reply-To: References: Message-ID: I am actually using VS2013 not 2012. On Sun, Jan 11, 2015 at 8:34 AM, Andrew Maclean wrote: > Thanks for the heads up Marcus. > > FYI, I have been running VTK with OpenGL2 and Qt5.3 for a while now on > Windows VS2012, Ubuntu 14.10 (GCC 4.9) and Mac OSX Yosemite. All these > machines build using CMake 3.1, Python 2.7 and Tcl, Qt 5.3 with no major > issues. > > One thing I would like to see, if possible, is making the default Qt > version 5. Maybe the same for ParaView also. > > > Regards > Andrew > > > > >> ---------- Forwarded message ---------- >> From: "Marcus D. Hanwell" >> To: VTK Developers >> Cc: >> Date: Fri, 9 Jan 2015 09:58:46 -0500 >> Subject: [vtk-developers] Getting ready for VTK's next release >> Hi, >> >> We are hoping to make a VTK release soon, and would appreciate >> feedback on anything you really want to get in before we do so. My >> current target is the end of January, let me know if this presents any >> particular issues for you. >> >> Our coverage is still above 70% after our last hackathon, we closed a >> number of bug reports, and there has been some great progress made in >> a number of areas since our last release. Closer to the time we will >> be asking for summaries of major changes in this release, so please >> get thinking about that too. >> >> The OpenGL2 backend is still considered experimental, OpenGL will >> remain the default for this release. We would like to have more people >> try the new rendering code out, and it is pretty easy to switch to >> OpenGL2 during configuration. >> >> Please try to finish off any larger features in the next week or so, >> or consider delaying them until after we tag. >> >> Thanks, >> >> Marcus >> >> >> >> > -- > ___________________________________________ > Andrew J. P. Maclean > > ___________________________________________ > -- ___________________________________________ Andrew J. P. Maclean ___________________________________________ -------------- next part -------------- An HTML attachment was scrubbed... URL: From t.kilgus at dkfz-heidelberg.de Mon Jan 12 05:24:11 2015 From: t.kilgus at dkfz-heidelberg.de (Kilgus, Thomas) Date: Mon, 12 Jan 2015 11:24:11 +0100 Subject: [vtk-developers] Anti-aliasing / multi sampling in QVTKWidget2 ? Message-ID: <57EE86D11538B44096C712532DBB6C5A011C74E4666A@DKFZEX01.ad.dkfz-heidelberg.de> Dear List, we recently switched from QVTKWidget to QVTKWidget2 and now by default anti-aliasing is disabled. We managed to track the issue down with this VTK example: http://www.vtk.org/Wiki/VTK/Examples/Cxx/Qt/RenderWindowUISingleInheritance Just render the sphere in wireframe mode. If you run the example with a QVTKWidget, lines are smooth and with QVTKWidget2 they are stepped. SetMultiSamples(8) should do the job, but this does not have any effect (and is the default value). Any ideas on this? Regards, Thomas Thomas Kilgus German Cancer Research Center (DKFZ) Div. Medical and Biological Informatics Junior group: Computer-assisted Interventions (E131) Im Neuenheimer Feld 280 69120 Heidelberg, Germany Phone: +49(0) 6221-42-3545 -------------- next part -------------- An HTML attachment was scrubbed... URL: From marcus.hanwell at kitware.com Mon Jan 12 09:35:44 2015 From: marcus.hanwell at kitware.com (Marcus D. Hanwell) Date: Mon, 12 Jan 2015 09:35:44 -0500 Subject: [vtk-developers] Anti-aliasing / multi sampling in QVTKWidget2 ? In-Reply-To: <57EE86D11538B44096C712532DBB6C5A011C74E4666A@DKFZEX01.ad.dkfz-heidelberg.de> References: <57EE86D11538B44096C712532DBB6C5A011C74E4666A@DKFZEX01.ad.dkfz-heidelberg.de> Message-ID: On Mon, Jan 12, 2015 at 5:24 AM, Kilgus, Thomas wrote: > Dear List, > > we recently switched from QVTKWidget to QVTKWidget2 and now by default > anti-aliasing is disabled. > > We managed to track the issue down with this VTK example: > > http://www.vtk.org/Wiki/VTK/Examples/Cxx/Qt/RenderWindowUISingleInheritance > > Just render the sphere in wireframe mode. If you run the example with a > QVTKWidget, lines are smooth and with QVTKWidget2 they are stepped. > SetMultiSamples(8) should do the job, but this does not have any effect (and > is the default value). > > Any ideas on this? > As QVTKWidget reuses Qt's QGLWidget you must use the Qt API for any OpenGL context settings. Multisampling is one of the things that must be done as the context is created, and so cannot be done by VTK. I can't remember the API off the top of my head, but I know Qt has API in 4 at least for antialiasing. Qt 5 does not, but the new QOpenGLWidget does - QGLWidget lost a number of features that seem to have been reintroduced in this class in the 5.4 release. Hope that helps clear this up a little. Marcus From marcus.hanwell at kitware.com Mon Jan 12 09:43:11 2015 From: marcus.hanwell at kitware.com (Marcus D. Hanwell) Date: Mon, 12 Jan 2015 09:43:11 -0500 Subject: [vtk-developers] Fwd: QVTKWidget segfault on Linux with Qt5, VTK6.2, GCC4.9, C++14 In-Reply-To: References: Message-ID: Taking a quick look at this I get compile failures because of your use of auto, gcc (GCC) 4.9.2 20141224 on Arch Linux (64 bit), I see, /home/marcus/vtkqt5/vtkdebug/vtkviewer.cpp: In constructor ?VTKViewer::VTKViewer(QWidget*)?: /home/marcus/vtkqt5/vtkdebug/vtkviewer.cpp:17:10: error: ?renderer? does not name a type auto renderer = vtkSmartPointer::New(); You can use vtkNew in place of the auto calls, so I just replaced them. I suspect it is because I did not set a build type and your flags are only applied for Release or Debug builds. Even without C++14 (not verified to work with VTK yet) I can reproduce the crash you are seeing. I need to spend a little more time looking into it, I can see an invalid pointer for the vtkRenderer in the widget in the backtrace. Rendering works in the Qt5 widget, it seems specific to this widget (or maybe all widgets). Thanks for pointing this out. On Wed, Jan 7, 2015 at 11:17 PM, J?lio Hoffimann wrote: > Forwarding this email to the developers mailing list as I think this might > be a bug in VTK. > > -J?lio > > ---------- Forwarded message ---------- > From: "J?lio Hoffimann" > Date: Jan 5, 2015 11:25 AM > Subject: QVTKWidget segfault on Linux with Qt5, VTK6.2, GCC4.9, C++14 > To: "VTK Users" > Cc: > > Dear VTKers, > > Attached is a testcase that reproduces the issue I'm having with QVTKWidget. > If you download the zip, run CMake and run the program, it should simply > show a VTK viewer inside the main window. If however you uncomment line 30 > in vtkviewer.cpp, the program crashes whenever the cursor is over the > QVTKWidget window. > > Could you please confirm that I'm not misusing the API? I appreciate if you > can try to reproduce the issue. > From julio.hoffimann at gmail.com Mon Jan 12 11:30:49 2015 From: julio.hoffimann at gmail.com (=?UTF-8?Q?J=C3=BAlio_Hoffimann?=) Date: Mon, 12 Jan 2015 08:30:49 -0800 Subject: [vtk-developers] Fwd: QVTKWidget segfault on Linux with Qt5, VTK6.2, GCC4.9, C++14 In-Reply-To: References: Message-ID: Thank you Marcus, please reply as soon as you have a working commit. Also let me know if you need anything. -J?lio -------------- next part -------------- An HTML attachment was scrubbed... URL: From marcus.hanwell at kitware.com Mon Jan 12 15:46:03 2015 From: marcus.hanwell at kitware.com (Marcus D. Hanwell) Date: Mon, 12 Jan 2015 15:46:03 -0500 Subject: [vtk-developers] Fwd: QVTKWidget segfault on Linux with Qt5, VTK6.2, GCC4.9, C++14 In-Reply-To: References: Message-ID: On Mon, Jan 12, 2015 at 11:30 AM, J?lio Hoffimann wrote: > Thank you Marcus, please reply as soon as you have a working commit. Also > let me know if you need anything. > It is a simple issue with memory management, I just needed to sit down with GDB for a little longer. You do not assign ownership of your widget to anything, but you do place it in a smart pointer which decrements the reference count when it goes out of scope. Enabling it causes the widget to be registered, and hence called in later renders. Simply adding 'orientationMarker->Register(NULL);' to your VTKViewer constructor will fix the crash (but introduce a memory leak). Simply adding a vtkNew m_widget to the class member would automatically instantiate the object, and delete it once the class' destructor is called. I have a few applications using Qt 5 with VTK, and I think most stuff seems to be working pretty well at this point. Unless you build VTK with C++14 flags there are posibly issues due to changes in the language. Thanks, Marcus From marcus.hanwell at kitware.com Mon Jan 12 15:48:09 2015 From: marcus.hanwell at kitware.com (Marcus D. Hanwell) Date: Mon, 12 Jan 2015 15:48:09 -0500 Subject: [vtk-developers] Getting ready for VTK's next release In-Reply-To: References: Message-ID: On Sat, Jan 10, 2015 at 12:14 PM, J?lio Hoffimann wrote: > There are issues regarding Qt5 on Linux for sure: > http://public.kitware.com/pipermail/vtk-developers/2015-January/031154.html > After further investigation this looks like a simple memory management issue (widget was deleted when its smart pointer went out of scope). I am testing quite a few VTK classes using Qt 5 in other applications. Marcus From marcus.hanwell at kitware.com Mon Jan 12 15:50:36 2015 From: marcus.hanwell at kitware.com (Marcus D. Hanwell) Date: Mon, 12 Jan 2015 15:50:36 -0500 Subject: [vtk-developers] Getting ready for VTK's next release In-Reply-To: References: Message-ID: On Sat, Jan 10, 2015 at 4:34 PM, Andrew Maclean wrote: > Thanks for the heads up Marcus. > > FYI, I have been running VTK with OpenGL2 and Qt5.3 for a while now on > Windows VS2012, Ubuntu 14.10 (GCC 4.9) and Mac OSX Yosemite. All these > machines build using CMake 3.1, Python 2.7 and Tcl, Qt 5.3 with no major > issues. > > One thing I would like to see, if possible, is making the default Qt version > 5. Maybe the same for ParaView also. > ParaView is not ready to move to the best of my knowledge. My hope was to leave it at 4 (but changing to 5 is easy). The next release of VTK should hopefully default to using the new rendering code, along with possibly Qt 5 (ParaView can still modify), but I think we should avoid this change just before the release. The distro maintainers can decide what is best for their distros. If others think differently please let us know. Thanks, Marcus From julio.hoffimann at gmail.com Mon Jan 12 20:31:28 2015 From: julio.hoffimann at gmail.com (=?UTF-8?Q?J=C3=BAlio_Hoffimann?=) Date: Mon, 12 Jan 2015 17:31:28 -0800 Subject: [vtk-developers] Fwd: QVTKWidget segfault on Linux with Qt5, VTK6.2, GCC4.9, C++14 In-Reply-To: References: Message-ID: Hi Marcus, I tried to add the orientation marker as a member in the viewer class but the program is still crashing. What is the exact modification you did in the code? -J?lio -------------- next part -------------- An HTML attachment was scrubbed... URL: From julio.hoffimann at gmail.com Mon Jan 12 20:41:39 2015 From: julio.hoffimann at gmail.com (=?UTF-8?Q?J=C3=BAlio_Hoffimann?=) Date: Mon, 12 Jan 2015 17:41:39 -0800 Subject: [vtk-developers] Fwd: QVTKWidget segfault on Linux with Qt5, VTK6.2, GCC4.9, C++14 In-Reply-To: References: Message-ID: > > Hi Marcus, > > I tried to add the orientation marker as a member in the viewer class but > the program is still crashing. What is the exact modification you did in > the code? > > -J?lio > You mean I need to do these two modifications (Register(NULL) and turn the widget a member of the class) to actually solve the problem? -------------- next part -------------- An HTML attachment was scrubbed... URL: From marcus.hanwell at kitware.com Mon Jan 12 20:52:35 2015 From: marcus.hanwell at kitware.com (Marcus D. Hanwell) Date: Mon, 12 Jan 2015 20:52:35 -0500 Subject: [vtk-developers] Fwd: QVTKWidget segfault on Linux with Qt5, VTK6.2, GCC4.9, C++14 In-Reply-To: References: Message-ID: On Mon, Jan 12, 2015 at 8:41 PM, J?lio Hoffimann wrote: >> Hi Marcus, >> >> I tried to add the orientation marker as a member in the viewer class but >> the program is still crashing. What is the exact modification you did in the >> code? >> >> -J?lio > > > You mean I need to do these two modifications (Register(NULL) and turn the > widget a member of the class) to actually solve the problem? You must ensure the reference count of the widget remains above one, http://www.kitware.com/source/home/post/7 is a Source article I wrote that goes over the smart pointer classes, and how they might be used in your own classes. You need to structure your code such that the VTK classes are not deleted until the window is closed, currently you have a number of classes instantiated in the example constructor, going out of scope. Many of them are added to the render window, and so are not deleted. This is not true of the widget. Calling the Register member is a terrible solution for a real program, you can see in the example class how the various smart pointers might be used (and the pros and cons of each one). Marcus From julio.hoffimann at gmail.com Mon Jan 12 20:55:53 2015 From: julio.hoffimann at gmail.com (=?UTF-8?Q?J=C3=BAlio_Hoffimann?=) Date: Mon, 12 Jan 2015 17:55:53 -0800 Subject: [vtk-developers] Fwd: QVTKWidget segfault on Linux with Qt5, VTK6.2, GCC4.9, C++14 In-Reply-To: References: Message-ID: Hi Marcus, Thank you very much for the clarification, now I understand what is going on. Best, J?lio. -------------- next part -------------- An HTML attachment was scrubbed... URL: From t.kilgus at Dkfz-Heidelberg.de Tue Jan 13 04:08:15 2015 From: t.kilgus at Dkfz-Heidelberg.de (Kilgus, Thomas) Date: Tue, 13 Jan 2015 10:08:15 +0100 Subject: [vtk-developers] Anti-aliasing / multi sampling in QVTKWidget2 ? In-Reply-To: References: <57EE86D11538B44096C712532DBB6C5A011C74E4666A@DKFZEX01.ad.dkfz-heidelberg.de> Message-ID: <57EE86D11538B44096C712532DBB6C5A011C74E4678A@DKFZEX01.ad.dkfz-heidelberg.de> Hey Marcus, thanks for your answer. We figured out that, what is needed to make it work again: QGLFormat newform = this->format(); newform.setSampleBuffers(true); newform.setSamples(8); this->setFormat(newform); Wouldn't it make sense to add this code to the constructor of the QVTKWidget2 in order to achieve the same behavior as QVTKWidget? Alternatively, a note in the documentation would be nice. Let me know if we can contribute anything like this. Regards, Thomas -----Urspr?ngliche Nachricht----- Von: Marcus D. Hanwell [mailto:marcus.hanwell at kitware.com] Gesendet: Montag, 12. Januar 2015 15:36 An: Kilgus, Thomas Cc: vtk-developers at vtk.org Betreff: Re: [vtk-developers] Anti-aliasing / multi sampling in QVTKWidget2 ? On Mon, Jan 12, 2015 at 5:24 AM, Kilgus, Thomas wrote: > Dear List, > > we recently switched from QVTKWidget to QVTKWidget2 and now by default > anti-aliasing is disabled. > > We managed to track the issue down with this VTK example: > > http://www.vtk.org/Wiki/VTK/Examples/Cxx/Qt/RenderWindowUISingleInheri > tance > > Just render the sphere in wireframe mode. If you run the example with > a QVTKWidget, lines are smooth and with QVTKWidget2 they are stepped. > SetMultiSamples(8) should do the job, but this does not have any > effect (and is the default value). > > Any ideas on this? > As QVTKWidget reuses Qt's QGLWidget you must use the Qt API for any OpenGL context settings. Multisampling is one of the things that must be done as the context is created, and so cannot be done by VTK. I can't remember the API off the top of my head, but I know Qt has API in 4 at least for antialiasing. Qt 5 does not, but the new QOpenGLWidget does - QGLWidget lost a number of features that seem to have been reintroduced in this class in the 5.4 release. Hope that helps clear this up a little. Marcus From marcus.hanwell at kitware.com Tue Jan 13 10:36:05 2015 From: marcus.hanwell at kitware.com (Marcus D. Hanwell) Date: Tue, 13 Jan 2015 10:36:05 -0500 Subject: [vtk-developers] Anti-aliasing / multi sampling in QVTKWidget2 ? In-Reply-To: <57EE86D11538B44096C712532DBB6C5A011C74E4678A@DKFZEX01.ad.dkfz-heidelberg.de> References: <57EE86D11538B44096C712532DBB6C5A011C74E4666A@DKFZEX01.ad.dkfz-heidelberg.de> <57EE86D11538B44096C712532DBB6C5A011C74E4678A@DKFZEX01.ad.dkfz-heidelberg.de> Message-ID: Hi Thomas, What version of Qt did you test that with? If that approach works it sounds reasonable to me, and I would be happy to help get such a patch through the review process. Thanks, Marcus On Tue, Jan 13, 2015 at 4:08 AM, Kilgus, Thomas wrote: > Hey Marcus, > > thanks for your answer. We figured out that, what is needed to make it work again: > QGLFormat newform = this->format(); > newform.setSampleBuffers(true); > newform.setSamples(8); > this->setFormat(newform); > > Wouldn't it make sense to add this code to the constructor of the QVTKWidget2 in order to achieve the same behavior as QVTKWidget? Alternatively, a note in the documentation would be nice. Let me know if we can contribute anything like this. > > Regards, > Thomas > > > -----Urspr?ngliche Nachricht----- > Von: Marcus D. Hanwell [mailto:marcus.hanwell at kitware.com] > Gesendet: Montag, 12. Januar 2015 15:36 > An: Kilgus, Thomas > Cc: vtk-developers at vtk.org > Betreff: Re: [vtk-developers] Anti-aliasing / multi sampling in QVTKWidget2 ? > > On Mon, Jan 12, 2015 at 5:24 AM, Kilgus, Thomas wrote: >> Dear List, >> >> we recently switched from QVTKWidget to QVTKWidget2 and now by default >> anti-aliasing is disabled. >> >> We managed to track the issue down with this VTK example: >> >> http://www.vtk.org/Wiki/VTK/Examples/Cxx/Qt/RenderWindowUISingleInheri >> tance >> >> Just render the sphere in wireframe mode. If you run the example with >> a QVTKWidget, lines are smooth and with QVTKWidget2 they are stepped. >> SetMultiSamples(8) should do the job, but this does not have any >> effect (and is the default value). >> >> Any ideas on this? >> > As QVTKWidget reuses Qt's QGLWidget you must use the Qt API for any OpenGL context settings. Multisampling is one of the things that must be done as the context is created, and so cannot be done by VTK. > > I can't remember the API off the top of my head, but I know Qt has API in 4 at least for antialiasing. Qt 5 does not, but the new QOpenGLWidget does - QGLWidget lost a number of features that seem to have been reintroduced in this class in the 5.4 release. > > Hope that helps clear this up a little. > > Marcus From ngoonee.talk at gmail.com Wed Jan 14 00:44:31 2015 From: ngoonee.talk at gmail.com (Oon-Ee Ng) Date: Wed, 14 Jan 2015 13:44:31 +0800 Subject: [vtk-developers] Fwd: QVTKWidget segfault on Linux with Qt5, VTK6.2, GCC4.9, C++14 In-Reply-To: References: Message-ID: Hi Julio, Could you also attach your code after the modifications? I'm trying to debug my own qvtkwidget subclass as well, and am looking for examples to follow. My current qvtkwidget (for viewing point clouds from PCL) works without error for XYZ type point clouds, but when trying to add colour (XYZRBGA and a PointCloudColorHandlerRGBField) it crashes very often. Crashes less often when not using the PointCloudColorHandlerRGBField, but still getting intermittent crashing. Basically, I'd like other examples to compare against to try and figure out why I'm getting my segfaults. On Tue, Jan 13, 2015 at 9:55 AM, J?lio Hoffimann wrote: > Hi Marcus, > > Thank you very much for the clarification, now I understand what is going > on. > > Best, > J?lio. > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Search the list archives at: http://markmail.org/search/?q=vtk-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtk-developers > > From t.kilgus at Dkfz-Heidelberg.de Wed Jan 14 05:43:34 2015 From: t.kilgus at Dkfz-Heidelberg.de (Kilgus, Thomas) Date: Wed, 14 Jan 2015 11:43:34 +0100 Subject: [vtk-developers] Anti-aliasing / multi sampling in QVTKWidget2 ? In-Reply-To: References: <57EE86D11538B44096C712532DBB6C5A011C74E4666A@DKFZEX01.ad.dkfz-heidelberg.de> <57EE86D11538B44096C712532DBB6C5A011C74E4678A@DKFZEX01.ad.dkfz-heidelberg.de> Message-ID: <57EE86D11538B44096C712532DBB6C5A011C74E468B6@DKFZEX01.ad.dkfz-heidelberg.de> Hi Marcus, we tested this with Qt 4 and will test it with Qt 5. Do you prefer a note in the documentation or should we add code? Regrards, Thomas -----Urspr?ngliche Nachricht----- Von: Marcus D. Hanwell [mailto:marcus.hanwell at kitware.com] Gesendet: Dienstag, 13. Januar 2015 16:36 An: Kilgus, Thomas Cc: vtk-developers at vtk.org Betreff: Re: [vtk-developers] Anti-aliasing / multi sampling in QVTKWidget2 ? Hi Thomas, What version of Qt did you test that with? If that approach works it sounds reasonable to me, and I would be happy to help get such a patch through the review process. Thanks, Marcus On Tue, Jan 13, 2015 at 4:08 AM, Kilgus, Thomas wrote: > Hey Marcus, > > thanks for your answer. We figured out that, what is needed to make it work again: > QGLFormat newform = this->format(); > newform.setSampleBuffers(true); > newform.setSamples(8); > this->setFormat(newform); > > Wouldn't it make sense to add this code to the constructor of the QVTKWidget2 in order to achieve the same behavior as QVTKWidget? Alternatively, a note in the documentation would be nice. Let me know if we can contribute anything like this. > > Regards, > Thomas > > > -----Urspr?ngliche Nachricht----- > Von: Marcus D. Hanwell [mailto:marcus.hanwell at kitware.com] > Gesendet: Montag, 12. Januar 2015 15:36 > An: Kilgus, Thomas > Cc: vtk-developers at vtk.org > Betreff: Re: [vtk-developers] Anti-aliasing / multi sampling in QVTKWidget2 ? > > On Mon, Jan 12, 2015 at 5:24 AM, Kilgus, Thomas wrote: >> Dear List, >> >> we recently switched from QVTKWidget to QVTKWidget2 and now by >> default anti-aliasing is disabled. >> >> We managed to track the issue down with this VTK example: >> >> http://www.vtk.org/Wiki/VTK/Examples/Cxx/Qt/RenderWindowUISingleInher >> i >> tance >> >> Just render the sphere in wireframe mode. If you run the example with >> a QVTKWidget, lines are smooth and with QVTKWidget2 they are stepped. >> SetMultiSamples(8) should do the job, but this does not have any >> effect (and is the default value). >> >> Any ideas on this? >> > As QVTKWidget reuses Qt's QGLWidget you must use the Qt API for any OpenGL context settings. Multisampling is one of the things that must be done as the context is created, and so cannot be done by VTK. > > I can't remember the API off the top of my head, but I know Qt has API in 4 at least for antialiasing. Qt 5 does not, but the new QOpenGLWidget does - QGLWidget lost a number of features that seem to have been reintroduced in this class in the 5.4 release. > > Hope that helps clear this up a little. > > Marcus From trungnguyenduc1602 at gmail.com Wed Jan 14 08:42:55 2015 From: trungnguyenduc1602 at gmail.com (Ted Nguyen) Date: Wed, 14 Jan 2015 06:42:55 -0700 (MST) Subject: [vtk-developers] Bug when using ploting function (vtk 6.1, Qt5.3, Ubuntu) Message-ID: <1421242975267-5730118.post@n5.nabble.com> Update: Debug info I am working on a Qt 5.3 project and need to plot data in 2D and 3D coordinate systems. I've been looking into vtk 6.1 because it seems very powerful overall and I will also need to visualize image data at a later point. I have using Qvtkwidget smoothly with this example #include "mainwindow.h" #include #include VTK_MODULE_INIT(vtkRenderingOpenGL); #include #include #include #include #include #include #include #include #include #include int main(int argc, char** argv) { QApplication app(argc, argv); QVTKWidget widget; widget.resize(256,256); // Setup sphere vtkSmartPointer sphereSource = vtkSmartPointer::New(); sphereSource->Update(); vtkSmartPointer sphereMapper = vtkSmartPointer::New(); sphereMapper->SetInputConnection(sphereSource->GetOutputPort()); vtkSmartPointer sphereActor = vtkSmartPointer::New(); sphereActor->SetMapper(sphereMapper); // Setup window vtkSmartPointer renderWindow = vtkSmartPointer::New(); // Setup renderer vtkSmartPointer renderer = vtkSmartPointer::New(); renderWindow->AddRenderer(renderer); renderer->AddActor(sphereActor); renderer->ResetCamera(); widget.SetRenderWindow(renderWindow); widget.show(); app.exec(); return EXIT_SUCCESS; } But when I tried to implement the graph example (/Examples/Charts/Cxx/QChartTable.cxx ), the program show Segmentation Fault errors. #include VTK_MODULE_INIT(vtkRenderingOpenGL) #include "vtkFloatArray.h" #include "vtkMath.h" #include "vtkRenderer.h" #include "vtkRenderWindow.h" #include "vtkRenderWindowInteractor.h" #include "vtkSmartPointer.h" #include "vtkContextView.h" #include "vtkContextScene.h" #include "vtkChartXY.h" #include "vtkPlot.h" #include "vtkTable.h" #include "vtkTimerLog.h" #include #include #include #include #include "QVTKWidget.h" #include "vtkQtTableView.h" #define VTK_CREATE(type, name) \ vtkSmartPointer name = vtkSmartPointer::New() int main(int argc, char** argv) { // Qt initialization QApplication app(argc, argv); QMainWindow mainWindow; mainWindow.setGeometry(0, 0, 1150, 600); // QVTK set up and initialization QVTKWidget *qvtkWidget = new QVTKWidget(&mainWindow); // Set up my 2D world... VTK_CREATE(vtkContextView, view); // This contains a chart object view->SetInteractor(qvtkWidget->GetInteractor()); qvtkWidget->SetRenderWindow(view->GetRenderWindow()); // Create a table with some points in it... VTK_CREATE(vtkTable, table); VTK_CREATE(vtkFloatArray, arrX); arrX->SetName("X Axis"); table->AddColumn(arrX); VTK_CREATE(vtkFloatArray, arrC); arrC->SetName("Cosine"); table->AddColumn(arrC); VTK_CREATE(vtkFloatArray, arrS); arrS->SetName("Sine"); table->AddColumn(arrS); // Make a timer object - need to get some frame rates/render times VTK_CREATE(vtkTimerLog, timer); // Test charting with a few more points... int numPoints = 29; float inc = 7.0 / (numPoints-1); table->SetNumberOfRows(numPoints); for (int i = 0; i < numPoints; ++i) { table->SetValue(i, 0, i * inc); table->SetValue(i, 1, cos(i * inc) + 0.0); table->SetValue(i, 2, sin(i * inc) + 0.0); } // table->Update(); // Add multiple line plots, setting the colors etc vtkSmartPointer chart = vtkSmartPointer::New(); view->GetScene()->AddItem(chart); vtkPlot *line = chart->AddPlot(vtkChart::LINE); line->SetInputData(table, 0, 1); line->SetColor(255, 0, 0, 255); line = chart->AddPlot(vtkChart::LINE); line->SetInputData(table, 0, 2); line->SetColor(0, 255, 0, 255); line->SetWidth(2.0); // Instantiate a vtkQtChart and use that too /* vtkQtChart *qtChart = new vtkQtChart; chart = qtChart->chart(); line = chart->AddPlot(vtkChart::LINE); line->SetTable(table, 0, 1); line->SetColor(255, 0, 0, 255); line = chart->AddPlot(vtkChart::LINE); line->SetTable(table, 0, 2); line->SetColor(0, 255, 0, 255); line->SetWidth(2.0); */ // Now lets try to add a table view QWidget *widget = new QWidget(&mainWindow); QHBoxLayout *layout = new QHBoxLayout(widget); VTK_CREATE(vtkQtTableView, tableView); tableView->SetSplitMultiComponentColumns(true); tableView->AddRepresentationFromInput(table); tableView->Update(); layout->addWidget(qvtkWidget, 2); //layout->addWidget(qtChart, 2); layout->addWidget(tableView->GetWidget()); mainWindow.setCentralWidget(widget); // Now show the application and start the event loop mainWindow.show(); return app.exec(); } I have recompiled VTK in debug mode and get more debug info. This is the backtrace for this program. In this screenshot show that problem could come form "this" pointer "this" should be vtkTextRenderer * but "this" point to null pointer. I think this could be a bug in VTK 6.1 but have no idea how to fix it.Please give me some suggestion. Thanks -- View this message in context: http://vtk.1045678.n5.nabble.com/Bug-when-using-ploting-function-vtk-6-1-Qt5-3-Ubuntu-tp5730118.html Sent from the VTK - Dev mailing list archive at Nabble.com. From c.kolb at dkfz-heidelberg.de Wed Jan 14 09:55:16 2015 From: c.kolb at dkfz-heidelberg.de (Christoph Kolb) Date: Wed, 14 Jan 2015 15:55:16 +0100 Subject: [vtk-developers] Anti-aliasing / multi sampling in QVTKWidget2 ? In-Reply-To: References: <57EE86D11538B44096C712532DBB6C5A011C74E4666A@DKFZEX01.ad.dkfz-heidelberg.de> <57EE86D11538B44096C712532DBB6C5A011C74E4678A@DKFZEX01.ad.dkfz-heidelberg.de> Message-ID: <54B68354.9010903@dkfz-heidelberg.de> Hi Marcus, we have created a gerrit topic with the proposed changes: http://review.source.kitware.com/#/c/18864/ It works for Qt4 and Qt5 (tested in linux) Thank you! Christoph On 01/13/2015 04:36 PM, Marcus D. Hanwell wrote: > Hi Thomas, > > What version of Qt did you test that with? If that approach works it > sounds reasonable to me, and I would be happy to help get such a patch > through the review process. > > Thanks, > > Marcus > > On Tue, Jan 13, 2015 at 4:08 AM, Kilgus, Thomas > wrote: >> Hey Marcus, >> >> thanks for your answer. We figured out that, what is needed to make it work again: >> QGLFormat newform = this->format(); >> newform.setSampleBuffers(true); >> newform.setSamples(8); >> this->setFormat(newform); >> >> Wouldn't it make sense to add this code to the constructor of the QVTKWidget2 in order to achieve the same behavior as QVTKWidget? Alternatively, a note in the documentation would be nice. Let me know if we can contribute anything like this. >> >> Regards, >> Thomas >> >> >> -----Urspr?ngliche Nachricht----- >> Von: Marcus D. Hanwell [mailto:marcus.hanwell at kitware.com] >> Gesendet: Montag, 12. Januar 2015 15:36 >> An: Kilgus, Thomas >> Cc: vtk-developers at vtk.org >> Betreff: Re: [vtk-developers] Anti-aliasing / multi sampling in QVTKWidget2 ? >> >> On Mon, Jan 12, 2015 at 5:24 AM, Kilgus, Thomas wrote: >>> Dear List, >>> >>> we recently switched from QVTKWidget to QVTKWidget2 and now by default >>> anti-aliasing is disabled. >>> >>> We managed to track the issue down with this VTK example: >>> >>> http://www.vtk.org/Wiki/VTK/Examples/Cxx/Qt/RenderWindowUISingleInheri >>> tance >>> >>> Just render the sphere in wireframe mode. If you run the example with >>> a QVTKWidget, lines are smooth and with QVTKWidget2 they are stepped. >>> SetMultiSamples(8) should do the job, but this does not have any >>> effect (and is the default value). >>> >>> Any ideas on this? >>> >> As QVTKWidget reuses Qt's QGLWidget you must use the Qt API for any OpenGL context settings. Multisampling is one of the things that must be done as the context is created, and so cannot be done by VTK. >> >> I can't remember the API off the top of my head, but I know Qt has API in 4 at least for antialiasing. Qt 5 does not, but the new QOpenGLWidget does - QGLWidget lost a number of features that seem to have been reintroduced in this class in the 5.4 release. >> >> Hope that helps clear this up a little. >> >> Marcus > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Search the list archives at: http://markmail.org/search/?q=vtk-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtk-developers > From david.lonie at kitware.com Wed Jan 14 10:24:52 2015 From: david.lonie at kitware.com (David Lonie) Date: Wed, 14 Jan 2015 10:24:52 -0500 Subject: [vtk-developers] Nested structs and python wrapping Message-ID: Hi folks, I'm looking for some advice on getting a patch to play nicely with the wrappers. I have a vtkObject derived class that contains a nested struct: class EXPORT_MACRO vtkTextRenderer : public vtkObject { public: struct Metrics; ... bool GetMetrics(..., Metrics &); } struct vtkTextRenderer::Metrics { ... } It looks like the python wrappers aren't happy about this, see: https://open.cdash.org/viewBuildError.php?buildid=3651284 Ben pointed out that I can use the __WRAP__ define to exclude these, but I'm interested in hearing more options. I see a couple of paths forward: 1) Exclude all usages of Metrics with __WRAP__ Cons: Functionality can't be used from wrapped languages. Maintenance would be a chore, as the Metrics struct is used in a number of text rendering related headers. 2) Change Metrics to a stand-alone vtkObject derived class. Cons: It's a really lightweight object, I'd like to avoid having the overhead of vtkObject enter into this. 3) Special wrapping for the metrics class. Cons: Work. Also, maintenance would be a headache as I expect this struct to have new members added over time. Any options I'm missing? I'm leaning towards 2, but a more lightweight solution would be great, if it exists! Thanks, Dave -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.gobbi at gmail.com Wed Jan 14 11:00:06 2015 From: david.gobbi at gmail.com (David Gobbi) Date: Wed, 14 Jan 2015 09:00:06 -0700 Subject: [vtk-developers] Nested structs and python wrapping In-Reply-To: References: Message-ID: Hi David, This suggests a bug in the wrappers, because the wrappers should be excluding these methods automatically. The use of "#ifndef __WRAP__" should be avoided, if there is an option to instead fix the wrappers themselves. I'll take a look at the code sometime today in the hope that there is a simple fix. The wrappers cannot wrap nested classes or structs yet, because they use a flat global namespace for object types. I did a bunch of work to fix this three years ago, but never finished because the "flat namespace" assumption worked well for VTK. I've always wanted an excuse to go back and finish this code. - David On Wed, Jan 14, 2015 at 8:24 AM, David Lonie wrote: > Hi folks, > > I'm looking for some advice on getting a patch to play nicely with the > wrappers. > > I have a vtkObject derived class that contains a nested struct: > > class EXPORT_MACRO vtkTextRenderer : public vtkObject > { > public: > struct Metrics; > > ... > > bool GetMetrics(..., Metrics &); > } > > struct vtkTextRenderer::Metrics > { > ... > } > > It looks like the python wrappers aren't happy about this, see: > > https://open.cdash.org/viewBuildError.php?buildid=3651284 > > Ben pointed out that I can use the __WRAP__ define to exclude these, but > I'm interested in hearing more options. I see a couple of paths forward: > > 1) Exclude all usages of Metrics with __WRAP__ > > Cons: Functionality can't be used from wrapped languages. Maintenance > would be a chore, as the Metrics struct is used in a number of text > rendering related headers. > > 2) Change Metrics to a stand-alone vtkObject derived class. > > Cons: It's a really lightweight object, I'd like to avoid having the > overhead of vtkObject enter into this. > > 3) Special wrapping for the metrics class. > > Cons: Work. Also, maintenance would be a headache as I expect this struct > to have new members added over time. > > Any options I'm missing? I'm leaning towards 2, but a more lightweight > solution would be great, if it exists! > > Thanks, > Dave > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From DLRdave at aol.com Wed Jan 14 12:39:38 2015 From: DLRdave at aol.com (David Cole) Date: Wed, 14 Jan 2015 12:39:38 -0500 Subject: [vtk-developers] Attributing VTK in a commercial app Message-ID: I know closed-source commercial apps are quite pass? in this crowd, but ... say we have such an application that uses VTK. What are the requirements for selling/distributing this app? Is it sufficient to mention in a file, and in our "About" dialog, that we use VTK under the terms of the BSD license? Or is there more (or less) to it than that? By the way, searching for "vtk license" yields [this link][1], which is now 7 years out of date. Is it the most up-to-date reference page detailing VTK's license? Thanks, David C. [1]: http://www.vtk.org/VTK/project/license.html From bill.lorensen at gmail.com Wed Jan 14 12:51:27 2015 From: bill.lorensen at gmail.com (Bill Lorensen) Date: Wed, 14 Jan 2015 12:51:27 -0500 Subject: [vtk-developers] Attributing VTK in a commercial app In-Reply-To: References: Message-ID: Dave, The Copyright.htm file in the VTK source tree looks the same as your link. Bill On Wed, Jan 14, 2015 at 12:39 PM, David Cole via vtk-developers wrote: > I know closed-source commercial apps are quite pass? in this crowd, > but ... say we have such an application that uses VTK. > > What are the requirements for selling/distributing this app? Is it > sufficient to mention in a file, and in our "About" dialog, that we > use VTK under the terms of the BSD license? Or is there more (or less) > to it than that? > > By the way, searching for "vtk license" yields [this link][1], which > is now 7 years out of date. Is it the most up-to-date reference page > detailing VTK's license? > > > Thanks, > David C. > > [1]: http://www.vtk.org/VTK/project/license.html > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html > > Search the list archives at: http://markmail.org/search/?q=vtk-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtk-developers > -- Unpaid intern in BillsBasement at noware dot com From ben.boeckel at kitware.com Wed Jan 14 13:42:45 2015 From: ben.boeckel at kitware.com (Ben Boeckel) Date: Wed, 14 Jan 2015 13:42:45 -0500 Subject: [vtk-developers] Attributing VTK in a commercial app In-Reply-To: References: Message-ID: <20150114184245.GA25954@megas.kitwarein.com> On Wed, Jan 14, 2015 at 12:39:38 -0500, David Cole via vtk-developers wrote: > I know closed-source commercial apps are quite pass? in this crowd, > but ... say we have such an application that uses VTK. > > What are the requirements for selling/distributing this app? Is it > sufficient to mention in a file, and in our "About" dialog, that we > use VTK under the terms of the BSD license? Or is there more (or less) > to it than that? > > By the way, searching for "vtk license" yields [this link][1], which > is now 7 years out of date. Is it the most up-to-date reference page > detailing VTK's license? Basically the BSD license says you have to have VTK's license (you can't just mention "BSD" since there are a "few"[1] variants) with it in binary or source form and you can't use VTK's contributors names to endorse your product without written permission (e.g., you can't fork FreeBSD and say "made by PHK!" on your product). --Ben [1]https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD From ben.boeckel at kitware.com Wed Jan 14 13:46:36 2015 From: ben.boeckel at kitware.com (Ben Boeckel) Date: Wed, 14 Jan 2015 13:46:36 -0500 Subject: [vtk-developers] Attributing VTK in a commercial app In-Reply-To: <20150114184245.GA25954@megas.kitwarein.com> References: <20150114184245.GA25954@megas.kitwarein.com> Message-ID: <20150114184636.GB25954@megas.kitwarein.com> On Wed, Jan 14, 2015 at 13:42:45 -0500, Ben Boeckel wrote: > Basically the BSD license says you have to have VTK's license (you can't > just mention "BSD" since there are a "few"[1] variants) with it in > binary or source form and you can't use VTK's contributors names to > endorse your product without written permission (e.g., you can't fork > FreeBSD and say "made by PHK!" on your product). I guess, to be clear: IANAL and TINLA :) . > [1]https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD Interesting; there's a "VTK" variant there (but the last clause was removed in 2008; it seems to have come from the zlib license). --Ben From julio.hoffimann at gmail.com Wed Jan 14 13:58:58 2015 From: julio.hoffimann at gmail.com (=?UTF-8?Q?J=C3=BAlio_Hoffimann?=) Date: Wed, 14 Jan 2015 10:58:58 -0800 Subject: [vtk-developers] Fwd: QVTKWidget segfault on Linux with Qt5, VTK6.2, GCC4.9, C++14 In-Reply-To: References: Message-ID: Hi Oon-Ee, I just did what Marcus said, we have to make sure the reference count doesn't go to zero for the orientation widget. It's not being referenced anywhere else in the code, so when the constructor finishes its job, the local variable is destroyed. You just have to make the orientation widget a member of your viewer class, initialize it in the constructor as m_orientationWidget = vtkSmartPointer::New(); and that is it. -J?lio. -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.gobbi at gmail.com Wed Jan 14 14:19:33 2015 From: david.gobbi at gmail.com (David Gobbi) Date: Wed, 14 Jan 2015 12:19:33 -0700 Subject: [vtk-developers] Nested structs and python wrapping In-Reply-To: References: Message-ID: Hi David, I've identified the bug in the wrappers. They are trying to wrap the out-of-line definition of vtkTextRenderer::Metrics as a class named "vtkRenderer::Metrics" in the global namespace (almost as if the "::" was actually part of the identifier). This is something that I'll fix as soon as I have time to do so (probably not today). If you put the definition of "Metrics" inline, i.e. within vtkTextRender, then the wrappers will have no problem. They will automatically exclude Metrics, and any methods that use it, from wrapping. - David On Wed, Jan 14, 2015 at 9:00 AM, David Gobbi wrote: > Hi David, > > This suggests a bug in the wrappers, because the wrappers should be > excluding > these methods automatically. The use of "#ifndef __WRAP__" should be > avoided, > if there is an option to instead fix the wrappers themselves. I'll take a > look at the > code sometime today in the hope that there is a simple fix. > > The wrappers cannot wrap nested classes or structs yet, because they use a > flat > global namespace for object types. I did a bunch of work to fix this > three years ago, > but never finished because the "flat namespace" assumption worked well for > VTK. > I've always wanted an excuse to go back and finish this code. > > - David > > > On Wed, Jan 14, 2015 at 8:24 AM, David Lonie > wrote: > >> Hi folks, >> >> I'm looking for some advice on getting a patch to play nicely with the >> wrappers. >> >> I have a vtkObject derived class that contains a nested struct: >> >> class EXPORT_MACRO vtkTextRenderer : public vtkObject >> { >> public: >> struct Metrics; >> >> ... >> >> bool GetMetrics(..., Metrics &); >> } >> >> struct vtkTextRenderer::Metrics >> { >> ... >> } >> >> It looks like the python wrappers aren't happy about this, see: >> >> https://open.cdash.org/viewBuildError.php?buildid=3651284 >> >> Ben pointed out that I can use the __WRAP__ define to exclude these, but >> I'm interested in hearing more options. I see a couple of paths forward: >> >> 1) Exclude all usages of Metrics with __WRAP__ >> >> Cons: Functionality can't be used from wrapped languages. Maintenance >> would be a chore, as the Metrics struct is used in a number of text >> rendering related headers. >> >> 2) Change Metrics to a stand-alone vtkObject derived class. >> >> Cons: It's a really lightweight object, I'd like to avoid having the >> overhead of vtkObject enter into this. >> >> 3) Special wrapping for the metrics class. >> >> Cons: Work. Also, maintenance would be a headache as I expect this struct >> to have new members added over time. >> >> Any options I'm missing? I'm leaning towards 2, but a more lightweight >> solution would be great, if it exists! >> >> Thanks, >> Dave >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.lonie at kitware.com Wed Jan 14 14:23:59 2015 From: david.lonie at kitware.com (David Lonie) Date: Wed, 14 Jan 2015 14:23:59 -0500 Subject: [vtk-developers] Nested structs and python wrapping In-Reply-To: References: Message-ID: Thanks David! That's a fantastically easy workaround, I should have thought to try that ;-) Dave On Wed, Jan 14, 2015 at 2:19 PM, David Gobbi wrote: > Hi David, > > I've identified the bug in the wrappers. They are trying to wrap the > out-of-line > definition of vtkTextRenderer::Metrics as a class named > "vtkRenderer::Metrics" > in the global namespace (almost as if the "::" was actually part of the > identifier). > This is something that I'll fix as soon as I have time to do so (probably > not today). > > If you put the definition of "Metrics" inline, i.e. within vtkTextRender, > then the > wrappers will have no problem. They will automatically exclude Metrics, > and > any methods that use it, from wrapping. > > - David > > On Wed, Jan 14, 2015 at 9:00 AM, David Gobbi > wrote: > >> Hi David, >> >> This suggests a bug in the wrappers, because the wrappers should be >> excluding >> these methods automatically. The use of "#ifndef __WRAP__" should be >> avoided, >> if there is an option to instead fix the wrappers themselves. I'll take a >> look at the >> code sometime today in the hope that there is a simple fix. >> >> The wrappers cannot wrap nested classes or structs yet, because they use >> a flat >> global namespace for object types. I did a bunch of work to fix this >> three years ago, >> but never finished because the "flat namespace" assumption worked well >> for VTK. >> I've always wanted an excuse to go back and finish this code. >> >> - David >> >> >> On Wed, Jan 14, 2015 at 8:24 AM, David Lonie >> wrote: >> >>> Hi folks, >>> >>> I'm looking for some advice on getting a patch to play nicely with the >>> wrappers. >>> >>> I have a vtkObject derived class that contains a nested struct: >>> >>> class EXPORT_MACRO vtkTextRenderer : public vtkObject >>> { >>> public: >>> struct Metrics; >>> >>> ... >>> >>> bool GetMetrics(..., Metrics &); >>> } >>> >>> struct vtkTextRenderer::Metrics >>> { >>> ... >>> } >>> >>> It looks like the python wrappers aren't happy about this, see: >>> >>> https://open.cdash.org/viewBuildError.php?buildid=3651284 >>> >>> Ben pointed out that I can use the __WRAP__ define to exclude these, but >>> I'm interested in hearing more options. I see a couple of paths forward: >>> >>> 1) Exclude all usages of Metrics with __WRAP__ >>> >>> Cons: Functionality can't be used from wrapped languages. Maintenance >>> would be a chore, as the Metrics struct is used in a number of text >>> rendering related headers. >>> >>> 2) Change Metrics to a stand-alone vtkObject derived class. >>> >>> Cons: It's a really lightweight object, I'd like to avoid having the >>> overhead of vtkObject enter into this. >>> >>> 3) Special wrapping for the metrics class. >>> >>> Cons: Work. Also, maintenance would be a headache as I expect this >>> struct to have new members added over time. >>> >>> Any options I'm missing? I'm leaning towards 2, but a more lightweight >>> solution would be great, if it exists! >>> >>> Thanks, >>> Dave >>> >>> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From DLRdave at aol.com Wed Jan 14 15:54:31 2015 From: DLRdave at aol.com (David Cole) Date: Wed, 14 Jan 2015 15:54:31 -0500 Subject: [vtk-developers] Attributing VTK in a commercial app In-Reply-To: <20150114184636.GB25954@megas.kitwarein.com> References: <20150114184245.GA25954@megas.kitwarein.com> <20150114184636.GB25954@megas.kitwarein.com> Message-ID: What do you mean by "Basically the BSD license says you have to have VTK's license" ?? Do you mean I need to include the text of VTK's "Copyright.txt" file? It's a closed-source app, and it will be sold under a commercial license. It is not going to have an open-source license. We are not going to use anybody's name to sell it, but we would like to give kudos where kudos are due. i.e. -- we'd like to say "Made with VTK!," ... we do not want to say "endorsed by Bill Lorensen..." (although we may seek his endorsement separately from this conversation....) :-) Thx, D On Wed, Jan 14, 2015 at 1:46 PM, Ben Boeckel wrote: > On Wed, Jan 14, 2015 at 13:42:45 -0500, Ben Boeckel wrote: >> Basically the BSD license says you have to have VTK's license (you can't >> just mention "BSD" since there are a "few"[1] variants) with it in >> binary or source form and you can't use VTK's contributors names to >> endorse your product without written permission (e.g., you can't fork >> FreeBSD and say "made by PHK!" on your product). > > I guess, to be clear: IANAL and TINLA :) . > >> [1]https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD > > Interesting; there's a "VTK" variant there (but the last clause was > removed in 2008; it seems to have come from the zlib license). > > --Ben From dave.demarle at kitware.com Wed Jan 14 16:20:27 2015 From: dave.demarle at kitware.com (David E DeMarle) Date: Wed, 14 Jan 2015 16:20:27 -0500 Subject: [vtk-developers] Attributing VTK in a commercial app In-Reply-To: References: <20150114184245.GA25954@megas.kitwarein.com> <20150114184636.GB25954@megas.kitwarein.com> Message-ID: On Wed, Jan 14, 2015 at 3:54 PM, David Cole via vtk-developers < vtk-developers at vtk.org> wrote: > What do you mean by "Basically the BSD license says you have to have > VTK's license" ?? > > Just means that the software has to be able to display VTK's license. Maybe an about button will say something to the effect of, "parts of this application use VTK for which the copyright is ?." > Do you mean I need to include the text of VTK's "Copyright.txt" file? > > It's a closed-source app, and it will be sold under a commercial > license. It is not going to have an open-source license. > > Totally OK. Lame but OK. > We are not going to use anybody's name to sell it, but we would like > to give kudos where kudos are due. i.e. -- we'd like to say "Made with > VTK!," ... we do not want to say "endorsed by Bill Lorensen..." > (although we may seek his endorsement separately from this > conversation....) :-) > > Send me a large check and I'll endorse your application. > Thx, > D > > > On Wed, Jan 14, 2015 at 1:46 PM, Ben Boeckel > wrote: > > On Wed, Jan 14, 2015 at 13:42:45 -0500, Ben Boeckel wrote: > >> Basically the BSD license says you have to have VTK's license (you can't > >> just mention "BSD" since there are a "few"[1] variants) with it in > >> binary or source form and you can't use VTK's contributors names to > >> endorse your product without written permission (e.g., you can't fork > >> FreeBSD and say "made by PHK!" on your product). > > > > I guess, to be clear: IANAL and TINLA :) . > > > >> [1]https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD > > > > Interesting; there's a "VTK" variant there (but the last clause was > > removed in 2008; it seems to have come from the zlib license). > > > > --Ben > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Search the list archives at: http://markmail.org/search/?q=vtk-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtk-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dave.demarle at kitware.com Wed Jan 14 16:47:22 2015 From: dave.demarle at kitware.com (David E DeMarle) Date: Wed, 14 Jan 2015 16:47:22 -0500 Subject: [vtk-developers] Attributing VTK in a commercial app In-Reply-To: References: <20150114184245.GA25954@megas.kitwarein.com> <20150114184636.GB25954@megas.kitwarein.com> Message-ID: yes David E DeMarle Kitware, Inc. R&D Engineer 21 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-881-4909 On Wed, Jan 14, 2015 at 4:46 PM, David Cole wrote: > If I scan the $1.00 check, and print it out on legal size paper, would > that be large enough? > > :-P > > > thx > > > On Wed, Jan 14, 2015 at 4:20 PM, David E DeMarle > wrote: > > On Wed, Jan 14, 2015 at 3:54 PM, David Cole via vtk-developers > > wrote: > >> > >> What do you mean by "Basically the BSD license says you have to have > >> VTK's license" ?? > >> > > > > Just means that the software has to be able to display VTK's license. > Maybe > > an about button will say something to the effect of, "parts of this > > application use VTK for which the copyright is ?." > > > >> > >> Do you mean I need to include the text of VTK's "Copyright.txt" file? > >> > >> It's a closed-source app, and it will be sold under a commercial > >> license. It is not going to have an open-source license. > >> > > > > Totally OK. Lame but OK. > > > >> > >> We are not going to use anybody's name to sell it, but we would like > >> to give kudos where kudos are due. i.e. -- we'd like to say "Made with > >> VTK!," ... we do not want to say "endorsed by Bill Lorensen..." > >> (although we may seek his endorsement separately from this > >> conversation....) :-) > >> > > > > Send me a large check and I'll endorse your application. > > > >> > >> Thx, > >> D > >> > >> > >> On Wed, Jan 14, 2015 at 1:46 PM, Ben Boeckel > >> wrote: > >> > On Wed, Jan 14, 2015 at 13:42:45 -0500, Ben Boeckel wrote: > >> >> Basically the BSD license says you have to have VTK's license (you > >> >> can't > >> >> just mention "BSD" since there are a "few"[1] variants) with it in > >> >> binary or source form and you can't use VTK's contributors names to > >> >> endorse your product without written permission (e.g., you can't fork > >> >> FreeBSD and say "made by PHK!" on your product). > >> > > >> > I guess, to be clear: IANAL and TINLA :) . > >> > > >> >> [1]https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD > >> > > >> > Interesting; there's a "VTK" variant there (but the last clause was > >> > removed in 2008; it seems to have come from the zlib license). > >> > > >> > --Ben > >> _______________________________________________ > >> Powered by www.kitware.com > >> > >> Visit other Kitware open-source projects at > >> http://www.kitware.com/opensource/opensource.html > >> > >> Search the list archives at: > http://markmail.org/search/?q=vtk-developers > >> > >> Follow this link to subscribe/unsubscribe: > >> http://public.kitware.com/mailman/listinfo/vtk-developers > >> > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.gobbi at gmail.com Wed Jan 14 16:48:02 2015 From: david.gobbi at gmail.com (David Gobbi) Date: Wed, 14 Jan 2015 14:48:02 -0700 Subject: [vtk-developers] Attributing VTK in a commercial app In-Reply-To: References: <20150114184245.GA25954@megas.kitwarein.com> <20150114184636.GB25954@megas.kitwarein.com> Message-ID: Hi David, I think you're making a mountain out of a molehill. This really isn't even a VTK-specific issue, since I'm sure that your application uses tons of other bsd-licensed code in addition to VTK. The license says nothing about what you put into the "About" box. If you want, you could add a couple lines to say "This software makes use of the following third-party open-source libraries:" and list the packages that you use the most heavily. Again, this is totally optional, it's just a courtesy. Assuming that your commercial app has documentation, you should list the VTK license in an appendix. Just say the following: "This software makes use of VTK, copyright (c) Ken Martin, Will Schroeder, and Bill Lorensen. The VTK license is shown below". In fact, I'm sure that it instead of saying "shown below", it would be okay to simply link to the above-referenced web page (that's what the source files themselves do). Yes, Kitware should be updating the date in the copyright file. - David -------------- next part -------------- An HTML attachment was scrubbed... URL: From ben.boeckel at kitware.com Wed Jan 14 16:49:37 2015 From: ben.boeckel at kitware.com (Ben Boeckel) Date: Wed, 14 Jan 2015 16:49:37 -0500 Subject: [vtk-developers] Attributing VTK in a commercial app In-Reply-To: References: <20150114184245.GA25954@megas.kitwarein.com> <20150114184636.GB25954@megas.kitwarein.com> Message-ID: <20150114214937.GB19811@megas.kitwarein.com> On Wed, Jan 14, 2015 at 16:20:27 -0500, David E DeMarle wrote: > On Wed, Jan 14, 2015 at 3:54 PM, David Cole via vtk-developers < > vtk-developers at vtk.org> wrote: > > What do you mean by "Basically the BSD license says you have to have > > VTK's license" ?? > > > Just means that the software has to be able to display VTK's license. Maybe > an about button will say something to the effect of, "parts of this > application use VTK for which the copyright is ?." Yes, sorry that wasn't clear. The *text* of the license must be present, not the terms themselves (but VTK's terms must be abided by *you*, but that is "just" the text of the license itself). This is where the "virality" of the GPL comes from: its *terms* must be passed through all the way to the end user, not just its text. Couple that with the clause from the GPL which forbids additional restrictions in addition to it and you get the case where GPL + X is either (essentially) GPL or an infringement of the author's copyright (incompatible). > > Do you mean I need to include the text of VTK's "Copyright.txt" file? Yes. > > It's a closed-source app, and it will be sold under a commercial > > license. It is not going to have an open-source license. > > > Totally OK. Lame but OK. Indeed :/ . > > We are not going to use anybody's name to sell it, but we would like > > to give kudos where kudos are due. i.e. -- we'd like to say "Made with > > VTK!," ... we do not want to say "endorsed by Bill Lorensen..." > > (although we may seek his endorsement separately from this > > conversation....) :-) Right. You can say "Made with VTK", but you can't use Kitware's, or any contributors' reputation to market your (derived) application (to me, it's a hat tip to trademark law and not confusing people as to what the *real* VTK is). It's not so onerous for applications which *use* VTK as it is for those which might be *forks* of VTK. Again, IANAL and TINLA. --Ben From DLRdave at aol.com Wed Jan 14 16:46:55 2015 From: DLRdave at aol.com (David Cole) Date: Wed, 14 Jan 2015 16:46:55 -0500 Subject: [vtk-developers] Attributing VTK in a commercial app In-Reply-To: References: <20150114184245.GA25954@megas.kitwarein.com> <20150114184636.GB25954@megas.kitwarein.com> Message-ID: If I scan the $1.00 check, and print it out on legal size paper, would that be large enough? :-P thx On Wed, Jan 14, 2015 at 4:20 PM, David E DeMarle wrote: > On Wed, Jan 14, 2015 at 3:54 PM, David Cole via vtk-developers > wrote: >> >> What do you mean by "Basically the BSD license says you have to have >> VTK's license" ?? >> > > Just means that the software has to be able to display VTK's license. Maybe > an about button will say something to the effect of, "parts of this > application use VTK for which the copyright is ?." > >> >> Do you mean I need to include the text of VTK's "Copyright.txt" file? >> >> It's a closed-source app, and it will be sold under a commercial >> license. It is not going to have an open-source license. >> > > Totally OK. Lame but OK. > >> >> We are not going to use anybody's name to sell it, but we would like >> to give kudos where kudos are due. i.e. -- we'd like to say "Made with >> VTK!," ... we do not want to say "endorsed by Bill Lorensen..." >> (although we may seek his endorsement separately from this >> conversation....) :-) >> > > Send me a large check and I'll endorse your application. > >> >> Thx, >> D >> >> >> On Wed, Jan 14, 2015 at 1:46 PM, Ben Boeckel >> wrote: >> > On Wed, Jan 14, 2015 at 13:42:45 -0500, Ben Boeckel wrote: >> >> Basically the BSD license says you have to have VTK's license (you >> >> can't >> >> just mention "BSD" since there are a "few"[1] variants) with it in >> >> binary or source form and you can't use VTK's contributors names to >> >> endorse your product without written permission (e.g., you can't fork >> >> FreeBSD and say "made by PHK!" on your product). >> > >> > I guess, to be clear: IANAL and TINLA :) . >> > >> >> [1]https://fedoraproject.org/wiki/Licensing:BSD?rd=Licensing/BSD >> > >> > Interesting; there's a "VTK" variant there (but the last clause was >> > removed in 2008; it seems to have come from the zlib license). >> > >> > --Ben >> _______________________________________________ >> Powered by www.kitware.com >> >> Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html >> >> Search the list archives at: http://markmail.org/search/?q=vtk-developers >> >> Follow this link to subscribe/unsubscribe: >> http://public.kitware.com/mailman/listinfo/vtk-developers >> > From ben.boeckel at kitware.com Wed Jan 14 17:15:39 2015 From: ben.boeckel at kitware.com (Ben Boeckel) Date: Wed, 14 Jan 2015 17:15:39 -0500 Subject: [vtk-developers] Attributing VTK in a commercial app In-Reply-To: References: <20150114184245.GA25954@megas.kitwarein.com> <20150114184636.GB25954@megas.kitwarein.com> Message-ID: <20150114221539.GA20895@megas.kitwarein.com> On Wed, Jan 14, 2015 at 14:48:02 -0700, David Gobbi wrote: > Yes, Kitware should be updating the date in the copyright file. http://review.source.kitware.com/#/t/5298/ --Ben From DLRdave at aol.com Thu Jan 15 06:21:30 2015 From: DLRdave at aol.com (David Cole) Date: Thu, 15 Jan 2015 06:21:30 -0500 Subject: [vtk-developers] 22 new failing GPU tests on OpenGL2 dashboard Message-ID: This build: https://open.cdash.org/buildSummary.php?buildid=3652134 with these updates: https://open.cdash.org/viewUpdate.php?buildid=3652134 introduced 22 new TestGPURayCast test failures: https://open.cdash.org/viewTest.php?onlydelta&buildid=3652134 This is an OpenGL2 build, running on low end built-in Intel graphics (with Windows 8.1)... Can you make the tests pass again on this machine like they were in the previous build...? Thanks, David C. From aashish.chaudhary at kitware.com Thu Jan 15 09:57:09 2015 From: aashish.chaudhary at kitware.com (Aashish Chaudhary) Date: Thu, 15 Jan 2015 09:57:09 -0500 Subject: [vtk-developers] 22 new failing GPU tests on OpenGL2 dashboard In-Reply-To: References: Message-ID: Thanks for pointing it out. Is this machine accesible to us? I am not seeing these failures on our dashboards. The earliest I can look into it is this evening. What intel graphics card this machine has? - Aashish On Thu, Jan 15, 2015 at 6:21 AM, David Cole wrote: > This build: > https://open.cdash.org/buildSummary.php?buildid=3652134 > > with these updates: > https://open.cdash.org/viewUpdate.php?buildid=3652134 > > introduced 22 new TestGPURayCast test failures: > https://open.cdash.org/viewTest.php?onlydelta&buildid=3652134 > > This is an OpenGL2 build, running on low end built-in Intel graphics > (with Windows 8.1)... > > Can you make the tests pass again on this machine like they were in > the previous build...? > > > Thanks, > David C. > -- *| Aashish Chaudhary | Technical Leader | Kitware Inc. * *| http://www.kitware.com/company/team/chaudhary.html * -------------- next part -------------- An HTML attachment was scrubbed... URL: From DLRdave at aol.com Thu Jan 15 10:20:50 2015 From: DLRdave at aol.com (David Cole) Date: Thu, 15 Jan 2015 10:20:50 -0500 Subject: [vtk-developers] 22 new failing GPU tests on OpenGL2 dashboard In-Reply-To: References: Message-ID: The machine does not have a publicly available way for you to connect... But I can try anything out for you on it, just let me know what you want me to try. The graphics is built-in Intel: Intel HD Graphics 2500, driver version 10.18.10.3621, OpenGL 4.0, OpenCL 1.2. What else do you need? thx, D On Thu, Jan 15, 2015 at 9:57 AM, Aashish Chaudhary wrote: > Thanks for pointing it out. Is this machine accesible to us? I am not seeing > these failures on our dashboards. The earliest I can look into it is this > evening. > > What intel graphics card this machine has? > > - Aashish > > On Thu, Jan 15, 2015 at 6:21 AM, David Cole wrote: >> >> This build: >> https://open.cdash.org/buildSummary.php?buildid=3652134 >> >> with these updates: >> https://open.cdash.org/viewUpdate.php?buildid=3652134 >> >> introduced 22 new TestGPURayCast test failures: >> https://open.cdash.org/viewTest.php?onlydelta&buildid=3652134 >> >> This is an OpenGL2 build, running on low end built-in Intel graphics >> (with Windows 8.1)... >> >> Can you make the tests pass again on this machine like they were in >> the previous build...? >> >> >> Thanks, >> David C. > > > > > -- > | Aashish Chaudhary > | Technical Leader > | Kitware Inc. > | http://www.kitware.com/company/team/chaudhary.html From aashish.chaudhary at kitware.com Thu Jan 15 10:41:51 2015 From: aashish.chaudhary at kitware.com (Aashish Chaudhary) Date: Thu, 15 Jan 2015 10:41:51 -0500 Subject: [vtk-developers] 22 new failing GPU tests on OpenGL2 dashboard In-Reply-To: References: Message-ID: Thanks. Can you run just one test with -V options and send me that output. I am wondering something is failing texture wise (most likely 3D texture) which is causing the issue. - Aashish On Thu, Jan 15, 2015 at 10:20 AM, David Cole wrote: > The machine does not have a publicly available way for you to > connect... But I can try anything out for you on it, just let me know > what you want me to try. > > The graphics is built-in Intel: Intel HD Graphics 2500, driver version > 10.18.10.3621, OpenGL 4.0, OpenCL 1.2. > > What else do you need? > > thx, > D > > > > On Thu, Jan 15, 2015 at 9:57 AM, Aashish Chaudhary > wrote: > > Thanks for pointing it out. Is this machine accesible to us? I am not > seeing > > these failures on our dashboards. The earliest I can look into it is this > > evening. > > > > What intel graphics card this machine has? > > > > - Aashish > > > > On Thu, Jan 15, 2015 at 6:21 AM, David Cole wrote: > >> > >> This build: > >> https://open.cdash.org/buildSummary.php?buildid=3652134 > >> > >> with these updates: > >> https://open.cdash.org/viewUpdate.php?buildid=3652134 > >> > >> introduced 22 new TestGPURayCast test failures: > >> https://open.cdash.org/viewTest.php?onlydelta&buildid=3652134 > >> > >> This is an OpenGL2 build, running on low end built-in Intel graphics > >> (with Windows 8.1)... > >> > >> Can you make the tests pass again on this machine like they were in > >> the previous build...? > >> > >> > >> Thanks, > >> David C. > > > > > > > > > > -- > > | Aashish Chaudhary > > | Technical Leader > > | Kitware Inc. > > | http://www.kitware.com/company/team/chaudhary.html > -- *| Aashish Chaudhary | Technical Leader | Kitware Inc. * *| http://www.kitware.com/company/team/chaudhary.html * -------------- next part -------------- An HTML attachment was scrubbed... URL: From joachim.pouderoux at kitware.com Fri Jan 16 08:04:43 2015 From: joachim.pouderoux at kitware.com (Joachim Pouderoux) Date: Fri, 16 Jan 2015 14:04:43 +0100 Subject: [vtk-developers] ANN: VTK and ParaView Training Courses in Lyon, France, February 3-4, 2015 Message-ID: Kitware will be holding VTK and ParaView courses on February 3-4, 2015 in Lyon, France. Please visit our web site for more information and registration details at either: http://training.kitware.fr/browse/83 http://training.kitware.fr/browse/84 or in French: http://formations.kitware.fr/browse/83 http://formations.kitware.fr/browse/84 Note that the course will be taught in English. If you have any question, please contact us at formations at http://www.kitware.fr Thank you, *Joachim Pouderoux* *PhD, Technical Expert* *Kitware SAS * -------------- next part -------------- An HTML attachment was scrubbed... URL: From DLRdave at aol.com Fri Jan 16 11:30:12 2015 From: DLRdave at aol.com (David Cole) Date: Fri, 16 Jan 2015 11:30:12 -0500 Subject: [vtk-developers] 22 new failing GPU tests on OpenGL2 dashboard In-Reply-To: References: Message-ID: I ran: C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug> ctest -R "GPURayCast" -VV > GPURayCastTests.txt Errors while running CTest Whatever is failing is not very informative on the console output... I don't see any errors reported other than the test failures due to image differences. The ones that fail do not render any volume at all, just the background color of the render window. Let me know if you'd rather have it as a text file attachment, or if there is anything else I can try on this machine for you. Thanks, David C. And here is the verbose output: UpdateCTestConfiguration from :C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/DartConfiguration.tcl Parse Config file:C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/DartConfiguration.tcl Add coverage exclude regular expressions. Add coverage exclude: vtk.*TCLInit.cxx Add coverage exclude: vtk[^\.]+(Java|Python|Tcl).cxx Add coverage exclude: .*vtkOpenGLState.* Add coverage exclude: .*Testing.Cxx.*cxx Add coverage exclude: .*Testing.Cxx.*h Add coverage exclude: .*moc_.*cxx Add coverage exclude: .*/Rendering/OpenGL/vtkgl.* Add coverage exclude: .*/Utilities/.* Add coverage exclude: .*/ThirdParty/.* Add coverage exclude: .*vtkOpenGLPolyDataMapper.* SetCTestConfiguration:CMakeCommand:C:/Program Files (x86)/CMake/bin/cmake.exe UpdateCTestConfiguration from :C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/DartConfiguration.tcl Parse Config file:C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/DartConfiguration.tcl Test project C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug Constructing a list of tests Done constructing a list of tests Checking test dependency graph... Checking test dependency graph end test 795 Start 795: vtkRenderingVolumeCxx-TestGPURayCastAdditive 795: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastAdditive" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastAdditive.png" 795: Test timeout computed to be: 1500 795: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) 795: 3462.57StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastAdditive.png 795: Failed Image Test : 3462.57 795: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastAdditive.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastAdditive.png0.25 795: 0.25 1/26 Test #795: vtkRenderingVolumeCxx-TestGPURayCastAdditive ...........................***Failed 1.02 sec test 796 Start 796: vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask 796: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastCompositeBinaryMask" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeBinaryMask.png" 796: Test timeout computed to be: 1500 796: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) 796: 3046.61StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeBinaryMask.png 796: Failed Image Test : 3046.61 796: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeBinaryMask.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeBinaryMask.png0.156 796: 0.156 2/26 Test #796: vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask ................***Failed 2.42 sec test 797 Start 797: vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend 797: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastCompositeMaskBlend" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMaskBlend.png" 797: Test timeout computed to be: 1500 797: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) 797: 3395.8StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMaskBlend.png 797: Failed Image Test : 3395.8 797: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMaskBlend.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMaskBlend.png0.14 797: 0.141 3/26 Test #797: vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend .................***Failed 0.58 sec test 798 Start 798: vtkRenderingVolumeCxx-TestGPURayCastCompositeMask 798: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastCompositeMask" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMask.png" 798: Test timeout computed to be: 1500 798: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) 798: 4265.66StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMask.png 798: Failed Image Test : 4265.66 798: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMask.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMask.png0.297 798: 0.297 4/26 Test #798: vtkRenderingVolumeCxx-TestGPURayCastCompositeMask ......................***Failed 0.81 sec test 799 Start 799: vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP 799: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastCompositeToMIP" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeToMIP.png" 799: Test timeout computed to be: 1500 799: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) 799: 6482.66StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeToMIP.png 799: Failed Image Test : 6482.66 799: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeToMIP.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeToMIP.png0.172 799: 0.171 5/26 Test #799: vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP .....................***Failed 0.73 sec test 800 Start 800: vtkRenderingVolumeCxx-TestGPURayCastCropping 800: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastCropping" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCropping.png" 800: Test timeout computed to be: 1500 800: 9580.46StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCropping.png 800: Failed Image Test : 9580.46 800: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCropping.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCropping.png0.766 800: 0.765 6/26 Test #800: vtkRenderingVolumeCxx-TestGPURayCastCropping ...........................***Failed 1.98 sec test 801 Start 801: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP 801: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastDataTypesMinIP" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMinIP.png" 801: Test timeout computed to be: 1500 801: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) 801: range=16,255 801: 7915.92StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMinIP.png 801: Failed Image Test : 7915.92 801: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMinIP.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMinIP.png0.687 801: 0.687 7/26 Test #801: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP .....................***Failed 2.13 sec test 802 Start 802: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP 802: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastDataTypesMIP" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMIP.png" 802: Test timeout computed to be: 1500 802: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) 802: 4006.97StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMIP.png 802: Failed Image Test : 4006.97 802: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMIP.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMIP.png0.656 802: 0.656 8/26 Test #802: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP .......................***Failed 2.02 sec test 803 Start 803: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite 803: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastFourComponentsComposite" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsComposite.png" 803: Test timeout computed to be: 1500 803: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) 803: 1595.46StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsComposite.png 803: Failed Image Test : 1595.46 803: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsComposite.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsComposite.png0.172 803: 0.172 9/26 Test #803: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite ............***Failed 0.72 sec test 804 Start 804: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming 804: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastFourComponentsCompositeStreaming" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsCompositeStreaming.png" 804: Test timeout computed to be: 1500 804: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) 804: Memory usage for the ImageData=16Mb 804: Dims of the ImageData=575x101x75=4Mb 804: 1591.24StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsCompositeStreaming.png 804: Failed Image Test : 1591.24 804: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsCompositeStreaming.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsCompositeStreaming.png0.172 804: 0.172 10/26 Test #804: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming ...***Failed 0.98 sec test 805 Start 805: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP 805: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastFourComponentsMinIP" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMinIP.png" 805: Test timeout computed to be: 1500 805: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) 805: 716.884StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMinIP.png 805: Failed Image Test : 716.884 805: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMinIP.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMinIP.png0.172 805: 0.172 11/26 Test #805: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP ................***Failed 0.61 sec test 806 Start 806: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP 806: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastFourComponentsMIP" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMIP.png" 806: Test timeout computed to be: 1500 806: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) 806: 4195.87StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMIP.png 806: Failed Image Test : 4195.87 806: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMIP.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMIP.png0.125 806: 0.125 12/26 Test #806: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP ..................***Failed 0.55 sec test 807 Start 807: vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark 807: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastMapperBenchmark" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperBenchmark.png" 807: Test timeout computed to be: 1500 807: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) 807: First Render Time: 0.515 807: Interactive Render Time: 0.13821 807: 25683.8StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperBenchmark.png 807: Failed Image Test : 25683.8 807: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperBenchmark.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperBenchmark.png0.187 807: 0.188 13/26 Test #807: vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark ....................***Failed 33.31 sec test 808 Start 808: vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance 808: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastMapperSampleDistance" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperSampleDistance.png" 808: Test timeout computed to be: 1500 808: 25710.4StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperSampleDistance.png 808: Failed Image Test : 25710.4 808: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperSampleDistance.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperSampleDistance.png0.157 808: 0.156 14/26 Test #808: vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance ...............***Failed 2.70 sec test 809 Start 809: vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask 809: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastMIPBinaryMask" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPBinaryMask.png" 809: Test timeout computed to be: 1500 809: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) 809: 4846.07StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPBinaryMask.png 809: Failed Image Test : 4846.07 809: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPBinaryMask.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPBinaryMask.png0.14 809: 0.14 15/26 Test #809: vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask ......................***Failed 0.44 sec test 810 Start 810: vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite 810: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastMIPToComposite" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPToComposite.png" 810: Test timeout computed to be: 1500 810: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) 810: 5734.58StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPToComposite.png 810: Failed Image Test : 5734.58 810: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPToComposite.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPToComposite.png0.157 810: 0.156 16/26 Test #810: vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite .....................***Failed 0.73 sec test 811 Start 811: vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP 811: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastNearestDataTypesMIP" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastNearestDataTypesMIP.png" 811: Test timeout computed to be: 1500 811: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) 811: 6187.06StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastNearestDataTypesMIP.png 811: Failed Image Test : 6187.06 811: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastNearestDataTypesMIP.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastNearestDataTypesMIP.png0.656 811: 0.656 17/26 Test #811: vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP ................***Failed 2.06 sec test 812 Start 812: vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel 812: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastPerspectiveParallel" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPerspectiveParallel.png" 812: Test timeout computed to be: 1500 812: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) 812: 5994.61StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPerspectiveParallel.png 812: Failed Image Test : 5994.61 812: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPerspectiveParallel.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPerspectiveParallel.png0.156 812: 0.156 18/26 Test #812: vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel ................***Failed 0.70 sec test 813 Start 813: vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate 813: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastVolumeUpdate" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeUpdate.png" 813: Test timeout computed to be: 1500 813: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) 813: 0Standard0.359 813: 0.359 19/26 Test #813: vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate ....................... Passed 58.96 sec test 818 Start 818: vtkRenderingVolumeCxx-TestGPURayCastClipping 818: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastClipping" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastClipping.png" 818: Test timeout computed to be: 1500 818: 2142.49StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastClipping.png 818: Failed Image Test : 2142.49 818: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastClipping.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastClipping.png0.156 818: 0.156 20/26 Test #818: vtkRenderingVolumeCxx-TestGPURayCastClipping ...........................***Failed 0.67 sec test 819 Start 819: vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity 819: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastGradientOpacity" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastGradientOpacity.png" 819: Test timeout computed to be: 1500 819: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) 819: 0Standard0.265 819: 0.266 21/26 Test #819: vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity .................... Passed 0.78 sec test 820 Start 820: vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData 820: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastVolumePolyData" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumePolyData.png" 820: Test timeout computed to be: 1500 820: 0Standard0.578 820: 0.578 22/26 Test #820: vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData ..................... Passed 1.47 sec test 821 Start 821: vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation 821: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastVolumeRotation" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeRotation.png" 821: Test timeout computed to be: 1500 821: 0Standard0.188 821: 0.187 23/26 Test #821: vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation ..................... Passed 0.56 sec test 822 Start 822: vtkRenderingVolumeCxx-TestGPURayCastVolumeScale 822: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastVolumeScale" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeScale.png" 822: Test timeout computed to be: 1500 822: 864.475StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeScale.png 822: Failed Image Test : 864.475 822: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeScale.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeScale.png0.422 822: 0.421 24/26 Test #822: vtkRenderingVolumeCxx-TestGPURayCastVolumeScale ........................***Failed 1.11 sec test 823 Start 823: vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit 823: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastVolumeLightKit" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeLightKit.png" 823: Test timeout computed to be: 1500 823: 5852.3StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeLightKit.png 823: Failed Image Test : 5852.3 823: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeLightKit.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeLightKit.png0.172 823: 0.172 25/26 Test #823: vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit .....................***Failed 0.67 sec test 824 Start 824: vtkRenderingVolumeCxx-TestGPURayCastPositionalLights 824: Test command: "C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" "TestGPURayCastPositionalLights" "-D" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPositionalLights.png" 824: Test timeout computed to be: 1500 824: 1917.12StandardC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPositionalLights.png 824: Failed Image Test : 1917.12 824: C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPositionalLights.diff.pngC:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPositionalLights.png0.203 824: 0.203 26/26 Test #824: vtkRenderingVolumeCxx-TestGPURayCastPositionalLights ...................***Failed 1.00 sec The following tests passed: vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation 15% tests passed, 22 tests failed out of 26 Total Test time (real) = 120.40 sec The following tests FAILED: 795 - vtkRenderingVolumeCxx-TestGPURayCastAdditive (Failed) 796 - vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask (Failed) 797 - vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend (Failed) 798 - vtkRenderingVolumeCxx-TestGPURayCastCompositeMask (Failed) 799 - vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP (Failed) 800 - vtkRenderingVolumeCxx-TestGPURayCastCropping (Failed) 801 - vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP (Failed) 802 - vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP (Failed) 803 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite (Failed) 804 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming (Failed) 805 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP (Failed) 806 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP (Failed) 807 - vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark (Failed) 808 - vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance (Failed) 809 - vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask (Failed) 810 - vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite (Failed) 811 - vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP (Failed) 812 - vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel (Failed) 818 - vtkRenderingVolumeCxx-TestGPURayCastClipping (Failed) 822 - vtkRenderingVolumeCxx-TestGPURayCastVolumeScale (Failed) 823 - vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit (Failed) 824 - vtkRenderingVolumeCxx-TestGPURayCastPositionalLights (Failed) On Thu, Jan 15, 2015 at 10:41 AM, Aashish Chaudhary wrote: > Thanks. Can you run just one test with -V options and send me that output. I > am wondering something is failing texture wise (most likely 3D texture) > which is causing the issue. > > - Aashish > > On Thu, Jan 15, 2015 at 10:20 AM, David Cole wrote: >> >> The machine does not have a publicly available way for you to >> connect... But I can try anything out for you on it, just let me know >> what you want me to try. >> >> The graphics is built-in Intel: Intel HD Graphics 2500, driver version >> 10.18.10.3621, OpenGL 4.0, OpenCL 1.2. >> >> What else do you need? >> >> thx, >> D >> >> >> >> On Thu, Jan 15, 2015 at 9:57 AM, Aashish Chaudhary >> wrote: >> > Thanks for pointing it out. Is this machine accesible to us? I am not >> > seeing >> > these failures on our dashboards. The earliest I can look into it is >> > this >> > evening. >> > >> > What intel graphics card this machine has? >> > >> > - Aashish >> > >> > On Thu, Jan 15, 2015 at 6:21 AM, David Cole wrote: >> >> >> >> This build: >> >> https://open.cdash.org/buildSummary.php?buildid=3652134 >> >> >> >> with these updates: >> >> https://open.cdash.org/viewUpdate.php?buildid=3652134 >> >> >> >> introduced 22 new TestGPURayCast test failures: >> >> https://open.cdash.org/viewTest.php?onlydelta&buildid=3652134 >> >> >> >> This is an OpenGL2 build, running on low end built-in Intel graphics >> >> (with Windows 8.1)... >> >> >> >> Can you make the tests pass again on this machine like they were in >> >> the previous build...? >> >> >> >> >> >> Thanks, >> >> David C. >> > >> > >> > >> > >> > -- >> > | Aashish Chaudhary >> > | Technical Leader >> > | Kitware Inc. >> > | http://www.kitware.com/company/team/chaudhary.html > > > > > -- > | Aashish Chaudhary > | Technical Leader > | Kitware Inc. > | http://www.kitware.com/company/team/chaudhary.html From aashish.chaudhary at kitware.com Fri Jan 16 11:41:21 2015 From: aashish.chaudhary at kitware.com (Aashish Chaudhary) Date: Fri, 16 Jan 2015 11:41:21 -0500 Subject: [vtk-developers] 22 new failing GPU tests on OpenGL2 dashboard In-Reply-To: References: Message-ID: Thanks for all the information. I am working on one fix anyways. What I will do is that I will push a branch that will dump few more things on the console that we can capture on your machine in case I cannot find a way to replicate on our systems. Allow me a day to do that. Thanks, On Fri, Jan 16, 2015 at 11:30 AM, David Cole wrote: > I ran: > > C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug> ctest -R "GPURayCast" > -VV > GPURayCastTests.txt > > Errors while running CTest > > Whatever is failing is not very informative on the console output... I > don't see any errors reported other than the test failures due to > image differences. The ones that fail do not render any volume at all, > just the background color of the render window. > > Let me know if you'd rather have it as a text file attachment, or if > there is anything else I can try on this machine for you. > > Thanks, > David C. > > > And here is the verbose output: > > UpdateCTestConfiguration from :C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/DartConfiguration.tcl > Parse Config file:C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/DartConfiguration.tcl > Add coverage exclude regular expressions. > Add coverage exclude: vtk.*TCLInit.cxx > Add coverage exclude: vtk[^\.]+(Java|Python|Tcl).cxx > Add coverage exclude: .*vtkOpenGLState.* > Add coverage exclude: .*Testing.Cxx.*cxx > Add coverage exclude: .*Testing.Cxx.*h > Add coverage exclude: .*moc_.*cxx > Add coverage exclude: .*/Rendering/OpenGL/vtkgl.* > Add coverage exclude: .*/Utilities/.* > Add coverage exclude: .*/ThirdParty/.* > Add coverage exclude: .*vtkOpenGLPolyDataMapper.* > SetCTestConfiguration:CMakeCommand:C:/Program Files > (x86)/CMake/bin/cmake.exe > UpdateCTestConfiguration from :C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/DartConfiguration.tcl > Parse Config file:C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/DartConfiguration.tcl > Test project C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug > Constructing a list of tests > Done constructing a list of tests > Checking test dependency graph... > Checking test dependency graph end > test 795 > Start 795: vtkRenderingVolumeCxx-TestGPURayCastAdditive > > 795: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastAdditive" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastAdditive.png" > 795: Test timeout computed to be: 1500 > 795: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > 795: type="numeric/double">3462.57 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastAdditive.png > 795: Failed Image Test : 3462.57 > 795: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastAdditive.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastAdditive.png name="WallTime" type="numeric/double">0.25 > 795: type="numeric/double">0.25 > 1/26 Test #795: vtkRenderingVolumeCxx-TestGPURayCastAdditive > ...........................***Failed 1.02 sec > test 796 > Start 796: vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask > > 796: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastCompositeBinaryMask" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeBinaryMask.png" > 796: Test timeout computed to be: 1500 > 796: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > 796: type="numeric/double">3046.61 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeBinaryMask.png > 796: Failed Image Test : 3046.61 > 796: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeBinaryMask.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeBinaryMask.png name="WallTime" type="numeric/double">0.156 > 796: type="numeric/double">0.156 > 2/26 Test #796: > vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask > ................***Failed 2.42 sec > test 797 > Start 797: vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend > > 797: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastCompositeMaskBlend" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMaskBlend.png" > 797: Test timeout computed to be: 1500 > 797: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > 797: type="numeric/double">3395.8 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMaskBlend.png > 797: Failed Image Test : 3395.8 > 797: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMaskBlend.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMaskBlend.png name="WallTime" type="numeric/double">0.14 > 797: type="numeric/double">0.141 > 3/26 Test #797: > vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend > .................***Failed 0.58 sec > test 798 > Start 798: vtkRenderingVolumeCxx-TestGPURayCastCompositeMask > > 798: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastCompositeMask" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMask.png" > 798: Test timeout computed to be: 1500 > 798: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > 798: type="numeric/double">4265.66 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMask.png > 798: Failed Image Test : 4265.66 > 798: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMask.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMask.png name="WallTime" type="numeric/double">0.297 > 798: type="numeric/double">0.297 > 4/26 Test #798: vtkRenderingVolumeCxx-TestGPURayCastCompositeMask > ......................***Failed 0.81 sec > test 799 > Start 799: vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP > > 799: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastCompositeToMIP" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeToMIP.png" > 799: Test timeout computed to be: 1500 > 799: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > 799: type="numeric/double">6482.66 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeToMIP.png > 799: Failed Image Test : 6482.66 > 799: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeToMIP.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeToMIP.png name="WallTime" type="numeric/double">0.172 > 799: type="numeric/double">0.171 > 5/26 Test #799: vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP > .....................***Failed 0.73 sec > test 800 > Start 800: vtkRenderingVolumeCxx-TestGPURayCastCropping > > 800: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastCropping" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCropping.png" > 800: Test timeout computed to be: 1500 > 800: type="numeric/double">9580.46 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCropping.png > 800: Failed Image Test : 9580.46 > 800: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCropping.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCropping.png name="WallTime" type="numeric/double">0.766 > 800: type="numeric/double">0.765 > 6/26 Test #800: vtkRenderingVolumeCxx-TestGPURayCastCropping > ...........................***Failed 1.98 sec > test 801 > Start 801: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP > > 801: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastDataTypesMinIP" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMinIP.png" > 801: Test timeout computed to be: 1500 > 801: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > 801: range=16,255 > 801: type="numeric/double">7915.92 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMinIP.png > 801: Failed Image Test : 7915.92 > 801: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMinIP.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMinIP.png name="WallTime" type="numeric/double">0.687 > 801: type="numeric/double">0.687 > 7/26 Test #801: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP > .....................***Failed 2.13 sec > test 802 > Start 802: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP > > 802: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastDataTypesMIP" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMIP.png" > 802: Test timeout computed to be: 1500 > 802: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > 802: type="numeric/double">4006.97 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMIP.png > 802: Failed Image Test : 4006.97 > 802: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMIP.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMIP.png name="WallTime" type="numeric/double">0.656 > 802: type="numeric/double">0.656 > 8/26 Test #802: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP > .......................***Failed 2.02 sec > test 803 > Start 803: > vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite > > 803: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastFourComponentsComposite" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsComposite.png" > 803: Test timeout computed to be: 1500 > 803: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > 803: type="numeric/double">1595.46 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsComposite.png > 803: Failed Image Test : 1595.46 > 803: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsComposite.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsComposite.png name="WallTime" type="numeric/double">0.172 > 803: type="numeric/double">0.172 > 9/26 Test #803: > vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite > ............***Failed 0.72 sec > test 804 > Start 804: > vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming > > 804: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastFourComponentsCompositeStreaming" "-D" > "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" > "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsCompositeStreaming.png" > 804: Test timeout computed to be: 1500 > 804: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > 804: Memory usage for the ImageData=16Mb > 804: Dims of the ImageData=575x101x75=4Mb > 804: type="numeric/double">1591.24 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsCompositeStreaming.png > 804: Failed Image Test : 1591.24 > 804: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsCompositeStreaming.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsCompositeStreaming.png name="WallTime" type="numeric/double">0.172 > 804: type="numeric/double">0.172 > 10/26 Test #804: > vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming > ...***Failed 0.98 sec > test 805 > Start 805: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP > > 805: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastFourComponentsMinIP" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMinIP.png" > 805: Test timeout computed to be: 1500 > 805: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > 805: type="numeric/double">716.884 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMinIP.png > 805: Failed Image Test : 716.884 > 805: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMinIP.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMinIP.png name="WallTime" type="numeric/double">0.172 > 805: type="numeric/double">0.172 > 11/26 Test #805: > vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP > ................***Failed 0.61 sec > test 806 > Start 806: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP > > 806: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastFourComponentsMIP" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMIP.png" > 806: Test timeout computed to be: 1500 > 806: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > 806: type="numeric/double">4195.87 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMIP.png > 806: Failed Image Test : 4195.87 > 806: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMIP.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMIP.png name="WallTime" type="numeric/double">0.125 > 806: type="numeric/double">0.125 > 12/26 Test #806: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP > ..................***Failed 0.55 sec > test 807 > Start 807: vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark > > 807: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastMapperBenchmark" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperBenchmark.png" > 807: Test timeout computed to be: 1500 > 807: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > 807: First Render Time: 0.515 > 807: Interactive Render Time: 0.13821 > 807: type="numeric/double">25683.8 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperBenchmark.png > 807: Failed Image Test : 25683.8 > 807: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperBenchmark.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperBenchmark.png name="WallTime" type="numeric/double">0.187 > 807: type="numeric/double">0.188 > 13/26 Test #807: vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark > ....................***Failed 33.31 sec > test 808 > Start 808: vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance > > 808: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastMapperSampleDistance" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperSampleDistance.png" > 808: Test timeout computed to be: 1500 > 808: type="numeric/double">25710.4 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperSampleDistance.png > 808: Failed Image Test : 25710.4 > 808: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperSampleDistance.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperSampleDistance.png name="WallTime" type="numeric/double">0.157 > 808: type="numeric/double">0.156 > 14/26 Test #808: > vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance > ...............***Failed 2.70 sec > test 809 > Start 809: vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask > > 809: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastMIPBinaryMask" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPBinaryMask.png" > 809: Test timeout computed to be: 1500 > 809: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > 809: type="numeric/double">4846.07 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPBinaryMask.png > 809: Failed Image Test : 4846.07 > 809: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPBinaryMask.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPBinaryMask.png name="WallTime" type="numeric/double">0.14 > 809: type="numeric/double">0.14 > 15/26 Test #809: vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask > ......................***Failed 0.44 sec > test 810 > Start 810: vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite > > 810: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastMIPToComposite" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPToComposite.png" > 810: Test timeout computed to be: 1500 > 810: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > 810: type="numeric/double">5734.58 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPToComposite.png > 810: Failed Image Test : 5734.58 > 810: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPToComposite.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPToComposite.png name="WallTime" type="numeric/double">0.157 > 810: type="numeric/double">0.156 > 16/26 Test #810: vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite > .....................***Failed 0.73 sec > test 811 > Start 811: vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP > > 811: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastNearestDataTypesMIP" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastNearestDataTypesMIP.png" > 811: Test timeout computed to be: 1500 > 811: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > 811: type="numeric/double">6187.06 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastNearestDataTypesMIP.png > 811: Failed Image Test : 6187.06 > 811: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastNearestDataTypesMIP.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastNearestDataTypesMIP.png name="WallTime" type="numeric/double">0.656 > 811: type="numeric/double">0.656 > 17/26 Test #811: > vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP > ................***Failed 2.06 sec > test 812 > Start 812: vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel > > 812: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastPerspectiveParallel" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPerspectiveParallel.png" > 812: Test timeout computed to be: 1500 > 812: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > 812: type="numeric/double">5994.61 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPerspectiveParallel.png > 812: Failed Image Test : 5994.61 > 812: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPerspectiveParallel.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPerspectiveParallel.png name="WallTime" type="numeric/double">0.156 > 812: type="numeric/double">0.156 > 18/26 Test #812: > vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel > ................***Failed 0.70 sec > test 813 > Start 813: vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate > > 813: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastVolumeUpdate" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeUpdate.png" > 813: Test timeout computed to be: 1500 > 813: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > 813: type="numeric/double">0 name="BaselineImage" > type="text/string">Standard name="WallTime" type="numeric/double">0.359 > 813: type="numeric/double">0.359 > 19/26 Test #813: vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate > ....................... Passed 58.96 sec > test 818 > Start 818: vtkRenderingVolumeCxx-TestGPURayCastClipping > > 818: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastClipping" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastClipping.png" > 818: Test timeout computed to be: 1500 > 818: type="numeric/double">2142.49 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastClipping.png > 818: Failed Image Test : 2142.49 > 818: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastClipping.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastClipping.png name="WallTime" type="numeric/double">0.156 > 818: type="numeric/double">0.156 > 20/26 Test #818: vtkRenderingVolumeCxx-TestGPURayCastClipping > ...........................***Failed 0.67 sec > test 819 > Start 819: vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity > > 819: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastGradientOpacity" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastGradientOpacity.png" > 819: Test timeout computed to be: 1500 > 819: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > 819: type="numeric/double">0 name="BaselineImage" > type="text/string">Standard name="WallTime" type="numeric/double">0.265 > 819: type="numeric/double">0.266 > 21/26 Test #819: vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity > .................... Passed 0.78 sec > test 820 > Start 820: vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData > > 820: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastVolumePolyData" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumePolyData.png" > 820: Test timeout computed to be: 1500 > 820: type="numeric/double">0 name="BaselineImage" > type="text/string">Standard name="WallTime" type="numeric/double">0.578 > 820: type="numeric/double">0.578 > 22/26 Test #820: vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData > ..................... Passed 1.47 sec > test 821 > Start 821: vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation > > 821: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastVolumeRotation" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeRotation.png" > 821: Test timeout computed to be: 1500 > 821: type="numeric/double">0 name="BaselineImage" > type="text/string">Standard name="WallTime" type="numeric/double">0.188 > 821: type="numeric/double">0.187 > 23/26 Test #821: vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation > ..................... Passed 0.56 sec > test 822 > Start 822: vtkRenderingVolumeCxx-TestGPURayCastVolumeScale > > 822: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastVolumeScale" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeScale.png" > 822: Test timeout computed to be: 1500 > 822: type="numeric/double">864.475 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeScale.png > 822: Failed Image Test : 864.475 > 822: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeScale.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeScale.png name="WallTime" type="numeric/double">0.422 > 822: type="numeric/double">0.421 > 24/26 Test #822: vtkRenderingVolumeCxx-TestGPURayCastVolumeScale > ........................***Failed 1.11 sec > test 823 > Start 823: vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit > > 823: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastVolumeLightKit" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeLightKit.png" > 823: Test timeout computed to be: 1500 > 823: type="numeric/double">5852.3 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeLightKit.png > 823: Failed Image Test : 5852.3 > 823: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeLightKit.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeLightKit.png name="WallTime" type="numeric/double">0.172 > 823: type="numeric/double">0.172 > 25/26 Test #823: vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit > .....................***Failed 0.67 sec > test 824 > Start 824: vtkRenderingVolumeCxx-TestGPURayCastPositionalLights > > 824: Test command: "C:\n\d\Nightly\VTK > Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > "TestGPURayCastPositionalLights" "-D" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPositionalLights.png" > 824: Test timeout computed to be: 1500 > 824: type="numeric/double">1917.12 name="BaselineImage" > type="text/string">Standard name="TestImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPositionalLights.png > 824: Failed Image Test : 1917.12 > 824: type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPositionalLights.diff.png name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPositionalLights.png name="WallTime" type="numeric/double">0.203 > 824: type="numeric/double">0.203 > 26/26 Test #824: vtkRenderingVolumeCxx-TestGPURayCastPositionalLights > ...................***Failed 1.00 sec > > The following tests passed: > vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate > vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity > vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData > vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation > > 15% tests passed, 22 tests failed out of 26 > > Total Test time (real) = 120.40 sec > > The following tests FAILED: > 795 - vtkRenderingVolumeCxx-TestGPURayCastAdditive (Failed) > 796 - vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask (Failed) > 797 - vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend (Failed) > 798 - vtkRenderingVolumeCxx-TestGPURayCastCompositeMask (Failed) > 799 - vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP (Failed) > 800 - vtkRenderingVolumeCxx-TestGPURayCastCropping (Failed) > 801 - vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP (Failed) > 802 - vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP (Failed) > 803 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite > (Failed) > 804 - > vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming > (Failed) > 805 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP (Failed) > 806 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP (Failed) > 807 - vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark (Failed) > 808 - vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance (Failed) > 809 - vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask (Failed) > 810 - vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite (Failed) > 811 - vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP (Failed) > 812 - vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel (Failed) > 818 - vtkRenderingVolumeCxx-TestGPURayCastClipping (Failed) > 822 - vtkRenderingVolumeCxx-TestGPURayCastVolumeScale (Failed) > 823 - vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit (Failed) > 824 - vtkRenderingVolumeCxx-TestGPURayCastPositionalLights (Failed) > > > > On Thu, Jan 15, 2015 at 10:41 AM, Aashish Chaudhary > wrote: > > Thanks. Can you run just one test with -V options and send me that > output. I > > am wondering something is failing texture wise (most likely 3D texture) > > which is causing the issue. > > > > - Aashish > > > > On Thu, Jan 15, 2015 at 10:20 AM, David Cole wrote: > >> > >> The machine does not have a publicly available way for you to > >> connect... But I can try anything out for you on it, just let me know > >> what you want me to try. > >> > >> The graphics is built-in Intel: Intel HD Graphics 2500, driver version > >> 10.18.10.3621, OpenGL 4.0, OpenCL 1.2. > >> > >> What else do you need? > >> > >> thx, > >> D > >> > >> > >> > >> On Thu, Jan 15, 2015 at 9:57 AM, Aashish Chaudhary > >> wrote: > >> > Thanks for pointing it out. Is this machine accesible to us? I am not > >> > seeing > >> > these failures on our dashboards. The earliest I can look into it is > >> > this > >> > evening. > >> > > >> > What intel graphics card this machine has? > >> > > >> > - Aashish > >> > > >> > On Thu, Jan 15, 2015 at 6:21 AM, David Cole wrote: > >> >> > >> >> This build: > >> >> https://open.cdash.org/buildSummary.php?buildid=3652134 > >> >> > >> >> with these updates: > >> >> https://open.cdash.org/viewUpdate.php?buildid=3652134 > >> >> > >> >> introduced 22 new TestGPURayCast test failures: > >> >> https://open.cdash.org/viewTest.php?onlydelta&buildid=3652134 > >> >> > >> >> This is an OpenGL2 build, running on low end built-in Intel graphics > >> >> (with Windows 8.1)... > >> >> > >> >> Can you make the tests pass again on this machine like they were in > >> >> the previous build...? > >> >> > >> >> > >> >> Thanks, > >> >> David C. > >> > > >> > > >> > > >> > > >> > -- > >> > | Aashish Chaudhary > >> > | Technical Leader > >> > | Kitware Inc. > >> > | http://www.kitware.com/company/team/chaudhary.html > > > > > > > > > > -- > > | Aashish Chaudhary > > | Technical Leader > > | Kitware Inc. > > | http://www.kitware.com/company/team/chaudhary.html > -- *| Aashish Chaudhary | Technical Leader | Kitware Inc. * *| http://www.kitware.com/company/team/chaudhary.html * -------------- next part -------------- An HTML attachment was scrubbed... URL: From DLRdave at aol.com Fri Jan 16 11:48:44 2015 From: DLRdave at aol.com (David Cole) Date: Fri, 16 Jan 2015 11:48:44 -0500 Subject: [vtk-developers] 22 new failing GPU tests on OpenGL2 dashboard In-Reply-To: References: Message-ID: Sure -- no problem, take your time. This should be reproducible on any Windows machine using built-in Intel GPU without a "real" graphics card... Happens on my laptop, too. (i.e. -- any "cheap" sub $1000 Windows box, like the kind you see at Target, Costco and Best Buy...) On Fri, Jan 16, 2015 at 11:41 AM, Aashish Chaudhary wrote: > Thanks for all the information. I am working on one fix anyways. What I will > do is that I will push a branch that will dump few more things on the > console that we can capture on your machine > in case I cannot find a way to replicate on our systems. Allow me a day to > do that. > > Thanks, > > > On Fri, Jan 16, 2015 at 11:30 AM, David Cole wrote: >> >> I ran: >> >> C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug> ctest -R "GPURayCast" >> -VV > GPURayCastTests.txt >> >> Errors while running CTest >> >> Whatever is failing is not very informative on the console output... I >> don't see any errors reported other than the test failures due to >> image differences. The ones that fail do not render any volume at all, >> just the background color of the render window. >> >> Let me know if you'd rather have it as a text file attachment, or if >> there is anything else I can try on this machine for you. >> >> Thanks, >> David C. >> >> >> And here is the verbose output: >> >> UpdateCTestConfiguration from :C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/DartConfiguration.tcl >> Parse Config file:C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/DartConfiguration.tcl >> Add coverage exclude regular expressions. >> Add coverage exclude: vtk.*TCLInit.cxx >> Add coverage exclude: vtk[^\.]+(Java|Python|Tcl).cxx >> Add coverage exclude: .*vtkOpenGLState.* >> Add coverage exclude: .*Testing.Cxx.*cxx >> Add coverage exclude: .*Testing.Cxx.*h >> Add coverage exclude: .*moc_.*cxx >> Add coverage exclude: .*/Rendering/OpenGL/vtkgl.* >> Add coverage exclude: .*/Utilities/.* >> Add coverage exclude: .*/ThirdParty/.* >> Add coverage exclude: .*vtkOpenGLPolyDataMapper.* >> SetCTestConfiguration:CMakeCommand:C:/Program Files >> (x86)/CMake/bin/cmake.exe >> UpdateCTestConfiguration from :C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/DartConfiguration.tcl >> Parse Config file:C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/DartConfiguration.tcl >> Test project C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug >> Constructing a list of tests >> Done constructing a list of tests >> Checking test dependency graph... >> Checking test dependency graph end >> test 795 >> Start 795: vtkRenderingVolumeCxx-TestGPURayCastAdditive >> >> 795: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastAdditive" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastAdditive.png" >> 795: Test timeout computed to be: 1500 >> 795: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> 795: > type="numeric/double">3462.57> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastAdditive.png >> 795: Failed Image Test : 3462.57 >> 795: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastAdditive.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastAdditive.png> name="WallTime" type="numeric/double">0.25 >> 795: > type="numeric/double">0.25 >> 1/26 Test #795: vtkRenderingVolumeCxx-TestGPURayCastAdditive >> ...........................***Failed 1.02 sec >> test 796 >> Start 796: vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask >> >> 796: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastCompositeBinaryMask" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeBinaryMask.png" >> 796: Test timeout computed to be: 1500 >> 796: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> 796: > type="numeric/double">3046.61> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeBinaryMask.png >> 796: Failed Image Test : 3046.61 >> 796: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeBinaryMask.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeBinaryMask.png> name="WallTime" type="numeric/double">0.156 >> 796: > type="numeric/double">0.156 >> 2/26 Test #796: >> vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask >> ................***Failed 2.42 sec >> test 797 >> Start 797: vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend >> >> 797: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastCompositeMaskBlend" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMaskBlend.png" >> 797: Test timeout computed to be: 1500 >> 797: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> 797: > type="numeric/double">3395.8> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMaskBlend.png >> 797: Failed Image Test : 3395.8 >> 797: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMaskBlend.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMaskBlend.png> name="WallTime" type="numeric/double">0.14 >> 797: > type="numeric/double">0.141 >> 3/26 Test #797: >> vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend >> .................***Failed 0.58 sec >> test 798 >> Start 798: vtkRenderingVolumeCxx-TestGPURayCastCompositeMask >> >> 798: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastCompositeMask" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMask.png" >> 798: Test timeout computed to be: 1500 >> 798: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> 798: > type="numeric/double">4265.66> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMask.png >> 798: Failed Image Test : 4265.66 >> 798: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMask.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMask.png> name="WallTime" type="numeric/double">0.297 >> 798: > type="numeric/double">0.297 >> 4/26 Test #798: vtkRenderingVolumeCxx-TestGPURayCastCompositeMask >> ......................***Failed 0.81 sec >> test 799 >> Start 799: vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP >> >> 799: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastCompositeToMIP" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeToMIP.png" >> 799: Test timeout computed to be: 1500 >> 799: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> 799: > type="numeric/double">6482.66> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeToMIP.png >> 799: Failed Image Test : 6482.66 >> 799: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeToMIP.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeToMIP.png> name="WallTime" type="numeric/double">0.172 >> 799: > type="numeric/double">0.171 >> 5/26 Test #799: vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP >> .....................***Failed 0.73 sec >> test 800 >> Start 800: vtkRenderingVolumeCxx-TestGPURayCastCropping >> >> 800: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastCropping" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCropping.png" >> 800: Test timeout computed to be: 1500 >> 800: > type="numeric/double">9580.46> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCropping.png >> 800: Failed Image Test : 9580.46 >> 800: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCropping.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCropping.png> name="WallTime" type="numeric/double">0.766 >> 800: > type="numeric/double">0.765 >> 6/26 Test #800: vtkRenderingVolumeCxx-TestGPURayCastCropping >> ...........................***Failed 1.98 sec >> test 801 >> Start 801: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP >> >> 801: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastDataTypesMinIP" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMinIP.png" >> 801: Test timeout computed to be: 1500 >> 801: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> 801: range=16,255 >> 801: > type="numeric/double">7915.92> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMinIP.png >> 801: Failed Image Test : 7915.92 >> 801: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMinIP.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMinIP.png> name="WallTime" type="numeric/double">0.687 >> 801: > type="numeric/double">0.687 >> 7/26 Test #801: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP >> .....................***Failed 2.13 sec >> test 802 >> Start 802: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP >> >> 802: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastDataTypesMIP" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMIP.png" >> 802: Test timeout computed to be: 1500 >> 802: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> 802: > type="numeric/double">4006.97> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMIP.png >> 802: Failed Image Test : 4006.97 >> 802: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMIP.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMIP.png> name="WallTime" type="numeric/double">0.656 >> 802: > type="numeric/double">0.656 >> 8/26 Test #802: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP >> .......................***Failed 2.02 sec >> test 803 >> Start 803: >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite >> >> 803: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastFourComponentsComposite" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsComposite.png" >> 803: Test timeout computed to be: 1500 >> 803: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> 803: > type="numeric/double">1595.46> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsComposite.png >> 803: Failed Image Test : 1595.46 >> 803: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsComposite.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsComposite.png> name="WallTime" type="numeric/double">0.172 >> 803: > type="numeric/double">0.172 >> 9/26 Test #803: >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite >> ............***Failed 0.72 sec >> test 804 >> Start 804: >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming >> >> 804: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastFourComponentsCompositeStreaming" "-D" >> "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" >> "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" >> "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsCompositeStreaming.png" >> 804: Test timeout computed to be: 1500 >> 804: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> 804: Memory usage for the ImageData=16Mb >> 804: Dims of the ImageData=575x101x75=4Mb >> 804: > type="numeric/double">1591.24> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsCompositeStreaming.png >> 804: Failed Image Test : 1591.24 >> 804: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsCompositeStreaming.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsCompositeStreaming.png> name="WallTime" type="numeric/double">0.172 >> 804: > type="numeric/double">0.172 >> 10/26 Test #804: >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming >> ...***Failed 0.98 sec >> test 805 >> Start 805: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP >> >> 805: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastFourComponentsMinIP" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMinIP.png" >> 805: Test timeout computed to be: 1500 >> 805: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> 805: > type="numeric/double">716.884> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMinIP.png >> 805: Failed Image Test : 716.884 >> 805: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMinIP.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMinIP.png> name="WallTime" type="numeric/double">0.172 >> 805: > type="numeric/double">0.172 >> 11/26 Test #805: >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP >> ................***Failed 0.61 sec >> test 806 >> Start 806: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP >> >> 806: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastFourComponentsMIP" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMIP.png" >> 806: Test timeout computed to be: 1500 >> 806: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> 806: > type="numeric/double">4195.87> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMIP.png >> 806: Failed Image Test : 4195.87 >> 806: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMIP.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMIP.png> name="WallTime" type="numeric/double">0.125 >> 806: > type="numeric/double">0.125 >> 12/26 Test #806: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP >> ..................***Failed 0.55 sec >> test 807 >> Start 807: vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark >> >> 807: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastMapperBenchmark" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperBenchmark.png" >> 807: Test timeout computed to be: 1500 >> 807: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> 807: First Render Time: 0.515 >> 807: Interactive Render Time: 0.13821 >> 807: > type="numeric/double">25683.8> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperBenchmark.png >> 807: Failed Image Test : 25683.8 >> 807: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperBenchmark.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperBenchmark.png> name="WallTime" type="numeric/double">0.187 >> 807: > type="numeric/double">0.188 >> 13/26 Test #807: vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark >> ....................***Failed 33.31 sec >> test 808 >> Start 808: vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance >> >> 808: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastMapperSampleDistance" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperSampleDistance.png" >> 808: Test timeout computed to be: 1500 >> 808: > type="numeric/double">25710.4> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperSampleDistance.png >> 808: Failed Image Test : 25710.4 >> 808: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperSampleDistance.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperSampleDistance.png> name="WallTime" type="numeric/double">0.157 >> 808: > type="numeric/double">0.156 >> 14/26 Test #808: >> vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance >> ...............***Failed 2.70 sec >> test 809 >> Start 809: vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask >> >> 809: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastMIPBinaryMask" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPBinaryMask.png" >> 809: Test timeout computed to be: 1500 >> 809: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> 809: > type="numeric/double">4846.07> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPBinaryMask.png >> 809: Failed Image Test : 4846.07 >> 809: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPBinaryMask.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPBinaryMask.png> name="WallTime" type="numeric/double">0.14 >> 809: > type="numeric/double">0.14 >> 15/26 Test #809: vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask >> ......................***Failed 0.44 sec >> test 810 >> Start 810: vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite >> >> 810: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastMIPToComposite" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPToComposite.png" >> 810: Test timeout computed to be: 1500 >> 810: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> 810: > type="numeric/double">5734.58> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPToComposite.png >> 810: Failed Image Test : 5734.58 >> 810: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPToComposite.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPToComposite.png> name="WallTime" type="numeric/double">0.157 >> 810: > type="numeric/double">0.156 >> 16/26 Test #810: vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite >> .....................***Failed 0.73 sec >> test 811 >> Start 811: vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP >> >> 811: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastNearestDataTypesMIP" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastNearestDataTypesMIP.png" >> 811: Test timeout computed to be: 1500 >> 811: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> 811: > type="numeric/double">6187.06> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastNearestDataTypesMIP.png >> 811: Failed Image Test : 6187.06 >> 811: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastNearestDataTypesMIP.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastNearestDataTypesMIP.png> name="WallTime" type="numeric/double">0.656 >> 811: > type="numeric/double">0.656 >> 17/26 Test #811: >> vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP >> ................***Failed 2.06 sec >> test 812 >> Start 812: vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel >> >> 812: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastPerspectiveParallel" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPerspectiveParallel.png" >> 812: Test timeout computed to be: 1500 >> 812: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> 812: > type="numeric/double">5994.61> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPerspectiveParallel.png >> 812: Failed Image Test : 5994.61 >> 812: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPerspectiveParallel.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPerspectiveParallel.png> name="WallTime" type="numeric/double">0.156 >> 812: > type="numeric/double">0.156 >> 18/26 Test #812: >> vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel >> ................***Failed 0.70 sec >> test 813 >> Start 813: vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate >> >> 813: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastVolumeUpdate" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeUpdate.png" >> 813: Test timeout computed to be: 1500 >> 813: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> 813: > type="numeric/double">0> name="BaselineImage" >> type="text/string">Standard> name="WallTime" type="numeric/double">0.359 >> 813: > type="numeric/double">0.359 >> 19/26 Test #813: vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate >> ....................... Passed 58.96 sec >> test 818 >> Start 818: vtkRenderingVolumeCxx-TestGPURayCastClipping >> >> 818: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastClipping" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastClipping.png" >> 818: Test timeout computed to be: 1500 >> 818: > type="numeric/double">2142.49> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastClipping.png >> 818: Failed Image Test : 2142.49 >> 818: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastClipping.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastClipping.png> name="WallTime" type="numeric/double">0.156 >> 818: > type="numeric/double">0.156 >> 20/26 Test #818: vtkRenderingVolumeCxx-TestGPURayCastClipping >> ...........................***Failed 0.67 sec >> test 819 >> Start 819: vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity >> >> 819: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastGradientOpacity" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastGradientOpacity.png" >> 819: Test timeout computed to be: 1500 >> 819: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> 819: > type="numeric/double">0> name="BaselineImage" >> type="text/string">Standard> name="WallTime" type="numeric/double">0.265 >> 819: > type="numeric/double">0.266 >> 21/26 Test #819: vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity >> .................... Passed 0.78 sec >> test 820 >> Start 820: vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData >> >> 820: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastVolumePolyData" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumePolyData.png" >> 820: Test timeout computed to be: 1500 >> 820: > type="numeric/double">0> name="BaselineImage" >> type="text/string">Standard> name="WallTime" type="numeric/double">0.578 >> 820: > type="numeric/double">0.578 >> 22/26 Test #820: vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData >> ..................... Passed 1.47 sec >> test 821 >> Start 821: vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation >> >> 821: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastVolumeRotation" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeRotation.png" >> 821: Test timeout computed to be: 1500 >> 821: > type="numeric/double">0> name="BaselineImage" >> type="text/string">Standard> name="WallTime" type="numeric/double">0.188 >> 821: > type="numeric/double">0.187 >> 23/26 Test #821: vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation >> ..................... Passed 0.56 sec >> test 822 >> Start 822: vtkRenderingVolumeCxx-TestGPURayCastVolumeScale >> >> 822: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastVolumeScale" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeScale.png" >> 822: Test timeout computed to be: 1500 >> 822: > type="numeric/double">864.475> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeScale.png >> 822: Failed Image Test : 864.475 >> 822: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeScale.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeScale.png> name="WallTime" type="numeric/double">0.422 >> 822: > type="numeric/double">0.421 >> 24/26 Test #822: vtkRenderingVolumeCxx-TestGPURayCastVolumeScale >> ........................***Failed 1.11 sec >> test 823 >> Start 823: vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit >> >> 823: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastVolumeLightKit" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeLightKit.png" >> 823: Test timeout computed to be: 1500 >> 823: > type="numeric/double">5852.3> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeLightKit.png >> 823: Failed Image Test : 5852.3 >> 823: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeLightKit.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeLightKit.png> name="WallTime" type="numeric/double">0.172 >> 823: > type="numeric/double">0.172 >> 25/26 Test #823: vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit >> .....................***Failed 0.67 sec >> test 824 >> Start 824: vtkRenderingVolumeCxx-TestGPURayCastPositionalLights >> >> 824: Test command: "C:\n\d\Nightly\VTK >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> "TestGPURayCastPositionalLights" "-D" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPositionalLights.png" >> 824: Test timeout computed to be: 1500 >> 824: > type="numeric/double">1917.12> name="BaselineImage" >> type="text/string">Standard> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPositionalLights.png >> 824: Failed Image Test : 1917.12 >> 824: > type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPositionalLights.diff.png> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPositionalLights.png> name="WallTime" type="numeric/double">0.203 >> 824: > type="numeric/double">0.203 >> 26/26 Test #824: vtkRenderingVolumeCxx-TestGPURayCastPositionalLights >> ...................***Failed 1.00 sec >> >> The following tests passed: >> vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate >> vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity >> vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData >> vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation >> >> 15% tests passed, 22 tests failed out of 26 >> >> Total Test time (real) = 120.40 sec >> >> The following tests FAILED: >> 795 - vtkRenderingVolumeCxx-TestGPURayCastAdditive (Failed) >> 796 - vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask (Failed) >> 797 - vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend (Failed) >> 798 - vtkRenderingVolumeCxx-TestGPURayCastCompositeMask (Failed) >> 799 - vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP (Failed) >> 800 - vtkRenderingVolumeCxx-TestGPURayCastCropping (Failed) >> 801 - vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP (Failed) >> 802 - vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP (Failed) >> 803 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite >> (Failed) >> 804 - >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming >> (Failed) >> 805 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP (Failed) >> 806 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP (Failed) >> 807 - vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark (Failed) >> 808 - vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance >> (Failed) >> 809 - vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask (Failed) >> 810 - vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite (Failed) >> 811 - vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP (Failed) >> 812 - vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel (Failed) >> 818 - vtkRenderingVolumeCxx-TestGPURayCastClipping (Failed) >> 822 - vtkRenderingVolumeCxx-TestGPURayCastVolumeScale (Failed) >> 823 - vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit (Failed) >> 824 - vtkRenderingVolumeCxx-TestGPURayCastPositionalLights (Failed) >> >> >> >> On Thu, Jan 15, 2015 at 10:41 AM, Aashish Chaudhary >> wrote: >> > Thanks. Can you run just one test with -V options and send me that >> > output. I >> > am wondering something is failing texture wise (most likely 3D texture) >> > which is causing the issue. >> > >> > - Aashish >> > >> > On Thu, Jan 15, 2015 at 10:20 AM, David Cole wrote: >> >> >> >> The machine does not have a publicly available way for you to >> >> connect... But I can try anything out for you on it, just let me know >> >> what you want me to try. >> >> >> >> The graphics is built-in Intel: Intel HD Graphics 2500, driver version >> >> 10.18.10.3621, OpenGL 4.0, OpenCL 1.2. >> >> >> >> What else do you need? >> >> >> >> thx, >> >> D >> >> >> >> >> >> >> >> On Thu, Jan 15, 2015 at 9:57 AM, Aashish Chaudhary >> >> wrote: >> >> > Thanks for pointing it out. Is this machine accesible to us? I am not >> >> > seeing >> >> > these failures on our dashboards. The earliest I can look into it is >> >> > this >> >> > evening. >> >> > >> >> > What intel graphics card this machine has? >> >> > >> >> > - Aashish >> >> > >> >> > On Thu, Jan 15, 2015 at 6:21 AM, David Cole wrote: >> >> >> >> >> >> This build: >> >> >> https://open.cdash.org/buildSummary.php?buildid=3652134 >> >> >> >> >> >> with these updates: >> >> >> https://open.cdash.org/viewUpdate.php?buildid=3652134 >> >> >> >> >> >> introduced 22 new TestGPURayCast test failures: >> >> >> https://open.cdash.org/viewTest.php?onlydelta&buildid=3652134 >> >> >> >> >> >> This is an OpenGL2 build, running on low end built-in Intel graphics >> >> >> (with Windows 8.1)... >> >> >> >> >> >> Can you make the tests pass again on this machine like they were in >> >> >> the previous build...? >> >> >> >> >> >> >> >> >> Thanks, >> >> >> David C. >> >> > >> >> > >> >> > >> >> > >> >> > -- >> >> > | Aashish Chaudhary >> >> > | Technical Leader >> >> > | Kitware Inc. >> >> > | http://www.kitware.com/company/team/chaudhary.html >> > >> > >> > >> > >> > -- >> > | Aashish Chaudhary >> > | Technical Leader >> > | Kitware Inc. >> > | http://www.kitware.com/company/team/chaudhary.html > > > > > -- > | Aashish Chaudhary > | Technical Leader > | Kitware Inc. > | http://www.kitware.com/company/team/chaudhary.html From aashish.chaudhary at kitware.com Fri Jan 16 11:53:13 2015 From: aashish.chaudhary at kitware.com (Aashish Chaudhary) Date: Fri, 16 Jan 2015 11:53:13 -0500 Subject: [vtk-developers] 22 new failing GPU tests on OpenGL2 dashboard In-Reply-To: References: Message-ID: I think I got a machine like that -:) (A gift from Kitware). I will resurrect it. - Aashish On Fri, Jan 16, 2015 at 11:48 AM, David Cole wrote: > Sure -- no problem, take your time. > > This should be reproducible on any Windows machine using built-in > Intel GPU without a "real" graphics card... Happens on my laptop, too. > (i.e. -- any "cheap" sub $1000 Windows box, like the kind you see at > Target, Costco and Best Buy...) > > > On Fri, Jan 16, 2015 at 11:41 AM, Aashish Chaudhary > wrote: > > Thanks for all the information. I am working on one fix anyways. What I > will > > do is that I will push a branch that will dump few more things on the > > console that we can capture on your machine > > in case I cannot find a way to replicate on our systems. Allow me a day > to > > do that. > > > > Thanks, > > > > > > On Fri, Jan 16, 2015 at 11:30 AM, David Cole wrote: > >> > >> I ran: > >> > >> C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug> ctest -R "GPURayCast" > >> -VV > GPURayCastTests.txt > >> > >> Errors while running CTest > >> > >> Whatever is failing is not very informative on the console output... I > >> don't see any errors reported other than the test failures due to > >> image differences. The ones that fail do not render any volume at all, > >> just the background color of the render window. > >> > >> Let me know if you'd rather have it as a text file attachment, or if > >> there is anything else I can try on this machine for you. > >> > >> Thanks, > >> David C. > >> > >> > >> And here is the verbose output: > >> > >> UpdateCTestConfiguration from :C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/DartConfiguration.tcl > >> Parse Config file:C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/DartConfiguration.tcl > >> Add coverage exclude regular expressions. > >> Add coverage exclude: vtk.*TCLInit.cxx > >> Add coverage exclude: vtk[^\.]+(Java|Python|Tcl).cxx > >> Add coverage exclude: .*vtkOpenGLState.* > >> Add coverage exclude: .*Testing.Cxx.*cxx > >> Add coverage exclude: .*Testing.Cxx.*h > >> Add coverage exclude: .*moc_.*cxx > >> Add coverage exclude: .*/Rendering/OpenGL/vtkgl.* > >> Add coverage exclude: .*/Utilities/.* > >> Add coverage exclude: .*/ThirdParty/.* > >> Add coverage exclude: .*vtkOpenGLPolyDataMapper.* > >> SetCTestConfiguration:CMakeCommand:C:/Program Files > >> (x86)/CMake/bin/cmake.exe > >> UpdateCTestConfiguration from :C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/DartConfiguration.tcl > >> Parse Config file:C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/DartConfiguration.tcl > >> Test project C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug > >> Constructing a list of tests > >> Done constructing a list of tests > >> Checking test dependency graph... > >> Checking test dependency graph end > >> test 795 > >> Start 795: vtkRenderingVolumeCxx-TestGPURayCastAdditive > >> > >> 795: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastAdditive" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastAdditive.png" > >> 795: Test timeout computed to be: 1500 > >> 795: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> 795: >> type="numeric/double">3462.57 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastAdditive.png > >> 795: Failed Image Test : 3462.57 > >> 795: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastAdditive.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastAdditive.png >> name="WallTime" type="numeric/double">0.25 > >> 795: >> type="numeric/double">0.25 > >> 1/26 Test #795: vtkRenderingVolumeCxx-TestGPURayCastAdditive > >> ...........................***Failed 1.02 sec > >> test 796 > >> Start 796: vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask > >> > >> 796: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastCompositeBinaryMask" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeBinaryMask.png" > >> 796: Test timeout computed to be: 1500 > >> 796: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> 796: >> type="numeric/double">3046.61 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeBinaryMask.png > >> 796: Failed Image Test : 3046.61 > >> 796: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeBinaryMask.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeBinaryMask.png >> name="WallTime" type="numeric/double">0.156 > >> 796: >> type="numeric/double">0.156 > >> 2/26 Test #796: > >> vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask > >> ................***Failed 2.42 sec > >> test 797 > >> Start 797: vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend > >> > >> 797: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastCompositeMaskBlend" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMaskBlend.png" > >> 797: Test timeout computed to be: 1500 > >> 797: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> 797: >> type="numeric/double">3395.8 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMaskBlend.png > >> 797: Failed Image Test : 3395.8 > >> 797: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMaskBlend.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMaskBlend.png >> name="WallTime" type="numeric/double">0.14 > >> 797: >> type="numeric/double">0.141 > >> 3/26 Test #797: > >> vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend > >> .................***Failed 0.58 sec > >> test 798 > >> Start 798: vtkRenderingVolumeCxx-TestGPURayCastCompositeMask > >> > >> 798: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastCompositeMask" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMask.png" > >> 798: Test timeout computed to be: 1500 > >> 798: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> 798: >> type="numeric/double">4265.66 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMask.png > >> 798: Failed Image Test : 4265.66 > >> 798: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMask.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMask.png >> name="WallTime" type="numeric/double">0.297 > >> 798: >> type="numeric/double">0.297 > >> 4/26 Test #798: vtkRenderingVolumeCxx-TestGPURayCastCompositeMask > >> ......................***Failed 0.81 sec > >> test 799 > >> Start 799: vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP > >> > >> 799: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastCompositeToMIP" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeToMIP.png" > >> 799: Test timeout computed to be: 1500 > >> 799: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> 799: >> type="numeric/double">6482.66 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeToMIP.png > >> 799: Failed Image Test : 6482.66 > >> 799: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeToMIP.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeToMIP.png >> name="WallTime" type="numeric/double">0.172 > >> 799: >> type="numeric/double">0.171 > >> 5/26 Test #799: vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP > >> .....................***Failed 0.73 sec > >> test 800 > >> Start 800: vtkRenderingVolumeCxx-TestGPURayCastCropping > >> > >> 800: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastCropping" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCropping.png" > >> 800: Test timeout computed to be: 1500 > >> 800: >> type="numeric/double">9580.46 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCropping.png > >> 800: Failed Image Test : 9580.46 > >> 800: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCropping.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCropping.png >> name="WallTime" type="numeric/double">0.766 > >> 800: >> type="numeric/double">0.765 > >> 6/26 Test #800: vtkRenderingVolumeCxx-TestGPURayCastCropping > >> ...........................***Failed 1.98 sec > >> test 801 > >> Start 801: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP > >> > >> 801: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastDataTypesMinIP" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMinIP.png" > >> 801: Test timeout computed to be: 1500 > >> 801: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> 801: range=16,255 > >> 801: >> type="numeric/double">7915.92 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMinIP.png > >> 801: Failed Image Test : 7915.92 > >> 801: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMinIP.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMinIP.png >> name="WallTime" type="numeric/double">0.687 > >> 801: >> type="numeric/double">0.687 > >> 7/26 Test #801: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP > >> .....................***Failed 2.13 sec > >> test 802 > >> Start 802: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP > >> > >> 802: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastDataTypesMIP" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMIP.png" > >> 802: Test timeout computed to be: 1500 > >> 802: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> 802: >> type="numeric/double">4006.97 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMIP.png > >> 802: Failed Image Test : 4006.97 > >> 802: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMIP.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMIP.png >> name="WallTime" type="numeric/double">0.656 > >> 802: >> type="numeric/double">0.656 > >> 8/26 Test #802: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP > >> .......................***Failed 2.02 sec > >> test 803 > >> Start 803: > >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite > >> > >> 803: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastFourComponentsComposite" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsComposite.png" > >> 803: Test timeout computed to be: 1500 > >> 803: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> 803: >> type="numeric/double">1595.46 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsComposite.png > >> 803: Failed Image Test : 1595.46 > >> 803: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsComposite.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsComposite.png >> name="WallTime" type="numeric/double">0.172 > >> 803: >> type="numeric/double">0.172 > >> 9/26 Test #803: > >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite > >> ............***Failed 0.72 sec > >> test 804 > >> Start 804: > >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming > >> > >> 804: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastFourComponentsCompositeStreaming" "-D" > >> "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > >> "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" > >> "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsCompositeStreaming.png" > >> 804: Test timeout computed to be: 1500 > >> 804: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> 804: Memory usage for the ImageData=16Mb > >> 804: Dims of the ImageData=575x101x75=4Mb > >> 804: >> type="numeric/double">1591.24 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsCompositeStreaming.png > >> 804: Failed Image Test : 1591.24 > >> 804: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsCompositeStreaming.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsCompositeStreaming.png >> name="WallTime" type="numeric/double">0.172 > >> 804: >> type="numeric/double">0.172 > >> 10/26 Test #804: > >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming > >> ...***Failed 0.98 sec > >> test 805 > >> Start 805: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP > >> > >> 805: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastFourComponentsMinIP" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMinIP.png" > >> 805: Test timeout computed to be: 1500 > >> 805: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> 805: >> type="numeric/double">716.884 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMinIP.png > >> 805: Failed Image Test : 716.884 > >> 805: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMinIP.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMinIP.png >> name="WallTime" type="numeric/double">0.172 > >> 805: >> type="numeric/double">0.172 > >> 11/26 Test #805: > >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP > >> ................***Failed 0.61 sec > >> test 806 > >> Start 806: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP > >> > >> 806: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastFourComponentsMIP" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMIP.png" > >> 806: Test timeout computed to be: 1500 > >> 806: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> 806: >> type="numeric/double">4195.87 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMIP.png > >> 806: Failed Image Test : 4195.87 > >> 806: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMIP.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMIP.png >> name="WallTime" type="numeric/double">0.125 > >> 806: >> type="numeric/double">0.125 > >> 12/26 Test #806: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP > >> ..................***Failed 0.55 sec > >> test 807 > >> Start 807: vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark > >> > >> 807: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastMapperBenchmark" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperBenchmark.png" > >> 807: Test timeout computed to be: 1500 > >> 807: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> 807: First Render Time: 0.515 > >> 807: Interactive Render Time: 0.13821 > >> 807: >> type="numeric/double">25683.8 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperBenchmark.png > >> 807: Failed Image Test : 25683.8 > >> 807: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperBenchmark.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperBenchmark.png >> name="WallTime" type="numeric/double">0.187 > >> 807: >> type="numeric/double">0.188 > >> 13/26 Test #807: vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark > >> ....................***Failed 33.31 sec > >> test 808 > >> Start 808: > vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance > >> > >> 808: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastMapperSampleDistance" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperSampleDistance.png" > >> 808: Test timeout computed to be: 1500 > >> 808: >> type="numeric/double">25710.4 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperSampleDistance.png > >> 808: Failed Image Test : 25710.4 > >> 808: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperSampleDistance.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperSampleDistance.png >> name="WallTime" type="numeric/double">0.157 > >> 808: >> type="numeric/double">0.156 > >> 14/26 Test #808: > >> vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance > >> ...............***Failed 2.70 sec > >> test 809 > >> Start 809: vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask > >> > >> 809: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastMIPBinaryMask" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPBinaryMask.png" > >> 809: Test timeout computed to be: 1500 > >> 809: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> 809: >> type="numeric/double">4846.07 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPBinaryMask.png > >> 809: Failed Image Test : 4846.07 > >> 809: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPBinaryMask.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPBinaryMask.png >> name="WallTime" type="numeric/double">0.14 > >> 809: >> type="numeric/double">0.14 > >> 15/26 Test #809: vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask > >> ......................***Failed 0.44 sec > >> test 810 > >> Start 810: vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite > >> > >> 810: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastMIPToComposite" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPToComposite.png" > >> 810: Test timeout computed to be: 1500 > >> 810: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> 810: >> type="numeric/double">5734.58 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPToComposite.png > >> 810: Failed Image Test : 5734.58 > >> 810: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPToComposite.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPToComposite.png >> name="WallTime" type="numeric/double">0.157 > >> 810: >> type="numeric/double">0.156 > >> 16/26 Test #810: vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite > >> .....................***Failed 0.73 sec > >> test 811 > >> Start 811: vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP > >> > >> 811: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastNearestDataTypesMIP" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastNearestDataTypesMIP.png" > >> 811: Test timeout computed to be: 1500 > >> 811: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> 811: >> type="numeric/double">6187.06 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastNearestDataTypesMIP.png > >> 811: Failed Image Test : 6187.06 > >> 811: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastNearestDataTypesMIP.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastNearestDataTypesMIP.png >> name="WallTime" type="numeric/double">0.656 > >> 811: >> type="numeric/double">0.656 > >> 17/26 Test #811: > >> vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP > >> ................***Failed 2.06 sec > >> test 812 > >> Start 812: vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel > >> > >> 812: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastPerspectiveParallel" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPerspectiveParallel.png" > >> 812: Test timeout computed to be: 1500 > >> 812: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> 812: >> type="numeric/double">5994.61 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPerspectiveParallel.png > >> 812: Failed Image Test : 5994.61 > >> 812: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPerspectiveParallel.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPerspectiveParallel.png >> name="WallTime" type="numeric/double">0.156 > >> 812: >> type="numeric/double">0.156 > >> 18/26 Test #812: > >> vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel > >> ................***Failed 0.70 sec > >> test 813 > >> Start 813: vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate > >> > >> 813: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastVolumeUpdate" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeUpdate.png" > >> 813: Test timeout computed to be: 1500 > >> 813: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> 813: >> type="numeric/double">0 >> name="BaselineImage" > >> type="text/string">Standard >> name="WallTime" type="numeric/double">0.359 > >> 813: >> type="numeric/double">0.359 > >> 19/26 Test #813: vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate > >> ....................... Passed 58.96 sec > >> test 818 > >> Start 818: vtkRenderingVolumeCxx-TestGPURayCastClipping > >> > >> 818: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastClipping" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastClipping.png" > >> 818: Test timeout computed to be: 1500 > >> 818: >> type="numeric/double">2142.49 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastClipping.png > >> 818: Failed Image Test : 2142.49 > >> 818: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastClipping.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastClipping.png >> name="WallTime" type="numeric/double">0.156 > >> 818: >> type="numeric/double">0.156 > >> 20/26 Test #818: vtkRenderingVolumeCxx-TestGPURayCastClipping > >> ...........................***Failed 0.67 sec > >> test 819 > >> Start 819: vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity > >> > >> 819: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastGradientOpacity" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastGradientOpacity.png" > >> 819: Test timeout computed to be: 1500 > >> 819: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> 819: >> type="numeric/double">0 >> name="BaselineImage" > >> type="text/string">Standard >> name="WallTime" type="numeric/double">0.265 > >> 819: >> type="numeric/double">0.266 > >> 21/26 Test #819: vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity > >> .................... Passed 0.78 sec > >> test 820 > >> Start 820: vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData > >> > >> 820: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastVolumePolyData" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumePolyData.png" > >> 820: Test timeout computed to be: 1500 > >> 820: >> type="numeric/double">0 >> name="BaselineImage" > >> type="text/string">Standard >> name="WallTime" type="numeric/double">0.578 > >> 820: >> type="numeric/double">0.578 > >> 22/26 Test #820: vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData > >> ..................... Passed 1.47 sec > >> test 821 > >> Start 821: vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation > >> > >> 821: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastVolumeRotation" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeRotation.png" > >> 821: Test timeout computed to be: 1500 > >> 821: >> type="numeric/double">0 >> name="BaselineImage" > >> type="text/string">Standard >> name="WallTime" type="numeric/double">0.188 > >> 821: >> type="numeric/double">0.187 > >> 23/26 Test #821: vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation > >> ..................... Passed 0.56 sec > >> test 822 > >> Start 822: vtkRenderingVolumeCxx-TestGPURayCastVolumeScale > >> > >> 822: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastVolumeScale" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeScale.png" > >> 822: Test timeout computed to be: 1500 > >> 822: >> type="numeric/double">864.475 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeScale.png > >> 822: Failed Image Test : 864.475 > >> 822: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeScale.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeScale.png >> name="WallTime" type="numeric/double">0.422 > >> 822: >> type="numeric/double">0.421 > >> 24/26 Test #822: vtkRenderingVolumeCxx-TestGPURayCastVolumeScale > >> ........................***Failed 1.11 sec > >> test 823 > >> Start 823: vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit > >> > >> 823: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastVolumeLightKit" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeLightKit.png" > >> 823: Test timeout computed to be: 1500 > >> 823: >> type="numeric/double">5852.3 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeLightKit.png > >> 823: Failed Image Test : 5852.3 > >> 823: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeLightKit.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeLightKit.png >> name="WallTime" type="numeric/double">0.172 > >> 823: >> type="numeric/double">0.172 > >> 25/26 Test #823: vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit > >> .....................***Failed 0.67 sec > >> test 824 > >> Start 824: vtkRenderingVolumeCxx-TestGPURayCastPositionalLights > >> > >> 824: Test command: "C:\n\d\Nightly\VTK > >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> "TestGPURayCastPositionalLights" "-D" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK > >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPositionalLights.png" > >> 824: Test timeout computed to be: 1500 > >> 824: >> type="numeric/double">1917.12 >> name="BaselineImage" > >> type="text/string">Standard >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPositionalLights.png > >> 824: Failed Image Test : 1917.12 > >> 824: >> type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPositionalLights.diff.png >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> > >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPositionalLights.png >> name="WallTime" type="numeric/double">0.203 > >> 824: >> type="numeric/double">0.203 > >> 26/26 Test #824: vtkRenderingVolumeCxx-TestGPURayCastPositionalLights > >> ...................***Failed 1.00 sec > >> > >> The following tests passed: > >> vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate > >> vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity > >> vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData > >> vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation > >> > >> 15% tests passed, 22 tests failed out of 26 > >> > >> Total Test time (real) = 120.40 sec > >> > >> The following tests FAILED: > >> 795 - vtkRenderingVolumeCxx-TestGPURayCastAdditive (Failed) > >> 796 - vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask > (Failed) > >> 797 - vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend > (Failed) > >> 798 - vtkRenderingVolumeCxx-TestGPURayCastCompositeMask (Failed) > >> 799 - vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP (Failed) > >> 800 - vtkRenderingVolumeCxx-TestGPURayCastCropping (Failed) > >> 801 - vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP (Failed) > >> 802 - vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP (Failed) > >> 803 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite > >> (Failed) > >> 804 - > >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming > >> (Failed) > >> 805 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP > (Failed) > >> 806 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP (Failed) > >> 807 - vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark (Failed) > >> 808 - vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance > >> (Failed) > >> 809 - vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask (Failed) > >> 810 - vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite (Failed) > >> 811 - vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP > (Failed) > >> 812 - vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel > (Failed) > >> 818 - vtkRenderingVolumeCxx-TestGPURayCastClipping (Failed) > >> 822 - vtkRenderingVolumeCxx-TestGPURayCastVolumeScale (Failed) > >> 823 - vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit (Failed) > >> 824 - vtkRenderingVolumeCxx-TestGPURayCastPositionalLights (Failed) > >> > >> > >> > >> On Thu, Jan 15, 2015 at 10:41 AM, Aashish Chaudhary > >> wrote: > >> > Thanks. Can you run just one test with -V options and send me that > >> > output. I > >> > am wondering something is failing texture wise (most likely 3D > texture) > >> > which is causing the issue. > >> > > >> > - Aashish > >> > > >> > On Thu, Jan 15, 2015 at 10:20 AM, David Cole wrote: > >> >> > >> >> The machine does not have a publicly available way for you to > >> >> connect... But I can try anything out for you on it, just let me know > >> >> what you want me to try. > >> >> > >> >> The graphics is built-in Intel: Intel HD Graphics 2500, driver > version > >> >> 10.18.10.3621, OpenGL 4.0, OpenCL 1.2. > >> >> > >> >> What else do you need? > >> >> > >> >> thx, > >> >> D > >> >> > >> >> > >> >> > >> >> On Thu, Jan 15, 2015 at 9:57 AM, Aashish Chaudhary > >> >> wrote: > >> >> > Thanks for pointing it out. Is this machine accesible to us? I am > not > >> >> > seeing > >> >> > these failures on our dashboards. The earliest I can look into it > is > >> >> > this > >> >> > evening. > >> >> > > >> >> > What intel graphics card this machine has? > >> >> > > >> >> > - Aashish > >> >> > > >> >> > On Thu, Jan 15, 2015 at 6:21 AM, David Cole > wrote: > >> >> >> > >> >> >> This build: > >> >> >> https://open.cdash.org/buildSummary.php?buildid=3652134 > >> >> >> > >> >> >> with these updates: > >> >> >> https://open.cdash.org/viewUpdate.php?buildid=3652134 > >> >> >> > >> >> >> introduced 22 new TestGPURayCast test failures: > >> >> >> https://open.cdash.org/viewTest.php?onlydelta&buildid=3652134 > >> >> >> > >> >> >> This is an OpenGL2 build, running on low end built-in Intel > graphics > >> >> >> (with Windows 8.1)... > >> >> >> > >> >> >> Can you make the tests pass again on this machine like they were > in > >> >> >> the previous build...? > >> >> >> > >> >> >> > >> >> >> Thanks, > >> >> >> David C. > >> >> > > >> >> > > >> >> > > >> >> > > >> >> > -- > >> >> > | Aashish Chaudhary > >> >> > | Technical Leader > >> >> > | Kitware Inc. > >> >> > | http://www.kitware.com/company/team/chaudhary.html > >> > > >> > > >> > > >> > > >> > -- > >> > | Aashish Chaudhary > >> > | Technical Leader > >> > | Kitware Inc. > >> > | http://www.kitware.com/company/team/chaudhary.html > > > > > > > > > > -- > > | Aashish Chaudhary > > | Technical Leader > > | Kitware Inc. > > | http://www.kitware.com/company/team/chaudhary.html > -- *| Aashish Chaudhary | Technical Leader | Kitware Inc. * *| http://www.kitware.com/company/team/chaudhary.html * -------------- next part -------------- An HTML attachment was scrubbed... URL: From lifestudent37 at gmail.com Sat Jan 17 12:01:01 2015 From: lifestudent37 at gmail.com (Student Life) Date: Sat, 17 Jan 2015 17:01:01 +0000 Subject: [vtk-developers] Storing multiple copies/instances of vtkAssembly's - Memory Management Message-ID: Hi, How can one store multiple copies/instances of vtkAssembly's? If the number of possible vtkAssembly's were known, I would have opted for a fixed size array, however I can only think of the C++ Vector. This is what I can think of as a data structure... *vector actorCombo* Are there better data structures for handling multiple vtkAssembly's? Also, I am having some difficulty storing multiple glyph's that are plotted on a vtkActor. Basically, I can store vtkActor's as *vector actors* but I don't know how to store and associate the multiple glyph's to each actor. If I were to use C Style arrays, I could opt for a 2D array, such that [i][j], where [i] would represent the index of the actor and [j] would represent each glyph object. How would I go about storing it as a vector? Also, in terms of memory management, what is better - linked lists or vectors? Would greatly appreciate it if you or anyone on this forum could answer my questions. It would really mean a lot to me. Many Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: From berk.geveci at kitware.com Sun Jan 18 10:31:50 2015 From: berk.geveci at kitware.com (Berk Geveci) Date: Sun, 18 Jan 2015 07:31:50 -0800 Subject: [vtk-developers] Attributing VTK in a commercial app In-Reply-To: References: <20150114184245.GA25954@megas.kitwarein.com> <20150114184636.GB25954@megas.kitwarein.com> Message-ID: Hi David (Gobbi), I agree that this discussion is making a much bigger deal about this than it has to be. This is no big deal but you are not 100% right either :-) The license clearly says this: "Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution." So whether or not the product has originally any documentation, it "must reproduce the copyright notice, this list of conditions and the disclaimer". This can be in documentation or in an about box or in whatever the users of the product can see. You can not legally skip this simply because you don't have documentation or another convenient way to present it to users. Of course, this can be in some obscure part of the distribution but it must be part of the distribution where users can see it. By the way, reproduction does not mean you can simply provide a link to a Web page. The license clearly states what needs to be reproduced Best, -berk On Wed, Jan 14, 2015 at 1:48 PM, David Gobbi wrote: > Hi David, > > I think you're making a mountain out of a molehill. This really isn't > even a VTK-specific issue, since I'm sure that your application uses > tons of other bsd-licensed code in addition to VTK. > > The license says nothing about what you put into the "About" box. If > you want, you could add a couple lines to say "This software makes > use of the following third-party open-source libraries:" and list the > packages that you use the most heavily. Again, this is totally optional, > it's just a courtesy. > > Assuming that your commercial app has documentation, you should > list the VTK license in an appendix. Just say the following: > "This software makes use of VTK, copyright (c) Ken Martin, Will > Schroeder, and Bill Lorensen. The VTK license is shown below". > In fact, I'm sure that it instead of saying "shown below", it would be > okay to simply link to the above-referenced web page (that's what > the source files themselves do). > > Yes, Kitware should be updating the date in the copyright file. > > - David > > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Search the list archives at: http://markmail.org/search/?q=vtk-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/vtk-developers > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From DLRdave at aol.com Sun Jan 18 11:08:48 2015 From: DLRdave at aol.com (David Cole) Date: Sun, 18 Jan 2015 11:08:48 -0500 Subject: [vtk-developers] Attributing VTK in a commercial app In-Reply-To: References: <20150114184245.GA25954@megas.kitwarein.com> <20150114184636.GB25954@megas.kitwarein.com> Message-ID: Thanks to all of you for the input on this thread. Sorry if it seemed like it was "a big deal..." We are planning to provide a file named Notice.html with our documentation that, in its content, reproduces the Copyright.txt file from the VTK source tree we use in our build. A button in our About box will launch the locally installed Notice.html file in a web browser. >From what I'm understanding, this will be sufficient. Thanks again, David C. On Sun, Jan 18, 2015 at 10:31 AM, Berk Geveci wrote: > Hi David (Gobbi), > > I agree that this discussion is making a much bigger deal about this than it > has to be. This is no big deal but you are not 100% right either :-) The > license clearly says this: > > "Redistributions in binary form must reproduce the above copyright notice, > this list of conditions and the following disclaimer in the documentation > and/or other materials provided with the distribution." > > So whether or not the product has originally any documentation, it "must > reproduce the copyright notice, this list of conditions and the disclaimer". > This can be in documentation or in an about box or in whatever the users of > the product can see. You can not legally skip this simply because you don't > have documentation or another convenient way to present it to users. Of > course, this can be in some obscure part of the distribution but it must be > part of the distribution where users can see it. > > By the way, reproduction does not mean you can simply provide a link to a > Web page. The license clearly states what needs to be reproduced > > Best, > -berk > > > On Wed, Jan 14, 2015 at 1:48 PM, David Gobbi wrote: >> >> Hi David, >> >> I think you're making a mountain out of a molehill. This really isn't >> even a VTK-specific issue, since I'm sure that your application uses >> tons of other bsd-licensed code in addition to VTK. >> >> The license says nothing about what you put into the "About" box. If >> you want, you could add a couple lines to say "This software makes >> use of the following third-party open-source libraries:" and list the >> packages that you use the most heavily. Again, this is totally optional, >> it's just a courtesy. >> >> Assuming that your commercial app has documentation, you should >> list the VTK license in an appendix. Just say the following: >> "This software makes use of VTK, copyright (c) Ken Martin, Will >> Schroeder, and Bill Lorensen. The VTK license is shown below". >> In fact, I'm sure that it instead of saying "shown below", it would be >> okay to simply link to the above-referenced web page (that's what >> the source files themselves do). >> >> Yes, Kitware should be updating the date in the copyright file. >> >> - David >> >> _______________________________________________ >> Powered by www.kitware.com >> >> Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html >> >> Search the list archives at: http://markmail.org/search/?q=vtk-developers >> >> Follow this link to subscribe/unsubscribe: >> http://public.kitware.com/mailman/listinfo/vtk-developers >> >> > From david.gobbi at gmail.com Sun Jan 18 11:08:48 2015 From: david.gobbi at gmail.com (David Gobbi) Date: Sun, 18 Jan 2015 09:08:48 -0700 Subject: [vtk-developers] Attributing VTK in a commercial app In-Reply-To: References: <20150114184245.GA25954@megas.kitwarein.com> <20150114184636.GB25954@megas.kitwarein.com> Message-ID: Hi Berk, Thanks for the clarification. Note that I never meant to say that an app without documentation could skip the copyright notice. My comment "assuming that the commercial app has documentation" was tongue-in-cheek ;) - David On Sun, Jan 18, 2015 at 8:31 AM, Berk Geveci wrote: > Hi David (Gobbi), > > I agree that this discussion is making a much bigger deal about this than > it has to be. This is no big deal but you are not 100% right either :-) The > license clearly says this: > > "Redistributions in binary form must reproduce the above copyright notice, > this list of conditions and the following disclaimer in the documentation > and/or other materials provided with the distribution." > > So whether or not the product has originally any documentation, it "must > reproduce the copyright notice, this list of conditions and the > disclaimer". This can be in documentation or in an about box or in whatever > the users of the product can see. You can not legally skip this simply > because you don't have documentation or another convenient way to present > it to users. Of course, this can be in some obscure part of the > distribution but it must be part of the distribution where users can see it. > > By the way, reproduction does not mean you can simply provide a link to a > Web page. The license clearly states what needs to be reproduced > > Best, > -berk > > > On Wed, Jan 14, 2015 at 1:48 PM, David Gobbi > wrote: > >> Hi David, >> >> I think you're making a mountain out of a molehill. This really isn't >> even a VTK-specific issue, since I'm sure that your application uses >> tons of other bsd-licensed code in addition to VTK. >> >> The license says nothing about what you put into the "About" box. If >> you want, you could add a couple lines to say "This software makes >> use of the following third-party open-source libraries:" and list the >> packages that you use the most heavily. Again, this is totally optional, >> it's just a courtesy. >> >> Assuming that your commercial app has documentation, you should >> list the VTK license in an appendix. Just say the following: >> "This software makes use of VTK, copyright (c) Ken Martin, Will >> Schroeder, and Bill Lorensen. The VTK license is shown below". >> In fact, I'm sure that it instead of saying "shown below", it would be >> okay to simply link to the above-referenced web page (that's what >> the source files themselves do). >> >> Yes, Kitware should be updating the date in the copyright file. >> >> - David >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From berk.geveci at kitware.com Mon Jan 19 09:48:54 2015 From: berk.geveci at kitware.com (Berk Geveci) Date: Mon, 19 Jan 2015 06:48:54 -0800 Subject: [vtk-developers] Attributing VTK in a commercial app In-Reply-To: References: <20150114184245.GA25954@megas.kitwarein.com> <20150114184636.GB25954@megas.kitwarein.com> Message-ID: ;-) Sorry I didn't get it. I feel like an app having documentation is the exception rather than the rule :-) -berk On Sun, Jan 18, 2015 at 8:08 AM, David Gobbi wrote: > Hi Berk, > > Thanks for the clarification. > > Note that I never meant to say that an app without documentation could > skip the copyright notice. My comment > "assuming that the commercial app has documentation" was tongue-in-cheek ;) > > - David > > > On Sun, Jan 18, 2015 at 8:31 AM, Berk Geveci > wrote: > >> Hi David (Gobbi), >> >> I agree that this discussion is making a much bigger deal about this than >> it has to be. This is no big deal but you are not 100% right either :-) The >> license clearly says this: >> >> "Redistributions in binary form must reproduce the above copyright >> notice, this list of conditions and the following disclaimer in the >> documentation and/or other materials provided with the distribution." >> >> So whether or not the product has originally any documentation, it "must >> reproduce the copyright notice, this list of conditions and the >> disclaimer". This can be in documentation or in an about box or in whatever >> the users of the product can see. You can not legally skip this simply >> because you don't have documentation or another convenient way to present >> it to users. Of course, this can be in some obscure part of the >> distribution but it must be part of the distribution where users can see it. >> >> By the way, reproduction does not mean you can simply provide a link to a >> Web page. The license clearly states what needs to be reproduced >> >> Best, >> -berk >> >> >> On Wed, Jan 14, 2015 at 1:48 PM, David Gobbi >> wrote: >> >>> Hi David, >>> >>> I think you're making a mountain out of a molehill. This really isn't >>> even a VTK-specific issue, since I'm sure that your application uses >>> tons of other bsd-licensed code in addition to VTK. >>> >>> The license says nothing about what you put into the "About" box. If >>> you want, you could add a couple lines to say "This software makes >>> use of the following third-party open-source libraries:" and list the >>> packages that you use the most heavily. Again, this is totally optional, >>> it's just a courtesy. >>> >>> Assuming that your commercial app has documentation, you should >>> list the VTK license in an appendix. Just say the following: >>> "This software makes use of VTK, copyright (c) Ken Martin, Will >>> Schroeder, and Bill Lorensen. The VTK license is shown below". >>> In fact, I'm sure that it instead of saying "shown below", it would be >>> okay to simply link to the above-referenced web page (that's what >>> the source files themselves do). >>> >>> Yes, Kitware should be updating the date in the copyright file. >>> >>> - David >>> >> -------------- next part -------------- An HTML attachment was scrubbed... URL: From berk.geveci at kitware.com Mon Jan 19 09:49:08 2015 From: berk.geveci at kitware.com (Berk Geveci) Date: Mon, 19 Jan 2015 06:49:08 -0800 Subject: [vtk-developers] Attributing VTK in a commercial app In-Reply-To: References: <20150114184245.GA25954@megas.kitwarein.com> <20150114184636.GB25954@megas.kitwarein.com> Message-ID: Yup. On Sun, Jan 18, 2015 at 8:08 AM, David Cole wrote: > Thanks to all of you for the input on this thread. Sorry if it seemed > like it was "a big deal..." > > We are planning to provide a file named Notice.html with our > documentation that, in its content, reproduces the Copyright.txt file > from the VTK source tree we use in our build. A button in our About > box will launch the locally installed Notice.html file in a web > browser. > > From what I'm understanding, this will be sufficient. > > > Thanks again, > David C. > > > On Sun, Jan 18, 2015 at 10:31 AM, Berk Geveci > wrote: > > Hi David (Gobbi), > > > > I agree that this discussion is making a much bigger deal about this > than it > > has to be. This is no big deal but you are not 100% right either :-) The > > license clearly says this: > > > > "Redistributions in binary form must reproduce the above copyright > notice, > > this list of conditions and the following disclaimer in the documentation > > and/or other materials provided with the distribution." > > > > So whether or not the product has originally any documentation, it "must > > reproduce the copyright notice, this list of conditions and the > disclaimer". > > This can be in documentation or in an about box or in whatever the users > of > > the product can see. You can not legally skip this simply because you > don't > > have documentation or another convenient way to present it to users. Of > > course, this can be in some obscure part of the distribution but it must > be > > part of the distribution where users can see it. > > > > By the way, reproduction does not mean you can simply provide a link to a > > Web page. The license clearly states what needs to be reproduced > > > > Best, > > -berk > > > > > > On Wed, Jan 14, 2015 at 1:48 PM, David Gobbi > wrote: > >> > >> Hi David, > >> > >> I think you're making a mountain out of a molehill. This really isn't > >> even a VTK-specific issue, since I'm sure that your application uses > >> tons of other bsd-licensed code in addition to VTK. > >> > >> The license says nothing about what you put into the "About" box. If > >> you want, you could add a couple lines to say "This software makes > >> use of the following third-party open-source libraries:" and list the > >> packages that you use the most heavily. Again, this is totally > optional, > >> it's just a courtesy. > >> > >> Assuming that your commercial app has documentation, you should > >> list the VTK license in an appendix. Just say the following: > >> "This software makes use of VTK, copyright (c) Ken Martin, Will > >> Schroeder, and Bill Lorensen. The VTK license is shown below". > >> In fact, I'm sure that it instead of saying "shown below", it would be > >> okay to simply link to the above-referenced web page (that's what > >> the source files themselves do). > >> > >> Yes, Kitware should be updating the date in the copyright file. > >> > >> - David > >> > >> _______________________________________________ > >> Powered by www.kitware.com > >> > >> Visit other Kitware open-source projects at > >> http://www.kitware.com/opensource/opensource.html > >> > >> Search the list archives at: > http://markmail.org/search/?q=vtk-developers > >> > >> Follow this link to subscribe/unsubscribe: > >> http://public.kitware.com/mailman/listinfo/vtk-developers > >> > >> > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From joachim.pouderoux at kitware.com Mon Jan 19 11:42:42 2015 From: joachim.pouderoux at kitware.com (Joachim Pouderoux) Date: Mon, 19 Jan 2015 17:42:42 +0100 Subject: [vtk-developers] ANN: VTK and ParaView Training Courses in Lyon, France, February 3-4, 2015 In-Reply-To: References: Message-ID: Errata: the previous links were bad, here are the correct one: http://training.kitware.fr/browse/83 http://training.kitware.fr/browse/84 or in French: http://formations.kitware.fr/browse/83 http://formations.kitware.fr/browse/84 Best regards, *Joachim Pouderoux* *PhD, Technical Expert* *Kitware SAS * 2015-01-16 14:04 GMT+01:00 Joachim Pouderoux : > Kitware will be holding VTK and ParaView courses on February 3-4, > 2015 in Lyon, France. > > Please visit our web site for more information and registration details at > either: > > http://training.kitware.fr/browse/83 > > http://training.kitware.fr/browse/84 > > or in French: > http://formations.kitware.fr/browse/83 > > http://formations.kitware.fr/browse/84 > > > Note that the course will be taught in English. If you have any question, > please contact us at formations at http://www.kitware.fr > > Thank you, > > *Joachim Pouderoux* > > *PhD, Technical Expert* > *Kitware SAS * > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From berk.geveci at kitware.com Wed Jan 21 12:44:24 2015 From: berk.geveci at kitware.com (Berk Geveci) Date: Wed, 21 Jan 2015 12:44:24 -0500 Subject: [vtk-developers] ANNOUNCE: Kitware is hiring Message-ID: Hi folks, We are looking to hire visualization developers to our Scientific Computing team. If you are a talented visualization researcher and developer with strong C++ skills, please consider applying. You will join a great team and work on many interesting and challenging technical problems - always aiming to deliver robust and widely used software solutions. For the full posting see: http://tinyurl.com/l8sgvzw JOB DESCRIPTION Kitware is seeking to hire highly skilled Research and Development Engineers (R&D Engineers) to join our Scientific Computing team and contribute to our scientific and information visualization efforts. Candidates will work to develop and improve leading visualization software solutions. Kitware collaborates on a multitude of basic and applied research and development projects. Our collaborators include the top universities from around the world, national research labs, medical device manufacturers, car manufacturers, oil and gas companies, financial institutes, and many others. The projects range from extending our open source C++ libraries and applications, such as VTK, ParaView, and CMake, to developing proprietary domain-specific vertical applications for a wide array of platforms including web and mobile devices. By joining our team you will participate in a dynamic work environment with exceptionally talented and friendly coworkers who are committed to high-quality development practices. You will collaborate with esteemed researchers from around the world by: * Designing and developing scalable data analysis and visualization tools for use by researchers and professionals from various domains; * Solving a wide array of problems ranging from developing distributed memory parallel algorithms for data analysis, optimizing distributed parallel codes to compiling and maintaining software on supercomputers. * Designing and developing tools to improve scientific data analysis workflows; * Contributing to and supporting our dynamic open source communities built around several of our open source tools. -------------- next part -------------- An HTML attachment was scrubbed... URL: From dmsurti at gmail.com Mon Jan 26 02:03:22 2015 From: dmsurti at gmail.com (Deepak Surti) Date: Mon, 26 Jan 2015 12:33:22 +0530 Subject: [vtk-developers] Query about vtkDebugLeaks Message-ID: Hi, I am using vtkDebugLeaks. Using this example here: http://www.vtk.org/Wiki/VTK/Examples/Python/DataManipulation/Cube.py, if I *insert this line* : (after lines 10 and 82 in main function): vtk.vtkDebugLeaks.PrintMemoryLeaks() when, I run the script, I get the following on the console: vtkDebugLeaks has detected LEAKS! Class "vtkObjectFactoryCollection" has 1 instance still around. Class "vtkBoxMuellerRandomSequence" has 1 instance still around. Class "vtkMinimalStandardRandomSequence" has 1 instance still around. vtkDebugLeaks has detected LEAKS! Class "vtkObjectFactoryCollection" has 1 instance still around. Class "vtkBoxMuellerRandomSequence" has 1 instance still around. Class "vtkMinimalStandardRandomSequence" has 1 instance still around. If I comment out all the del lines in the script, obviously I get a whole lot of memory leaks detected, as expected. My question is about the 3 leaks detected as in the trace above, with all the del in place. Are these 3 not leaks, but reports created by static initializers (as mentioned by David E DMarie here: http://vtk.1045678.n5.nabble.com/vtkDebugLeaks-problems-td5594643.html). Also, if I write a test case to ensure no memory leaks are reported, I cannot use the test: vtk.vtkDebugLeaks.PrintCurrentLeaks() == 0. Or if the above are indeed not leaks, but only reports, will vtk.vtkDebugLeaks.PrintCurrentLeaks() == 1 be a reliable test case? I have attached 2 python scripts for reference, cube.py (with vtk.vtkDebugLeaks and del <> statements in place) and cube_mem_leaks.py (vtk.vtkDebugLeaks and del <> statements removed.) Thanks, Deepak -- http://deepaksurti.com To see a miracle, be the miracle. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: cube_mem_leaks.py Type: text/x-python-script Size: 2215 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: cube.py Type: text/x-python-script Size: 2314 bytes Desc: not available URL: From dmsurti at gmail.com Mon Jan 26 02:17:29 2015 From: dmsurti at gmail.com (Deepak Surti) Date: Mon, 26 Jan 2015 12:47:29 +0530 Subject: [vtk-developers] Query about vtkDebugLeaks In-Reply-To: References: Message-ID: Please ignore this question: *Also, if I write a test case to ensure no memory leaks are reported, I cannot use the test: vtk.vtkDebugLeaks.PrintCurrentLeaks() == 0. Or if the above are indeed not leaks, but only reports, will vtk.vtkDebugLeaks.PrintCurrentLeaks() == 1 be a reliable test case? * I read the vtkDebugLeaks docs and obviously it runs non-zero if there were leaks, I was thinking it prints number of leaks detected. Anyways, in that case, how do I write a test to ensure no leaks are happening? Thanks, Deepak On Mon, Jan 26, 2015 at 12:33 PM, Deepak Surti wrote: > Hi, > > I am using vtkDebugLeaks. Using this example here: > http://www.vtk.org/Wiki/VTK/Examples/Python/DataManipulation/Cube.py, if > I *insert this line* : (after lines 10 and 82 in main function): > > vtk.vtkDebugLeaks.PrintMemoryLeaks() > > when, I run the script, I get the following on the console: > > vtkDebugLeaks has detected LEAKS! > Class "vtkObjectFactoryCollection" has 1 instance still around. > Class "vtkBoxMuellerRandomSequence" has 1 instance still around. > Class "vtkMinimalStandardRandomSequence" has 1 instance still around. > > vtkDebugLeaks has detected LEAKS! > Class "vtkObjectFactoryCollection" has 1 instance still around. > Class "vtkBoxMuellerRandomSequence" has 1 instance still around. > Class "vtkMinimalStandardRandomSequence" has 1 instance still around. > > If I comment out all the del lines in the script, obviously I > get a whole lot of memory leaks detected, as expected. > > My question is about the 3 leaks detected as in the trace above, with all > the del in place. > > Are these 3 not leaks, but reports created by static initializers (as > mentioned by David E DMarie here: > http://vtk.1045678.n5.nabble.com/vtkDebugLeaks-problems-td5594643.html). > > Also, if I write a test case to ensure no memory leaks are reported, I > cannot use the test: vtk.vtkDebugLeaks.PrintCurrentLeaks() == 0. Or if the > above are indeed not leaks, but only reports, will > vtk.vtkDebugLeaks.PrintCurrentLeaks() == 1 be a reliable test case? > > I have attached 2 python scripts for reference, cube.py (with > vtk.vtkDebugLeaks and del <> statements in place) and > cube_mem_leaks.py (vtk.vtkDebugLeaks and del <> statements > removed.) > > Thanks, > Deepak > > -- > http://deepaksurti.com > To see a miracle, be the miracle. > -- http://deepaksurti.com To see a miracle, be the miracle. -------------- next part -------------- An HTML attachment was scrubbed... URL: From DLRdave at aol.com Thu Jan 29 14:35:31 2015 From: DLRdave at aol.com (David Cole) Date: Thu, 29 Jan 2015 14:35:31 -0500 Subject: [vtk-developers] 22 new failing GPU tests on OpenGL2 dashboard In-Reply-To: References: Message-ID: I've narrowed it down by using git bisect on the machine where the tests actually fail. I would really like to see this stuff fixed to work in this context before the official VTK 6.2 release. This is not ready from my perspective. What else can I do to help out here? Here are the results of the git bisect: git log --oneline 13abfb73^..be72f94c be72f94 ENH: Convert noise and depth textures to use texture object --> builds, and has a leak, but texture does not render This is the first commit that compiles, and runs enough to demonstrate the problem 275d348 Initial null value for pointer --> builds, but *crashes* when you run the test a4e8dc6 ENH: Make sure the new API for opacity tables is supported by mapper --> builds, but *crashes* when you run the test 8a8b190 ENH: Use vtkTextureObject for gradient opacity table --> does not even build, compiler error 65ff2f8 ENH: Use texture object for opacity tables --> does not even build, compiler error 13abfb7 Minor semantic changes --> This was the last good build, where the textures actually worked, and running the GPURayCast tests pass... I must admit, I'm a little bit disappointed that some of the commits in what was merged to VTK master don't even compile... I would hope we could be a bit less sloppy, and hold ourselves to a higher standard. Rushing something in before it's ready for prime time serves no one. Let me know if I can assist you further in figuring out the best fix moving forward. Thanks, David C. On Fri, Jan 16, 2015 at 11:53 AM, Aashish Chaudhary wrote: > I think I got a machine like that -:) (A gift from Kitware). I will > resurrect it. > > - Aashish > > On Fri, Jan 16, 2015 at 11:48 AM, David Cole wrote: >> >> Sure -- no problem, take your time. >> >> This should be reproducible on any Windows machine using built-in >> Intel GPU without a "real" graphics card... Happens on my laptop, too. >> (i.e. -- any "cheap" sub $1000 Windows box, like the kind you see at >> Target, Costco and Best Buy...) >> >> >> On Fri, Jan 16, 2015 at 11:41 AM, Aashish Chaudhary >> wrote: >> > Thanks for all the information. I am working on one fix anyways. What I >> > will >> > do is that I will push a branch that will dump few more things on the >> > console that we can capture on your machine >> > in case I cannot find a way to replicate on our systems. Allow me a day >> > to >> > do that. >> > >> > Thanks, >> > >> > >> > On Fri, Jan 16, 2015 at 11:30 AM, David Cole wrote: >> >> >> >> I ran: >> >> >> >> C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug> ctest -R "GPURayCast" >> >> -VV > GPURayCastTests.txt >> >> >> >> Errors while running CTest >> >> >> >> Whatever is failing is not very informative on the console output... I >> >> don't see any errors reported other than the test failures due to >> >> image differences. The ones that fail do not render any volume at all, >> >> just the background color of the render window. >> >> >> >> Let me know if you'd rather have it as a text file attachment, or if >> >> there is anything else I can try on this machine for you. >> >> >> >> Thanks, >> >> David C. >> >> >> >> >> >> And here is the verbose output: >> >> >> >> UpdateCTestConfiguration from :C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/DartConfiguration.tcl >> >> Parse Config file:C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/DartConfiguration.tcl >> >> Add coverage exclude regular expressions. >> >> Add coverage exclude: vtk.*TCLInit.cxx >> >> Add coverage exclude: vtk[^\.]+(Java|Python|Tcl).cxx >> >> Add coverage exclude: .*vtkOpenGLState.* >> >> Add coverage exclude: .*Testing.Cxx.*cxx >> >> Add coverage exclude: .*Testing.Cxx.*h >> >> Add coverage exclude: .*moc_.*cxx >> >> Add coverage exclude: .*/Rendering/OpenGL/vtkgl.* >> >> Add coverage exclude: .*/Utilities/.* >> >> Add coverage exclude: .*/ThirdParty/.* >> >> Add coverage exclude: .*vtkOpenGLPolyDataMapper.* >> >> SetCTestConfiguration:CMakeCommand:C:/Program Files >> >> (x86)/CMake/bin/cmake.exe >> >> UpdateCTestConfiguration from :C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/DartConfiguration.tcl >> >> Parse Config file:C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/DartConfiguration.tcl >> >> Test project C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug >> >> Constructing a list of tests >> >> Done constructing a list of tests >> >> Checking test dependency graph... >> >> Checking test dependency graph end >> >> test 795 >> >> Start 795: vtkRenderingVolumeCxx-TestGPURayCastAdditive >> >> >> >> 795: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastAdditive" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastAdditive.png" >> >> 795: Test timeout computed to be: 1500 >> >> 795: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 795: > >> type="numeric/double">3462.57> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastAdditive.png >> >> 795: Failed Image Test : 3462.57 >> >> 795: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastAdditive.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastAdditive.png> >> name="WallTime" type="numeric/double">0.25 >> >> 795: > >> type="numeric/double">0.25 >> >> 1/26 Test #795: vtkRenderingVolumeCxx-TestGPURayCastAdditive >> >> ...........................***Failed 1.02 sec >> >> test 796 >> >> Start 796: >> >> vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask >> >> >> >> 796: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastCompositeBinaryMask" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeBinaryMask.png" >> >> 796: Test timeout computed to be: 1500 >> >> 796: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 796: > >> type="numeric/double">3046.61> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeBinaryMask.png >> >> 796: Failed Image Test : 3046.61 >> >> 796: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeBinaryMask.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeBinaryMask.png> >> name="WallTime" type="numeric/double">0.156 >> >> 796: > >> type="numeric/double">0.156 >> >> 2/26 Test #796: >> >> vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask >> >> ................***Failed 2.42 sec >> >> test 797 >> >> Start 797: vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend >> >> >> >> 797: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastCompositeMaskBlend" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMaskBlend.png" >> >> 797: Test timeout computed to be: 1500 >> >> 797: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 797: > >> type="numeric/double">3395.8> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMaskBlend.png >> >> 797: Failed Image Test : 3395.8 >> >> 797: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMaskBlend.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMaskBlend.png> >> name="WallTime" type="numeric/double">0.14 >> >> 797: > >> type="numeric/double">0.141 >> >> 3/26 Test #797: >> >> vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend >> >> .................***Failed 0.58 sec >> >> test 798 >> >> Start 798: vtkRenderingVolumeCxx-TestGPURayCastCompositeMask >> >> >> >> 798: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastCompositeMask" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMask.png" >> >> 798: Test timeout computed to be: 1500 >> >> 798: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 798: > >> type="numeric/double">4265.66> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMask.png >> >> 798: Failed Image Test : 4265.66 >> >> 798: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMask.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMask.png> >> name="WallTime" type="numeric/double">0.297 >> >> 798: > >> type="numeric/double">0.297 >> >> 4/26 Test #798: vtkRenderingVolumeCxx-TestGPURayCastCompositeMask >> >> ......................***Failed 0.81 sec >> >> test 799 >> >> Start 799: vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP >> >> >> >> 799: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastCompositeToMIP" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeToMIP.png" >> >> 799: Test timeout computed to be: 1500 >> >> 799: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 799: > >> type="numeric/double">6482.66> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeToMIP.png >> >> 799: Failed Image Test : 6482.66 >> >> 799: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeToMIP.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeToMIP.png> >> name="WallTime" type="numeric/double">0.172 >> >> 799: > >> type="numeric/double">0.171 >> >> 5/26 Test #799: vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP >> >> .....................***Failed 0.73 sec >> >> test 800 >> >> Start 800: vtkRenderingVolumeCxx-TestGPURayCastCropping >> >> >> >> 800: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastCropping" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCropping.png" >> >> 800: Test timeout computed to be: 1500 >> >> 800: > >> type="numeric/double">9580.46> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCropping.png >> >> 800: Failed Image Test : 9580.46 >> >> 800: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCropping.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCropping.png> >> name="WallTime" type="numeric/double">0.766 >> >> 800: > >> type="numeric/double">0.765 >> >> 6/26 Test #800: vtkRenderingVolumeCxx-TestGPURayCastCropping >> >> ...........................***Failed 1.98 sec >> >> test 801 >> >> Start 801: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP >> >> >> >> 801: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastDataTypesMinIP" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMinIP.png" >> >> 801: Test timeout computed to be: 1500 >> >> 801: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 801: range=16,255 >> >> 801: > >> type="numeric/double">7915.92> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMinIP.png >> >> 801: Failed Image Test : 7915.92 >> >> 801: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMinIP.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMinIP.png> >> name="WallTime" type="numeric/double">0.687 >> >> 801: > >> type="numeric/double">0.687 >> >> 7/26 Test #801: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP >> >> .....................***Failed 2.13 sec >> >> test 802 >> >> Start 802: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP >> >> >> >> 802: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastDataTypesMIP" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMIP.png" >> >> 802: Test timeout computed to be: 1500 >> >> 802: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 802: > >> type="numeric/double">4006.97> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMIP.png >> >> 802: Failed Image Test : 4006.97 >> >> 802: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMIP.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMIP.png> >> name="WallTime" type="numeric/double">0.656 >> >> 802: > >> type="numeric/double">0.656 >> >> 8/26 Test #802: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP >> >> .......................***Failed 2.02 sec >> >> test 803 >> >> Start 803: >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite >> >> >> >> 803: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastFourComponentsComposite" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsComposite.png" >> >> 803: Test timeout computed to be: 1500 >> >> 803: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 803: > >> type="numeric/double">1595.46> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsComposite.png >> >> 803: Failed Image Test : 1595.46 >> >> 803: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsComposite.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsComposite.png> >> name="WallTime" type="numeric/double">0.172 >> >> 803: > >> type="numeric/double">0.172 >> >> 9/26 Test #803: >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite >> >> ............***Failed 0.72 sec >> >> test 804 >> >> Start 804: >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming >> >> >> >> 804: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastFourComponentsCompositeStreaming" "-D" >> >> "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" >> >> "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" >> >> "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsCompositeStreaming.png" >> >> 804: Test timeout computed to be: 1500 >> >> 804: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 804: Memory usage for the ImageData=16Mb >> >> 804: Dims of the ImageData=575x101x75=4Mb >> >> 804: > >> type="numeric/double">1591.24> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsCompositeStreaming.png >> >> 804: Failed Image Test : 1591.24 >> >> 804: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsCompositeStreaming.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsCompositeStreaming.png> >> name="WallTime" type="numeric/double">0.172 >> >> 804: > >> type="numeric/double">0.172 >> >> 10/26 Test #804: >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming >> >> ...***Failed 0.98 sec >> >> test 805 >> >> Start 805: >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP >> >> >> >> 805: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastFourComponentsMinIP" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMinIP.png" >> >> 805: Test timeout computed to be: 1500 >> >> 805: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 805: > >> type="numeric/double">716.884> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMinIP.png >> >> 805: Failed Image Test : 716.884 >> >> 805: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMinIP.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMinIP.png> >> name="WallTime" type="numeric/double">0.172 >> >> 805: > >> type="numeric/double">0.172 >> >> 11/26 Test #805: >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP >> >> ................***Failed 0.61 sec >> >> test 806 >> >> Start 806: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP >> >> >> >> 806: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastFourComponentsMIP" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMIP.png" >> >> 806: Test timeout computed to be: 1500 >> >> 806: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 806: > >> type="numeric/double">4195.87> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMIP.png >> >> 806: Failed Image Test : 4195.87 >> >> 806: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMIP.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMIP.png> >> name="WallTime" type="numeric/double">0.125 >> >> 806: > >> type="numeric/double">0.125 >> >> 12/26 Test #806: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP >> >> ..................***Failed 0.55 sec >> >> test 807 >> >> Start 807: vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark >> >> >> >> 807: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastMapperBenchmark" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperBenchmark.png" >> >> 807: Test timeout computed to be: 1500 >> >> 807: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 807: First Render Time: 0.515 >> >> 807: Interactive Render Time: 0.13821 >> >> 807: > >> type="numeric/double">25683.8> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperBenchmark.png >> >> 807: Failed Image Test : 25683.8 >> >> 807: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperBenchmark.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperBenchmark.png> >> name="WallTime" type="numeric/double">0.187 >> >> 807: > >> type="numeric/double">0.188 >> >> 13/26 Test #807: vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark >> >> ....................***Failed 33.31 sec >> >> test 808 >> >> Start 808: >> >> vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance >> >> >> >> 808: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastMapperSampleDistance" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperSampleDistance.png" >> >> 808: Test timeout computed to be: 1500 >> >> 808: > >> type="numeric/double">25710.4> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperSampleDistance.png >> >> 808: Failed Image Test : 25710.4 >> >> 808: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperSampleDistance.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperSampleDistance.png> >> name="WallTime" type="numeric/double">0.157 >> >> 808: > >> type="numeric/double">0.156 >> >> 14/26 Test #808: >> >> vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance >> >> ...............***Failed 2.70 sec >> >> test 809 >> >> Start 809: vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask >> >> >> >> 809: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastMIPBinaryMask" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPBinaryMask.png" >> >> 809: Test timeout computed to be: 1500 >> >> 809: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 809: > >> type="numeric/double">4846.07> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPBinaryMask.png >> >> 809: Failed Image Test : 4846.07 >> >> 809: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPBinaryMask.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPBinaryMask.png> >> name="WallTime" type="numeric/double">0.14 >> >> 809: > >> type="numeric/double">0.14 >> >> 15/26 Test #809: vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask >> >> ......................***Failed 0.44 sec >> >> test 810 >> >> Start 810: vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite >> >> >> >> 810: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastMIPToComposite" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPToComposite.png" >> >> 810: Test timeout computed to be: 1500 >> >> 810: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 810: > >> type="numeric/double">5734.58> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPToComposite.png >> >> 810: Failed Image Test : 5734.58 >> >> 810: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPToComposite.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPToComposite.png> >> name="WallTime" type="numeric/double">0.157 >> >> 810: > >> type="numeric/double">0.156 >> >> 16/26 Test #810: vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite >> >> .....................***Failed 0.73 sec >> >> test 811 >> >> Start 811: >> >> vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP >> >> >> >> 811: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastNearestDataTypesMIP" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastNearestDataTypesMIP.png" >> >> 811: Test timeout computed to be: 1500 >> >> 811: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 811: > >> type="numeric/double">6187.06> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastNearestDataTypesMIP.png >> >> 811: Failed Image Test : 6187.06 >> >> 811: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastNearestDataTypesMIP.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastNearestDataTypesMIP.png> >> name="WallTime" type="numeric/double">0.656 >> >> 811: > >> type="numeric/double">0.656 >> >> 17/26 Test #811: >> >> vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP >> >> ................***Failed 2.06 sec >> >> test 812 >> >> Start 812: >> >> vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel >> >> >> >> 812: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastPerspectiveParallel" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPerspectiveParallel.png" >> >> 812: Test timeout computed to be: 1500 >> >> 812: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 812: > >> type="numeric/double">5994.61> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPerspectiveParallel.png >> >> 812: Failed Image Test : 5994.61 >> >> 812: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPerspectiveParallel.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPerspectiveParallel.png> >> name="WallTime" type="numeric/double">0.156 >> >> 812: > >> type="numeric/double">0.156 >> >> 18/26 Test #812: >> >> vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel >> >> ................***Failed 0.70 sec >> >> test 813 >> >> Start 813: vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate >> >> >> >> 813: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastVolumeUpdate" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeUpdate.png" >> >> 813: Test timeout computed to be: 1500 >> >> 813: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 813: > >> type="numeric/double">0> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="WallTime" type="numeric/double">0.359 >> >> 813: > >> type="numeric/double">0.359 >> >> 19/26 Test #813: vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate >> >> ....................... Passed 58.96 sec >> >> test 818 >> >> Start 818: vtkRenderingVolumeCxx-TestGPURayCastClipping >> >> >> >> 818: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastClipping" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastClipping.png" >> >> 818: Test timeout computed to be: 1500 >> >> 818: > >> type="numeric/double">2142.49> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastClipping.png >> >> 818: Failed Image Test : 2142.49 >> >> 818: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastClipping.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastClipping.png> >> name="WallTime" type="numeric/double">0.156 >> >> 818: > >> type="numeric/double">0.156 >> >> 20/26 Test #818: vtkRenderingVolumeCxx-TestGPURayCastClipping >> >> ...........................***Failed 0.67 sec >> >> test 819 >> >> Start 819: vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity >> >> >> >> 819: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastGradientOpacity" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastGradientOpacity.png" >> >> 819: Test timeout computed to be: 1500 >> >> 819: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 819: > >> type="numeric/double">0> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="WallTime" type="numeric/double">0.265 >> >> 819: > >> type="numeric/double">0.266 >> >> 21/26 Test #819: vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity >> >> .................... Passed 0.78 sec >> >> test 820 >> >> Start 820: vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData >> >> >> >> 820: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastVolumePolyData" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumePolyData.png" >> >> 820: Test timeout computed to be: 1500 >> >> 820: > >> type="numeric/double">0> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="WallTime" type="numeric/double">0.578 >> >> 820: > >> type="numeric/double">0.578 >> >> 22/26 Test #820: vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData >> >> ..................... Passed 1.47 sec >> >> test 821 >> >> Start 821: vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation >> >> >> >> 821: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastVolumeRotation" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeRotation.png" >> >> 821: Test timeout computed to be: 1500 >> >> 821: > >> type="numeric/double">0> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="WallTime" type="numeric/double">0.188 >> >> 821: > >> type="numeric/double">0.187 >> >> 23/26 Test #821: vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation >> >> ..................... Passed 0.56 sec >> >> test 822 >> >> Start 822: vtkRenderingVolumeCxx-TestGPURayCastVolumeScale >> >> >> >> 822: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastVolumeScale" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeScale.png" >> >> 822: Test timeout computed to be: 1500 >> >> 822: > >> type="numeric/double">864.475> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeScale.png >> >> 822: Failed Image Test : 864.475 >> >> 822: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeScale.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeScale.png> >> name="WallTime" type="numeric/double">0.422 >> >> 822: > >> type="numeric/double">0.421 >> >> 24/26 Test #822: vtkRenderingVolumeCxx-TestGPURayCastVolumeScale >> >> ........................***Failed 1.11 sec >> >> test 823 >> >> Start 823: vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit >> >> >> >> 823: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastVolumeLightKit" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeLightKit.png" >> >> 823: Test timeout computed to be: 1500 >> >> 823: > >> type="numeric/double">5852.3> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeLightKit.png >> >> 823: Failed Image Test : 5852.3 >> >> 823: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeLightKit.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeLightKit.png> >> name="WallTime" type="numeric/double">0.172 >> >> 823: > >> type="numeric/double">0.172 >> >> 25/26 Test #823: vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit >> >> .....................***Failed 0.67 sec >> >> test 824 >> >> Start 824: vtkRenderingVolumeCxx-TestGPURayCastPositionalLights >> >> >> >> 824: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastPositionalLights" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPositionalLights.png" >> >> 824: Test timeout computed to be: 1500 >> >> 824: > >> type="numeric/double">1917.12> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPositionalLights.png >> >> 824: Failed Image Test : 1917.12 >> >> 824: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPositionalLights.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPositionalLights.png> >> name="WallTime" type="numeric/double">0.203 >> >> 824: > >> type="numeric/double">0.203 >> >> 26/26 Test #824: vtkRenderingVolumeCxx-TestGPURayCastPositionalLights >> >> ...................***Failed 1.00 sec >> >> >> >> The following tests passed: >> >> vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate >> >> vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity >> >> vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData >> >> vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation >> >> >> >> 15% tests passed, 22 tests failed out of 26 >> >> >> >> Total Test time (real) = 120.40 sec >> >> >> >> The following tests FAILED: >> >> 795 - vtkRenderingVolumeCxx-TestGPURayCastAdditive (Failed) >> >> 796 - vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask >> >> (Failed) >> >> 797 - vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend >> >> (Failed) >> >> 798 - vtkRenderingVolumeCxx-TestGPURayCastCompositeMask (Failed) >> >> 799 - vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP (Failed) >> >> 800 - vtkRenderingVolumeCxx-TestGPURayCastCropping (Failed) >> >> 801 - vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP (Failed) >> >> 802 - vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP (Failed) >> >> 803 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite >> >> (Failed) >> >> 804 - >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming >> >> (Failed) >> >> 805 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP >> >> (Failed) >> >> 806 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP >> >> (Failed) >> >> 807 - vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark (Failed) >> >> 808 - vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance >> >> (Failed) >> >> 809 - vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask (Failed) >> >> 810 - vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite (Failed) >> >> 811 - vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP >> >> (Failed) >> >> 812 - vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel >> >> (Failed) >> >> 818 - vtkRenderingVolumeCxx-TestGPURayCastClipping (Failed) >> >> 822 - vtkRenderingVolumeCxx-TestGPURayCastVolumeScale (Failed) >> >> 823 - vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit (Failed) >> >> 824 - vtkRenderingVolumeCxx-TestGPURayCastPositionalLights (Failed) >> >> >> >> >> >> >> >> On Thu, Jan 15, 2015 at 10:41 AM, Aashish Chaudhary >> >> wrote: >> >> > Thanks. Can you run just one test with -V options and send me that >> >> > output. I >> >> > am wondering something is failing texture wise (most likely 3D >> >> > texture) >> >> > which is causing the issue. >> >> > >> >> > - Aashish >> >> > >> >> > On Thu, Jan 15, 2015 at 10:20 AM, David Cole wrote: >> >> >> >> >> >> The machine does not have a publicly available way for you to >> >> >> connect... But I can try anything out for you on it, just let me >> >> >> know >> >> >> what you want me to try. >> >> >> >> >> >> The graphics is built-in Intel: Intel HD Graphics 2500, driver >> >> >> version >> >> >> 10.18.10.3621, OpenGL 4.0, OpenCL 1.2. >> >> >> >> >> >> What else do you need? >> >> >> >> >> >> thx, >> >> >> D >> >> >> >> >> >> >> >> >> >> >> >> On Thu, Jan 15, 2015 at 9:57 AM, Aashish Chaudhary >> >> >> wrote: >> >> >> > Thanks for pointing it out. Is this machine accesible to us? I am >> >> >> > not >> >> >> > seeing >> >> >> > these failures on our dashboards. The earliest I can look into it >> >> >> > is >> >> >> > this >> >> >> > evening. >> >> >> > >> >> >> > What intel graphics card this machine has? >> >> >> > >> >> >> > - Aashish >> >> >> > >> >> >> > On Thu, Jan 15, 2015 at 6:21 AM, David Cole >> >> >> > wrote: >> >> >> >> >> >> >> >> This build: >> >> >> >> https://open.cdash.org/buildSummary.php?buildid=3652134 >> >> >> >> >> >> >> >> with these updates: >> >> >> >> https://open.cdash.org/viewUpdate.php?buildid=3652134 >> >> >> >> >> >> >> >> introduced 22 new TestGPURayCast test failures: >> >> >> >> https://open.cdash.org/viewTest.php?onlydelta&buildid=3652134 >> >> >> >> >> >> >> >> This is an OpenGL2 build, running on low end built-in Intel >> >> >> >> graphics >> >> >> >> (with Windows 8.1)... >> >> >> >> >> >> >> >> Can you make the tests pass again on this machine like they were >> >> >> >> in >> >> >> >> the previous build...? >> >> >> >> >> >> >> >> >> >> >> >> Thanks, >> >> >> >> David C. >> >> >> > >> >> >> > >> >> >> > >> >> >> > >> >> >> > -- >> >> >> > | Aashish Chaudhary >> >> >> > | Technical Leader >> >> >> > | Kitware Inc. >> >> >> > | http://www.kitware.com/company/team/chaudhary.html >> >> > >> >> > >> >> > >> >> > >> >> > -- >> >> > | Aashish Chaudhary >> >> > | Technical Leader >> >> > | Kitware Inc. >> >> > | http://www.kitware.com/company/team/chaudhary.html >> > >> > >> > >> > >> > -- >> > | Aashish Chaudhary >> > | Technical Leader >> > | Kitware Inc. >> > | http://www.kitware.com/company/team/chaudhary.html > > > > > -- > | Aashish Chaudhary > | Technical Leader > | Kitware Inc. > | http://www.kitware.com/company/team/chaudhary.html From marcus.hanwell at kitware.com Thu Jan 29 14:47:21 2015 From: marcus.hanwell at kitware.com (Marcus D. Hanwell) Date: Thu, 29 Jan 2015 14:47:21 -0500 Subject: [vtk-developers] 22 new failing GPU tests on OpenGL2 dashboard In-Reply-To: References: Message-ID: On Thu, Jan 29, 2015 at 2:35 PM, David Cole wrote: > I've narrowed it down by using git bisect on the machine where the > tests actually fail. I would really like to see this stuff fixed to > work in this context before the official VTK 6.2 release. This is not > ready from my perspective. What else can I do to help out here? OpenGL2 rendering will be part of the 6.2 release, but we are not going to be calling it "ready" - it is a public beta while we get things finished up, and will not be the default rendering backend for VTK. It would be great to get this figured out, and if people want to adopt OpenGL2 rendering early then we will try to support them, but you shouldn't expect OpenGL2 to be ready for production at this stage. I think it is getting close. It seems that the HD4000+ Intel chipsets do not have this issue, and we don't have access to older chips here. Agreed on merging commits in that don't compile, they should either be squashed together into a single commit that does compile, or as they are made we should ensure they compile. This is a weakness in the testing infrastructure, and the onus is on the developer to ensure each commit compiles independently. Thanks for working on tracking this down further, hopefully we can get to the bottom of this but it looks like quite a few changes. Marcus From ken.martin at kitware.com Thu Jan 29 14:48:00 2015 From: ken.martin at kitware.com (Ken Martin) Date: Thu, 29 Jan 2015 14:48:00 -0500 Subject: [vtk-developers] 22 new failing GPU tests on OpenGL2 dashboard In-Reply-To: References: Message-ID: " I must admit, I'm a little bit disappointed that some of the commits in what was merged to VTK master don't even compile... I would hope we could be a bit less sloppy, and hold ourselves to a higher standard. Rushing something in before it's ready for prime time serves no one." I want to make sure I understand what you are saying. Are you saying in this case code was merged into master that did not compile? Or are you saying that someone did multiple commits, some of which did not compile, but they were not pushed or merged until it did compile? Thanks Ken Ken Martin PhD Chairman & CFO Kitware Inc. 28 Corporate Drive Clifton Park NY 12065 ken.martin at kitware.com 518 881-4901 (w) 518 371-4573 (f) This communication, including all attachments, contains confidential and legally privileged information, and it is intended only for the use of the addressee. Access to this email by anyone else is unauthorized. If you are not the intended recipient, any disclosure, copying, distribution or any action taken in reliance on it is prohibited and may be unlawful. If you received this communication in error please notify us immediately and destroy the original message. Thank you. -----Original Message----- From: David Cole [mailto:DLRdave at aol.com] Sent: Thursday, January 29, 2015 2:36 PM To: Aashish Chaudhary Cc: vtkdev; Sankhesh Jhaveri; Ken Martin; Marcus Hanwell Subject: Re: 22 new failing GPU tests on OpenGL2 dashboard I've narrowed it down by using git bisect on the machine where the tests actually fail. I would really like to see this stuff fixed to work in this context before the official VTK 6.2 release. This is not ready from my perspective. What else can I do to help out here? Here are the results of the git bisect: git log --oneline 13abfb73^..be72f94c be72f94 ENH: Convert noise and depth textures to use texture object --> builds, and has a leak, but texture does not render This is the first commit that compiles, and runs enough to demonstrate the problem 275d348 Initial null value for pointer --> builds, but *crashes* when you run the test a4e8dc6 ENH: Make sure the new API for opacity tables is supported by mapper --> builds, but *crashes* when you run the test 8a8b190 ENH: Use vtkTextureObject for gradient opacity table --> does not even build, compiler error 65ff2f8 ENH: Use texture object for opacity tables --> does not even build, compiler error 13abfb7 Minor semantic changes --> This was the last good build, where the textures actually worked, and running the GPURayCast tests pass... I must admit, I'm a little bit disappointed that some of the commits in what was merged to VTK master don't even compile... I would hope we could be a bit less sloppy, and hold ourselves to a higher standard. Rushing something in before it's ready for prime time serves no one. Let me know if I can assist you further in figuring out the best fix moving forward. Thanks, David C. On Fri, Jan 16, 2015 at 11:53 AM, Aashish Chaudhary wrote: > I think I got a machine like that -:) (A gift from Kitware). I will > resurrect it. > > - Aashish > > On Fri, Jan 16, 2015 at 11:48 AM, David Cole wrote: >> >> Sure -- no problem, take your time. >> >> This should be reproducible on any Windows machine using built-in >> Intel GPU without a "real" graphics card... Happens on my laptop, too. >> (i.e. -- any "cheap" sub $1000 Windows box, like the kind you see at >> Target, Costco and Best Buy...) >> >> >> On Fri, Jan 16, 2015 at 11:41 AM, Aashish Chaudhary >> wrote: >> > Thanks for all the information. I am working on one fix anyways. What I >> > will >> > do is that I will push a branch that will dump few more things on the >> > console that we can capture on your machine >> > in case I cannot find a way to replicate on our systems. Allow me a >> > day >> > to >> > do that. >> > >> > Thanks, >> > >> > >> > On Fri, Jan 16, 2015 at 11:30 AM, David Cole wrote: >> >> >> >> I ran: >> >> >> >> C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug> ctest -R "GPURayCast" >> >> -VV > GPURayCastTests.txt >> >> >> >> Errors while running CTest >> >> >> >> Whatever is failing is not very informative on the console output... I >> >> don't see any errors reported other than the test failures due to >> >> image differences. The ones that fail do not render any volume at all, >> >> just the background color of the render window. >> >> >> >> Let me know if you'd rather have it as a text file attachment, or if >> >> there is anything else I can try on this machine for you. >> >> >> >> Thanks, >> >> David C. >> >> >> >> >> >> And here is the verbose output: >> >> >> >> UpdateCTestConfiguration from :C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/DartConfiguration.tcl >> >> Parse Config file:C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/DartConfiguration.tcl >> >> Add coverage exclude regular expressions. >> >> Add coverage exclude: vtk.*TCLInit.cxx >> >> Add coverage exclude: vtk[^\.]+(Java|Python|Tcl).cxx >> >> Add coverage exclude: .*vtkOpenGLState.* >> >> Add coverage exclude: .*Testing.Cxx.*cxx >> >> Add coverage exclude: .*Testing.Cxx.*h >> >> Add coverage exclude: .*moc_.*cxx >> >> Add coverage exclude: .*/Rendering/OpenGL/vtkgl.* >> >> Add coverage exclude: .*/Utilities/.* >> >> Add coverage exclude: .*/ThirdParty/.* >> >> Add coverage exclude: .*vtkOpenGLPolyDataMapper.* >> >> SetCTestConfiguration:CMakeCommand:C:/Program Files >> >> (x86)/CMake/bin/cmake.exe >> >> UpdateCTestConfiguration from :C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/DartConfiguration.tcl >> >> Parse Config file:C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/DartConfiguration.tcl >> >> Test project C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug >> >> Constructing a list of tests >> >> Done constructing a list of tests >> >> Checking test dependency graph... >> >> Checking test dependency graph end >> >> test 795 >> >> Start 795: vtkRenderingVolumeCxx-TestGPURayCastAdditive >> >> >> >> 795: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastAdditive" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastAdditive.png" >> >> 795: Test timeout computed to be: 1500 >> >> 795: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 795: > >> type="numeric/double">3462.57> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastAdditive.png >> >> 795: Failed Image Test : 3462.57 >> >> 795: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastAdditive.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastAdditive.png> >> name="WallTime" type="numeric/double">0.25 >> >> 795: > >> type="numeric/double">0.25 >> >> 1/26 Test #795: vtkRenderingVolumeCxx-TestGPURayCastAdditive >> >> ...........................***Failed 1.02 sec >> >> test 796 >> >> Start 796: >> >> vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask >> >> >> >> 796: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastCompositeBinaryMask" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeBinaryMask.png" >> >> 796: Test timeout computed to be: 1500 >> >> 796: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 796: > >> type="numeric/double">3046.61> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeBinaryMask.png >> >> 796: Failed Image Test : 3046.61 >> >> 796: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeBinaryMask.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeBinaryMask.png> >> name="WallTime" type="numeric/double">0.156 >> >> 796: > >> type="numeric/double">0.156 >> >> 2/26 Test #796: >> >> vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask >> >> ................***Failed 2.42 sec >> >> test 797 >> >> Start 797: >> >> vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend >> >> >> >> 797: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastCompositeMaskBlend" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMaskBlend.png" >> >> 797: Test timeout computed to be: 1500 >> >> 797: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 797: > >> type="numeric/double">3395.8> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMaskBlend.png >> >> 797: Failed Image Test : 3395.8 >> >> 797: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMaskBlend.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMaskBlend.png> >> name="WallTime" type="numeric/double">0.14 >> >> 797: > >> type="numeric/double">0.141 >> >> 3/26 Test #797: >> >> vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend >> >> .................***Failed 0.58 sec >> >> test 798 >> >> Start 798: vtkRenderingVolumeCxx-TestGPURayCastCompositeMask >> >> >> >> 798: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastCompositeMask" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMask.png" >> >> 798: Test timeout computed to be: 1500 >> >> 798: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 798: > >> type="numeric/double">4265.66> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMask.png >> >> 798: Failed Image Test : 4265.66 >> >> 798: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMask.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMask.png> >> name="WallTime" type="numeric/double">0.297 >> >> 798: > >> type="numeric/double">0.297 >> >> 4/26 Test #798: vtkRenderingVolumeCxx-TestGPURayCastCompositeMask >> >> ......................***Failed 0.81 sec >> >> test 799 >> >> Start 799: vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP >> >> >> >> 799: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastCompositeToMIP" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeToMIP.png" >> >> 799: Test timeout computed to be: 1500 >> >> 799: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 799: > >> type="numeric/double">6482.66> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeToMIP.png >> >> 799: Failed Image Test : 6482.66 >> >> 799: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeToMIP.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeToMIP.png> >> name="WallTime" type="numeric/double">0.172 >> >> 799: > >> type="numeric/double">0.171 >> >> 5/26 Test #799: vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP >> >> .....................***Failed 0.73 sec >> >> test 800 >> >> Start 800: vtkRenderingVolumeCxx-TestGPURayCastCropping >> >> >> >> 800: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastCropping" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCropping.png" >> >> 800: Test timeout computed to be: 1500 >> >> 800: > >> type="numeric/double">9580.46> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCropping.png >> >> 800: Failed Image Test : 9580.46 >> >> 800: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCropping.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCropping.png> >> name="WallTime" type="numeric/double">0.766 >> >> 800: > >> type="numeric/double">0.765 >> >> 6/26 Test #800: vtkRenderingVolumeCxx-TestGPURayCastCropping >> >> ...........................***Failed 1.98 sec >> >> test 801 >> >> Start 801: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP >> >> >> >> 801: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastDataTypesMinIP" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMinIP.png" >> >> 801: Test timeout computed to be: 1500 >> >> 801: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 801: range=16,255 >> >> 801: > >> type="numeric/double">7915.92> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMinIP.png >> >> 801: Failed Image Test : 7915.92 >> >> 801: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMinIP.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMinIP.png> >> name="WallTime" type="numeric/double">0.687 >> >> 801: > >> type="numeric/double">0.687 >> >> 7/26 Test #801: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP >> >> .....................***Failed 2.13 sec >> >> test 802 >> >> Start 802: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP >> >> >> >> 802: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastDataTypesMIP" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMIP.png" >> >> 802: Test timeout computed to be: 1500 >> >> 802: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 802: > >> type="numeric/double">4006.97> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMIP.png >> >> 802: Failed Image Test : 4006.97 >> >> 802: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMIP.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMIP.png> >> name="WallTime" type="numeric/double">0.656 >> >> 802: > >> type="numeric/double">0.656 >> >> 8/26 Test #802: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP >> >> .......................***Failed 2.02 sec >> >> test 803 >> >> Start 803: >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite >> >> >> >> 803: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastFourComponentsComposite" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsComposite.png" >> >> 803: Test timeout computed to be: 1500 >> >> 803: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 803: > >> type="numeric/double">1595.46> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsComposite.png >> >> 803: Failed Image Test : 1595.46 >> >> 803: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsComposite.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsComposite.png> >> name="WallTime" type="numeric/double">0.172 >> >> 803: > >> type="numeric/double">0.172 >> >> 9/26 Test #803: >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite >> >> ............***Failed 0.72 sec >> >> test 804 >> >> Start 804: >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming >> >> >> >> 804: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastFourComponentsCompositeStreaming" "-D" >> >> "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" >> >> "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" >> >> "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsCompositeStreaming.png" >> >> 804: Test timeout computed to be: 1500 >> >> 804: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 804: Memory usage for the ImageData=16Mb >> >> 804: Dims of the ImageData=575x101x75=4Mb >> >> 804: > >> type="numeric/double">1591.24> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsCompositeStreaming.png >> >> 804: Failed Image Test : 1591.24 >> >> 804: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsCompositeStreaming.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsCompositeStreaming.png> >> name="WallTime" type="numeric/double">0.172 >> >> 804: > >> type="numeric/double">0.172 >> >> 10/26 Test #804: >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming >> >> ...***Failed 0.98 sec >> >> test 805 >> >> Start 805: >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP >> >> >> >> 805: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastFourComponentsMinIP" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMinIP.png" >> >> 805: Test timeout computed to be: 1500 >> >> 805: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 805: > >> type="numeric/double">716.884> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMinIP.png >> >> 805: Failed Image Test : 716.884 >> >> 805: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMinIP.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMinIP.png> >> name="WallTime" type="numeric/double">0.172 >> >> 805: > >> type="numeric/double">0.172 >> >> 11/26 Test #805: >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP >> >> ................***Failed 0.61 sec >> >> test 806 >> >> Start 806: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP >> >> >> >> 806: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastFourComponentsMIP" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMIP.png" >> >> 806: Test timeout computed to be: 1500 >> >> 806: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 806: > >> type="numeric/double">4195.87> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMIP.png >> >> 806: Failed Image Test : 4195.87 >> >> 806: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMIP.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMIP.png> >> name="WallTime" type="numeric/double">0.125 >> >> 806: > >> type="numeric/double">0.125 >> >> 12/26 Test #806: vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP >> >> ..................***Failed 0.55 sec >> >> test 807 >> >> Start 807: vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark >> >> >> >> 807: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastMapperBenchmark" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperBenchmark.png" >> >> 807: Test timeout computed to be: 1500 >> >> 807: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 807: First Render Time: 0.515 >> >> 807: Interactive Render Time: 0.13821 >> >> 807: > >> type="numeric/double">25683.8> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperBenchmark.png >> >> 807: Failed Image Test : 25683.8 >> >> 807: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperBenchmark.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperBenchmark.png> >> name="WallTime" type="numeric/double">0.187 >> >> 807: > >> type="numeric/double">0.188 >> >> 13/26 Test #807: vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark >> >> ....................***Failed 33.31 sec >> >> test 808 >> >> Start 808: >> >> vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance >> >> >> >> 808: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastMapperSampleDistance" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperSampleDistance.png" >> >> 808: Test timeout computed to be: 1500 >> >> 808: > >> type="numeric/double">25710.4> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperSampleDistance.png >> >> 808: Failed Image Test : 25710.4 >> >> 808: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperSampleDistance.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperSampleDistance.png> >> name="WallTime" type="numeric/double">0.157 >> >> 808: > >> type="numeric/double">0.156 >> >> 14/26 Test #808: >> >> vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance >> >> ...............***Failed 2.70 sec >> >> test 809 >> >> Start 809: vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask >> >> >> >> 809: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastMIPBinaryMask" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPBinaryMask.png" >> >> 809: Test timeout computed to be: 1500 >> >> 809: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 809: > >> type="numeric/double">4846.07> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPBinaryMask.png >> >> 809: Failed Image Test : 4846.07 >> >> 809: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPBinaryMask.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPBinaryMask.png> >> name="WallTime" type="numeric/double">0.14 >> >> 809: > >> type="numeric/double">0.14 >> >> 15/26 Test #809: vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask >> >> ......................***Failed 0.44 sec >> >> test 810 >> >> Start 810: vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite >> >> >> >> 810: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastMIPToComposite" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPToComposite.png" >> >> 810: Test timeout computed to be: 1500 >> >> 810: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 810: > >> type="numeric/double">5734.58> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPToComposite.png >> >> 810: Failed Image Test : 5734.58 >> >> 810: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPToComposite.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPToComposite.png> >> name="WallTime" type="numeric/double">0.157 >> >> 810: > >> type="numeric/double">0.156 >> >> 16/26 Test #810: vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite >> >> .....................***Failed 0.73 sec >> >> test 811 >> >> Start 811: >> >> vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP >> >> >> >> 811: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastNearestDataTypesMIP" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastNearestDataTypesMIP.png" >> >> 811: Test timeout computed to be: 1500 >> >> 811: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 811: > >> type="numeric/double">6187.06> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastNearestDataTypesMIP.png >> >> 811: Failed Image Test : 6187.06 >> >> 811: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastNearestDataTypesMIP.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastNearestDataTypesMIP.png> >> name="WallTime" type="numeric/double">0.656 >> >> 811: > >> type="numeric/double">0.656 >> >> 17/26 Test #811: >> >> vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP >> >> ................***Failed 2.06 sec >> >> test 812 >> >> Start 812: >> >> vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel >> >> >> >> 812: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastPerspectiveParallel" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPerspectiveParallel.png" >> >> 812: Test timeout computed to be: 1500 >> >> 812: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 812: > >> type="numeric/double">5994.61> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPerspectiveParallel.png >> >> 812: Failed Image Test : 5994.61 >> >> 812: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPerspectiveParallel.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPerspectiveParallel.png> >> name="WallTime" type="numeric/double">0.156 >> >> 812: > >> type="numeric/double">0.156 >> >> 18/26 Test #812: >> >> vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel >> >> ................***Failed 0.70 sec >> >> test 813 >> >> Start 813: vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate >> >> >> >> 813: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastVolumeUpdate" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeUpdate.png" >> >> 813: Test timeout computed to be: 1500 >> >> 813: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 813: > >> type="numeric/double">0> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="WallTime" type="numeric/double">0.359 >> >> 813: > >> type="numeric/double">0.359 >> >> 19/26 Test #813: vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate >> >> ....................... Passed 58.96 sec >> >> test 818 >> >> Start 818: vtkRenderingVolumeCxx-TestGPURayCastClipping >> >> >> >> 818: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastClipping" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastClipping.png" >> >> 818: Test timeout computed to be: 1500 >> >> 818: > >> type="numeric/double">2142.49> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastClipping.png >> >> 818: Failed Image Test : 2142.49 >> >> 818: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastClipping.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastClipping.png> >> name="WallTime" type="numeric/double">0.156 >> >> 818: > >> type="numeric/double">0.156 >> >> 20/26 Test #818: vtkRenderingVolumeCxx-TestGPURayCastClipping >> >> ...........................***Failed 0.67 sec >> >> test 819 >> >> Start 819: vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity >> >> >> >> 819: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastGradientOpacity" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastGradientOpacity.png" >> >> 819: Test timeout computed to be: 1500 >> >> 819: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) >> >> 819: > >> type="numeric/double">0> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="WallTime" type="numeric/double">0.265 >> >> 819: > >> type="numeric/double">0.266 >> >> 21/26 Test #819: vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity >> >> .................... Passed 0.78 sec >> >> test 820 >> >> Start 820: vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData >> >> >> >> 820: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastVolumePolyData" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumePolyData.png" >> >> 820: Test timeout computed to be: 1500 >> >> 820: > >> type="numeric/double">0> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="WallTime" type="numeric/double">0.578 >> >> 820: > >> type="numeric/double">0.578 >> >> 22/26 Test #820: vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData >> >> ..................... Passed 1.47 sec >> >> test 821 >> >> Start 821: vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation >> >> >> >> 821: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastVolumeRotation" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeRotation.png" >> >> 821: Test timeout computed to be: 1500 >> >> 821: > >> type="numeric/double">0> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="WallTime" type="numeric/double">0.188 >> >> 821: > >> type="numeric/double">0.187 >> >> 23/26 Test #821: vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation >> >> ..................... Passed 0.56 sec >> >> test 822 >> >> Start 822: vtkRenderingVolumeCxx-TestGPURayCastVolumeScale >> >> >> >> 822: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastVolumeScale" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeScale.png" >> >> 822: Test timeout computed to be: 1500 >> >> 822: > >> type="numeric/double">864.475> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeScale.png >> >> 822: Failed Image Test : 864.475 >> >> 822: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeScale.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeScale.png> >> name="WallTime" type="numeric/double">0.422 >> >> 822: > >> type="numeric/double">0.421 >> >> 24/26 Test #822: vtkRenderingVolumeCxx-TestGPURayCastVolumeScale >> >> ........................***Failed 1.11 sec >> >> test 823 >> >> Start 823: vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit >> >> >> >> 823: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastVolumeLightKit" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeLightKit.png" >> >> 823: Test timeout computed to be: 1500 >> >> 823: > >> type="numeric/double">5852.3> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeLightKit.png >> >> 823: Failed Image Test : 5852.3 >> >> 823: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeLightKit.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeLightKit.png> >> name="WallTime" type="numeric/double">0.172 >> >> 823: > >> type="numeric/double">0.172 >> >> 25/26 Test #823: vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit >> >> .....................***Failed 0.67 sec >> >> test 824 >> >> Start 824: vtkRenderingVolumeCxx-TestGPURayCastPositionalLights >> >> >> >> 824: Test command: "C:\n\d\Nightly\VTK >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" >> >> "TestGPURayCastPositionalLights" "-D" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" "C:/n/d/Nightly/VTK >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPositionalLights.png" >> >> 824: Test timeout computed to be: 1500 >> >> 824: > >> type="numeric/double">1917.12> >> name="BaselineImage" >> >> type="text/string">Standard> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPositionalLights.png >> >> 824: Failed Image Test : 1917.12 >> >> 824: > >> type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPositionalLights.diff.png> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK >> >> >> >> >> >> Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPositionalLights.png> >> name="WallTime" type="numeric/double">0.203 >> >> 824: > >> type="numeric/double">0.203 >> >> 26/26 Test #824: vtkRenderingVolumeCxx-TestGPURayCastPositionalLights >> >> ...................***Failed 1.00 sec >> >> >> >> The following tests passed: >> >> vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate >> >> vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity >> >> vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData >> >> vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation >> >> >> >> 15% tests passed, 22 tests failed out of 26 >> >> >> >> Total Test time (real) = 120.40 sec >> >> >> >> The following tests FAILED: >> >> 795 - vtkRenderingVolumeCxx-TestGPURayCastAdditive (Failed) >> >> 796 - vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask >> >> (Failed) >> >> 797 - vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend >> >> (Failed) >> >> 798 - vtkRenderingVolumeCxx-TestGPURayCastCompositeMask (Failed) >> >> 799 - vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP (Failed) >> >> 800 - vtkRenderingVolumeCxx-TestGPURayCastCropping (Failed) >> >> 801 - vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP (Failed) >> >> 802 - vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP (Failed) >> >> 803 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite >> >> (Failed) >> >> 804 - >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming >> >> (Failed) >> >> 805 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP >> >> (Failed) >> >> 806 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP >> >> (Failed) >> >> 807 - vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark (Failed) >> >> 808 - vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance >> >> (Failed) >> >> 809 - vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask (Failed) >> >> 810 - vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite (Failed) >> >> 811 - vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP >> >> (Failed) >> >> 812 - vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel >> >> (Failed) >> >> 818 - vtkRenderingVolumeCxx-TestGPURayCastClipping (Failed) >> >> 822 - vtkRenderingVolumeCxx-TestGPURayCastVolumeScale (Failed) >> >> 823 - vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit (Failed) >> >> 824 - vtkRenderingVolumeCxx-TestGPURayCastPositionalLights >> >> (Failed) >> >> >> >> >> >> >> >> On Thu, Jan 15, 2015 at 10:41 AM, Aashish Chaudhary >> >> wrote: >> >> > Thanks. Can you run just one test with -V options and send me that >> >> > output. I >> >> > am wondering something is failing texture wise (most likely 3D >> >> > texture) >> >> > which is causing the issue. >> >> > >> >> > - Aashish >> >> > >> >> > On Thu, Jan 15, 2015 at 10:20 AM, David Cole >> >> > wrote: >> >> >> >> >> >> The machine does not have a publicly available way for you to >> >> >> connect... But I can try anything out for you on it, just let me >> >> >> know >> >> >> what you want me to try. >> >> >> >> >> >> The graphics is built-in Intel: Intel HD Graphics 2500, driver >> >> >> version >> >> >> 10.18.10.3621, OpenGL 4.0, OpenCL 1.2. >> >> >> >> >> >> What else do you need? >> >> >> >> >> >> thx, >> >> >> D >> >> >> >> >> >> >> >> >> >> >> >> On Thu, Jan 15, 2015 at 9:57 AM, Aashish Chaudhary >> >> >> wrote: >> >> >> > Thanks for pointing it out. Is this machine accesible to us? I am >> >> >> > not >> >> >> > seeing >> >> >> > these failures on our dashboards. The earliest I can look into it >> >> >> > is >> >> >> > this >> >> >> > evening. >> >> >> > >> >> >> > What intel graphics card this machine has? >> >> >> > >> >> >> > - Aashish >> >> >> > >> >> >> > On Thu, Jan 15, 2015 at 6:21 AM, David Cole >> >> >> > wrote: >> >> >> >> >> >> >> >> This build: >> >> >> >> https://open.cdash.org/buildSummary.php?buildid=3652134 >> >> >> >> >> >> >> >> with these updates: >> >> >> >> https://open.cdash.org/viewUpdate.php?buildid=3652134 >> >> >> >> >> >> >> >> introduced 22 new TestGPURayCast test failures: >> >> >> >> https://open.cdash.org/viewTest.php?onlydelta&buildid=3652134 >> >> >> >> >> >> >> >> This is an OpenGL2 build, running on low end built-in Intel >> >> >> >> graphics >> >> >> >> (with Windows 8.1)... >> >> >> >> >> >> >> >> Can you make the tests pass again on this machine like they were >> >> >> >> in >> >> >> >> the previous build...? >> >> >> >> >> >> >> >> >> >> >> >> Thanks, >> >> >> >> David C. >> >> >> > >> >> >> > >> >> >> > >> >> >> > >> >> >> > -- >> >> >> > | Aashish Chaudhary >> >> >> > | Technical Leader >> >> >> > | Kitware Inc. >> >> >> > | http://www.kitware.com/company/team/chaudhary.html >> >> > >> >> > >> >> > >> >> > >> >> > -- >> >> > | Aashish Chaudhary >> >> > | Technical Leader >> >> > | Kitware Inc. >> >> > | http://www.kitware.com/company/team/chaudhary.html >> > >> > >> > >> > >> > -- >> > | Aashish Chaudhary >> > | Technical Leader >> > | Kitware Inc. >> > | http://www.kitware.com/company/team/chaudhary.html > > > > > -- > | Aashish Chaudhary > | Technical Leader > | Kitware Inc. > | http://www.kitware.com/company/team/chaudhary.html From aashish.chaudhary at kitware.com Thu Jan 29 14:50:14 2015 From: aashish.chaudhary at kitware.com (Aashish Chaudhary) Date: Thu, 29 Jan 2015 14:50:14 -0500 Subject: [vtk-developers] 22 new failing GPU tests on OpenGL2 dashboard In-Reply-To: References: Message-ID: On Thu, Jan 29, 2015 at 2:35 PM, David Cole wrote: > I've narrowed it down by using git bisect on the machine where the > tests actually fail. I would really like to see this stuff fixed to > work in this context before the official VTK 6.2 release. This is not > ready from my perspective. What else can I do to help out here? > > Here are the results of the git bisect: > > git log --oneline 13abfb73^..be72f94c > > be72f94 ENH: Convert noise and depth textures to use texture object > --> builds, and has a leak, but texture does not render > This is the first commit that compiles, and runs enough > to demonstrate the problem > > 275d348 Initial null value for pointer > --> builds, but *crashes* when you run the test > > a4e8dc6 ENH: Make sure the new API for opacity tables is supported by > mapper > --> builds, but *crashes* when you run the test > > 8a8b190 ENH: Use vtkTextureObject for gradient opacity table > --> does not even build, compiler error > > 65ff2f8 ENH: Use texture object for opacity tables > --> does not even build, compiler error > > 13abfb7 Minor semantic changes > --> This was the last good build, where the textures actually worked, > and running the GPURayCast tests pass... > Dave, This is very helpful information. We had some other priorities for volume rendering and we didn't spent time on re-surrecting the issue that you are having on a older intel chipset. > I must admit, I'm a little bit disappointed that some of the commits > in what was merged to VTK master don't even compile... The ones prefixed with *ENH:* are from Sankhesh I believe. I think he builds and test the code on his Linux box but I don't have more information on whether on it built on his system. > I would hope we > could be a bit less sloppy, and hold ourselves to a higher standard. > Rushing something in before it's ready for prime time serves no one. > If you referring to crash, then I am not convinced because we cannot run 50+ tests after each commit. If we want to do that then probably we should setup travis CI like system. If you are referring to the build, then yes, its not allowed to have build failures but again travis ci like system would help there too am I am not entirely sure if that was the case on Linux system. Hope it makes sense. Without further information its hard for me say something concrete. > > Let me know if I can assist you further in figuring out the best fix > moving forward. > Sure, I need to push some more volume stuff today / tomorrow after that I will look in this issue. So far I am not able to reproduce this. Thanks, Aashish > > > Thanks, > David C. > > > > > On Fri, Jan 16, 2015 at 11:53 AM, Aashish Chaudhary > wrote: > > I think I got a machine like that -:) (A gift from Kitware). I will > > resurrect it. > > > > - Aashish > > > > On Fri, Jan 16, 2015 at 11:48 AM, David Cole wrote: > >> > >> Sure -- no problem, take your time. > >> > >> This should be reproducible on any Windows machine using built-in > >> Intel GPU without a "real" graphics card... Happens on my laptop, too. > >> (i.e. -- any "cheap" sub $1000 Windows box, like the kind you see at > >> Target, Costco and Best Buy...) > >> > >> > >> On Fri, Jan 16, 2015 at 11:41 AM, Aashish Chaudhary > >> wrote: > >> > Thanks for all the information. I am working on one fix anyways. What > I > >> > will > >> > do is that I will push a branch that will dump few more things on the > >> > console that we can capture on your machine > >> > in case I cannot find a way to replicate on our systems. Allow me a > day > >> > to > >> > do that. > >> > > >> > Thanks, > >> > > >> > > >> > On Fri, Jan 16, 2015 at 11:30 AM, David Cole wrote: > >> >> > >> >> I ran: > >> >> > >> >> C:\n\d\Nightly\VTK Win32-ninja-cl12-Debug> ctest -R "GPURayCast" > >> >> -VV > GPURayCastTests.txt > >> >> > >> >> Errors while running CTest > >> >> > >> >> Whatever is failing is not very informative on the console output... > I > >> >> don't see any errors reported other than the test failures due to > >> >> image differences. The ones that fail do not render any volume at > all, > >> >> just the background color of the render window. > >> >> > >> >> Let me know if you'd rather have it as a text file attachment, or if > >> >> there is anything else I can try on this machine for you. > >> >> > >> >> Thanks, > >> >> David C. > >> >> > >> >> > >> >> And here is the verbose output: > >> >> > >> >> UpdateCTestConfiguration from :C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/DartConfiguration.tcl > >> >> Parse Config file:C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/DartConfiguration.tcl > >> >> Add coverage exclude regular expressions. > >> >> Add coverage exclude: vtk.*TCLInit.cxx > >> >> Add coverage exclude: vtk[^\.]+(Java|Python|Tcl).cxx > >> >> Add coverage exclude: .*vtkOpenGLState.* > >> >> Add coverage exclude: .*Testing.Cxx.*cxx > >> >> Add coverage exclude: .*Testing.Cxx.*h > >> >> Add coverage exclude: .*moc_.*cxx > >> >> Add coverage exclude: .*/Rendering/OpenGL/vtkgl.* > >> >> Add coverage exclude: .*/Utilities/.* > >> >> Add coverage exclude: .*/ThirdParty/.* > >> >> Add coverage exclude: .*vtkOpenGLPolyDataMapper.* > >> >> SetCTestConfiguration:CMakeCommand:C:/Program Files > >> >> (x86)/CMake/bin/cmake.exe > >> >> UpdateCTestConfiguration from :C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/DartConfiguration.tcl > >> >> Parse Config file:C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/DartConfiguration.tcl > >> >> Test project C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug > >> >> Constructing a list of tests > >> >> Done constructing a list of tests > >> >> Checking test dependency graph... > >> >> Checking test dependency graph end > >> >> test 795 > >> >> Start 795: vtkRenderingVolumeCxx-TestGPURayCastAdditive > >> >> > >> >> 795: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastAdditive" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastAdditive.png" > >> >> 795: Test timeout computed to be: 1500 > >> >> 795: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> >> 795: >> >> type="numeric/double">3462.57 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastAdditive.png > >> >> 795: Failed Image Test : 3462.57 > >> >> 795: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastAdditive.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastAdditive.png >> >> name="WallTime" type="numeric/double">0.25 > >> >> 795: >> >> type="numeric/double">0.25 > >> >> 1/26 Test #795: vtkRenderingVolumeCxx-TestGPURayCastAdditive > >> >> ...........................***Failed 1.02 sec > >> >> test 796 > >> >> Start 796: > >> >> vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask > >> >> > >> >> 796: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastCompositeBinaryMask" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeBinaryMask.png" > >> >> 796: Test timeout computed to be: 1500 > >> >> 796: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> >> 796: >> >> type="numeric/double">3046.61 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeBinaryMask.png > >> >> 796: Failed Image Test : 3046.61 > >> >> 796: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeBinaryMask.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeBinaryMask.png >> >> name="WallTime" type="numeric/double">0.156 > >> >> 796: >> >> type="numeric/double">0.156 > >> >> 2/26 Test #796: > >> >> vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask > >> >> ................***Failed 2.42 sec > >> >> test 797 > >> >> Start 797: > vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend > >> >> > >> >> 797: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastCompositeMaskBlend" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMaskBlend.png" > >> >> 797: Test timeout computed to be: 1500 > >> >> 797: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> >> 797: >> >> type="numeric/double">3395.8 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMaskBlend.png > >> >> 797: Failed Image Test : 3395.8 > >> >> 797: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMaskBlend.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMaskBlend.png >> >> name="WallTime" type="numeric/double">0.14 > >> >> 797: >> >> type="numeric/double">0.141 > >> >> 3/26 Test #797: > >> >> vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend > >> >> .................***Failed 0.58 sec > >> >> test 798 > >> >> Start 798: vtkRenderingVolumeCxx-TestGPURayCastCompositeMask > >> >> > >> >> 798: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastCompositeMask" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMask.png" > >> >> 798: Test timeout computed to be: 1500 > >> >> 798: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> >> 798: >> >> type="numeric/double">4265.66 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMask.png > >> >> 798: Failed Image Test : 4265.66 > >> >> 798: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeMask.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeMask.png >> >> name="WallTime" type="numeric/double">0.297 > >> >> 798: >> >> type="numeric/double">0.297 > >> >> 4/26 Test #798: vtkRenderingVolumeCxx-TestGPURayCastCompositeMask > >> >> ......................***Failed 0.81 sec > >> >> test 799 > >> >> Start 799: vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP > >> >> > >> >> 799: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastCompositeToMIP" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeToMIP.png" > >> >> 799: Test timeout computed to be: 1500 > >> >> 799: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> >> 799: >> >> type="numeric/double">6482.66 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeToMIP.png > >> >> 799: Failed Image Test : 6482.66 > >> >> 799: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCompositeToMIP.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCompositeToMIP.png >> >> name="WallTime" type="numeric/double">0.172 > >> >> 799: >> >> type="numeric/double">0.171 > >> >> 5/26 Test #799: vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP > >> >> .....................***Failed 0.73 sec > >> >> test 800 > >> >> Start 800: vtkRenderingVolumeCxx-TestGPURayCastCropping > >> >> > >> >> 800: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastCropping" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCropping.png" > >> >> 800: Test timeout computed to be: 1500 > >> >> 800: >> >> type="numeric/double">9580.46 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCropping.png > >> >> 800: Failed Image Test : 9580.46 > >> >> 800: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastCropping.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastCropping.png >> >> name="WallTime" type="numeric/double">0.766 > >> >> 800: >> >> type="numeric/double">0.765 > >> >> 6/26 Test #800: vtkRenderingVolumeCxx-TestGPURayCastCropping > >> >> ...........................***Failed 1.98 sec > >> >> test 801 > >> >> Start 801: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP > >> >> > >> >> 801: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastDataTypesMinIP" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMinIP.png" > >> >> 801: Test timeout computed to be: 1500 > >> >> 801: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> >> 801: range=16,255 > >> >> 801: >> >> type="numeric/double">7915.92 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMinIP.png > >> >> 801: Failed Image Test : 7915.92 > >> >> 801: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMinIP.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMinIP.png >> >> name="WallTime" type="numeric/double">0.687 > >> >> 801: >> >> type="numeric/double">0.687 > >> >> 7/26 Test #801: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP > >> >> .....................***Failed 2.13 sec > >> >> test 802 > >> >> Start 802: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP > >> >> > >> >> 802: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastDataTypesMIP" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMIP.png" > >> >> 802: Test timeout computed to be: 1500 > >> >> 802: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> >> 802: >> >> type="numeric/double">4006.97 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMIP.png > >> >> 802: Failed Image Test : 4006.97 > >> >> 802: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastDataTypesMIP.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastDataTypesMIP.png >> >> name="WallTime" type="numeric/double">0.656 > >> >> 802: >> >> type="numeric/double">0.656 > >> >> 8/26 Test #802: vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP > >> >> .......................***Failed 2.02 sec > >> >> test 803 > >> >> Start 803: > >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite > >> >> > >> >> 803: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastFourComponentsComposite" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsComposite.png" > >> >> 803: Test timeout computed to be: 1500 > >> >> 803: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> >> 803: >> >> type="numeric/double">1595.46 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsComposite.png > >> >> 803: Failed Image Test : 1595.46 > >> >> 803: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsComposite.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsComposite.png >> >> name="WallTime" type="numeric/double">0.172 > >> >> 803: >> >> type="numeric/double">0.172 > >> >> 9/26 Test #803: > >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite > >> >> ............***Failed 0.72 sec > >> >> test 804 > >> >> Start 804: > >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming > >> >> > >> >> 804: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastFourComponentsCompositeStreaming" "-D" > >> >> "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/ExternalData//Testing" > "-T" > >> >> "C:/n/d/Nightly/VTK Win32-ninja-cl12-Debug/Testing/Temporary" "-V" > >> >> "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsCompositeStreaming.png" > >> >> 804: Test timeout computed to be: 1500 > >> >> 804: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> >> 804: Memory usage for the ImageData=16Mb > >> >> 804: Dims of the ImageData=575x101x75=4Mb > >> >> 804: >> >> type="numeric/double">1591.24 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsCompositeStreaming.png > >> >> 804: Failed Image Test : 1591.24 > >> >> 804: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsCompositeStreaming.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsCompositeStreaming.png >> >> name="WallTime" type="numeric/double">0.172 > >> >> 804: >> >> type="numeric/double">0.172 > >> >> 10/26 Test #804: > >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming > >> >> ...***Failed 0.98 sec > >> >> test 805 > >> >> Start 805: > >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP > >> >> > >> >> 805: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastFourComponentsMinIP" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMinIP.png" > >> >> 805: Test timeout computed to be: 1500 > >> >> 805: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> >> 805: >> >> type="numeric/double">716.884 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMinIP.png > >> >> 805: Failed Image Test : 716.884 > >> >> 805: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMinIP.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMinIP.png >> >> name="WallTime" type="numeric/double">0.172 > >> >> 805: >> >> type="numeric/double">0.172 > >> >> 11/26 Test #805: > >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP > >> >> ................***Failed 0.61 sec > >> >> test 806 > >> >> Start 806: > vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP > >> >> > >> >> 806: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastFourComponentsMIP" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMIP.png" > >> >> 806: Test timeout computed to be: 1500 > >> >> 806: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> >> 806: >> >> type="numeric/double">4195.87 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMIP.png > >> >> 806: Failed Image Test : 4195.87 > >> >> 806: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastFourComponentsMIP.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastFourComponentsMIP.png >> >> name="WallTime" type="numeric/double">0.125 > >> >> 806: >> >> type="numeric/double">0.125 > >> >> 12/26 Test #806: > vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP > >> >> ..................***Failed 0.55 sec > >> >> test 807 > >> >> Start 807: vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark > >> >> > >> >> 807: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastMapperBenchmark" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperBenchmark.png" > >> >> 807: Test timeout computed to be: 1500 > >> >> 807: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> >> 807: First Render Time: 0.515 > >> >> 807: Interactive Render Time: 0.13821 > >> >> 807: >> >> type="numeric/double">25683.8 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperBenchmark.png > >> >> 807: Failed Image Test : 25683.8 > >> >> 807: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperBenchmark.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperBenchmark.png >> >> name="WallTime" type="numeric/double">0.187 > >> >> 807: >> >> type="numeric/double">0.188 > >> >> 13/26 Test #807: vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark > >> >> ....................***Failed 33.31 sec > >> >> test 808 > >> >> Start 808: > >> >> vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance > >> >> > >> >> 808: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastMapperSampleDistance" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperSampleDistance.png" > >> >> 808: Test timeout computed to be: 1500 > >> >> 808: >> >> type="numeric/double">25710.4 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperSampleDistance.png > >> >> 808: Failed Image Test : 25710.4 > >> >> 808: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMapperSampleDistance.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMapperSampleDistance.png >> >> name="WallTime" type="numeric/double">0.157 > >> >> 808: >> >> type="numeric/double">0.156 > >> >> 14/26 Test #808: > >> >> vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance > >> >> ...............***Failed 2.70 sec > >> >> test 809 > >> >> Start 809: vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask > >> >> > >> >> 809: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastMIPBinaryMask" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPBinaryMask.png" > >> >> 809: Test timeout computed to be: 1500 > >> >> 809: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> >> 809: >> >> type="numeric/double">4846.07 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPBinaryMask.png > >> >> 809: Failed Image Test : 4846.07 > >> >> 809: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPBinaryMask.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPBinaryMask.png >> >> name="WallTime" type="numeric/double">0.14 > >> >> 809: >> >> type="numeric/double">0.14 > >> >> 15/26 Test #809: vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask > >> >> ......................***Failed 0.44 sec > >> >> test 810 > >> >> Start 810: vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite > >> >> > >> >> 810: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastMIPToComposite" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPToComposite.png" > >> >> 810: Test timeout computed to be: 1500 > >> >> 810: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> >> 810: >> >> type="numeric/double">5734.58 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPToComposite.png > >> >> 810: Failed Image Test : 5734.58 > >> >> 810: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastMIPToComposite.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastMIPToComposite.png >> >> name="WallTime" type="numeric/double">0.157 > >> >> 810: >> >> type="numeric/double">0.156 > >> >> 16/26 Test #810: vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite > >> >> .....................***Failed 0.73 sec > >> >> test 811 > >> >> Start 811: > >> >> vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP > >> >> > >> >> 811: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastNearestDataTypesMIP" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastNearestDataTypesMIP.png" > >> >> 811: Test timeout computed to be: 1500 > >> >> 811: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> >> 811: >> >> type="numeric/double">6187.06 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastNearestDataTypesMIP.png > >> >> 811: Failed Image Test : 6187.06 > >> >> 811: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastNearestDataTypesMIP.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastNearestDataTypesMIP.png >> >> name="WallTime" type="numeric/double">0.656 > >> >> 811: >> >> type="numeric/double">0.656 > >> >> 17/26 Test #811: > >> >> vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP > >> >> ................***Failed 2.06 sec > >> >> test 812 > >> >> Start 812: > >> >> vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel > >> >> > >> >> 812: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastPerspectiveParallel" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPerspectiveParallel.png" > >> >> 812: Test timeout computed to be: 1500 > >> >> 812: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> >> 812: >> >> type="numeric/double">5994.61 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPerspectiveParallel.png > >> >> 812: Failed Image Test : 5994.61 > >> >> 812: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPerspectiveParallel.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPerspectiveParallel.png >> >> name="WallTime" type="numeric/double">0.156 > >> >> 812: >> >> type="numeric/double">0.156 > >> >> 18/26 Test #812: > >> >> vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel > >> >> ................***Failed 0.70 sec > >> >> test 813 > >> >> Start 813: vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate > >> >> > >> >> 813: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastVolumeUpdate" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeUpdate.png" > >> >> 813: Test timeout computed to be: 1500 > >> >> 813: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> >> 813: >> >> type="numeric/double">0 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="WallTime" type="numeric/double">0.359 > >> >> 813: >> >> type="numeric/double">0.359 > >> >> 19/26 Test #813: vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate > >> >> ....................... Passed 58.96 sec > >> >> test 818 > >> >> Start 818: vtkRenderingVolumeCxx-TestGPURayCastClipping > >> >> > >> >> 818: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastClipping" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastClipping.png" > >> >> 818: Test timeout computed to be: 1500 > >> >> 818: >> >> type="numeric/double">2142.49 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastClipping.png > >> >> 818: Failed Image Test : 2142.49 > >> >> 818: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastClipping.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastClipping.png >> >> name="WallTime" type="numeric/double">0.156 > >> >> 818: >> >> type="numeric/double">0.156 > >> >> 20/26 Test #818: vtkRenderingVolumeCxx-TestGPURayCastClipping > >> >> ...........................***Failed 0.67 sec > >> >> test 819 > >> >> Start 819: vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity > >> >> > >> >> 819: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastGradientOpacity" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastGradientOpacity.png" > >> >> 819: Test timeout computed to be: 1500 > >> >> 819: CTEST_FULL_OUTPUT (Avoid ctest truncation of output) > >> >> 819: >> >> type="numeric/double">0 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="WallTime" type="numeric/double">0.265 > >> >> 819: >> >> type="numeric/double">0.266 > >> >> 21/26 Test #819: vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity > >> >> .................... Passed 0.78 sec > >> >> test 820 > >> >> Start 820: vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData > >> >> > >> >> 820: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastVolumePolyData" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumePolyData.png" > >> >> 820: Test timeout computed to be: 1500 > >> >> 820: >> >> type="numeric/double">0 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="WallTime" type="numeric/double">0.578 > >> >> 820: >> >> type="numeric/double">0.578 > >> >> 22/26 Test #820: vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData > >> >> ..................... Passed 1.47 sec > >> >> test 821 > >> >> Start 821: vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation > >> >> > >> >> 821: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastVolumeRotation" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeRotation.png" > >> >> 821: Test timeout computed to be: 1500 > >> >> 821: >> >> type="numeric/double">0 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="WallTime" type="numeric/double">0.188 > >> >> 821: >> >> type="numeric/double">0.187 > >> >> 23/26 Test #821: vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation > >> >> ..................... Passed 0.56 sec > >> >> test 822 > >> >> Start 822: vtkRenderingVolumeCxx-TestGPURayCastVolumeScale > >> >> > >> >> 822: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastVolumeScale" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeScale.png" > >> >> 822: Test timeout computed to be: 1500 > >> >> 822: >> >> type="numeric/double">864.475 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeScale.png > >> >> 822: Failed Image Test : 864.475 > >> >> 822: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeScale.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeScale.png >> >> name="WallTime" type="numeric/double">0.422 > >> >> 822: >> >> type="numeric/double">0.421 > >> >> 24/26 Test #822: vtkRenderingVolumeCxx-TestGPURayCastVolumeScale > >> >> ........................***Failed 1.11 sec > >> >> test 823 > >> >> Start 823: vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit > >> >> > >> >> 823: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastVolumeLightKit" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeLightKit.png" > >> >> 823: Test timeout computed to be: 1500 > >> >> 823: >> >> type="numeric/double">5852.3 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeLightKit.png > >> >> 823: Failed Image Test : 5852.3 > >> >> 823: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastVolumeLightKit.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastVolumeLightKit.png >> >> name="WallTime" type="numeric/double">0.172 > >> >> 823: >> >> type="numeric/double">0.172 > >> >> 25/26 Test #823: vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit > >> >> .....................***Failed 0.67 sec > >> >> test 824 > >> >> Start 824: vtkRenderingVolumeCxx-TestGPURayCastPositionalLights > >> >> > >> >> 824: Test command: "C:\n\d\Nightly\VTK > >> >> Win32-ninja-cl12-Debug\bin\vtkRenderingVolumeCxxTests.exe" > >> >> "TestGPURayCastPositionalLights" "-D" "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/ExternalData//Testing" "-T" > "C:/n/d/Nightly/VTK > >> >> Win32-ninja-cl12-Debug/Testing/Temporary" "-V" "C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPositionalLights.png" > >> >> 824: Test timeout computed to be: 1500 > >> >> 824: >> >> type="numeric/double">1917.12 >> >> name="BaselineImage" > >> >> type="text/string">Standard >> >> name="TestImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPositionalLights.png > >> >> 824: Failed Image Test : 1917.12 > >> >> 824: >> >> type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/Testing/Temporary/TestGPURayCastPositionalLights.diff.png >> >> name="ValidImage" type="image/png">C:/n/d/Nightly/VTK > >> >> > >> >> > >> >> > Win32-ninja-cl12-Debug/ExternalData/Rendering/Volume/Testing/Data/Baseline/TestGPURayCastPositionalLights.png >> >> name="WallTime" type="numeric/double">0.203 > >> >> 824: >> >> type="numeric/double">0.203 > >> >> 26/26 Test #824: vtkRenderingVolumeCxx-TestGPURayCastPositionalLights > >> >> ...................***Failed 1.00 sec > >> >> > >> >> The following tests passed: > >> >> vtkRenderingVolumeCxx-TestGPURayCastVolumeUpdate > >> >> vtkRenderingVolumeCxx-TestGPURayCastGradientOpacity > >> >> vtkRenderingVolumeCxx-TestGPURayCastVolumePolyData > >> >> vtkRenderingVolumeCxx-TestGPURayCastVolumeRotation > >> >> > >> >> 15% tests passed, 22 tests failed out of 26 > >> >> > >> >> Total Test time (real) = 120.40 sec > >> >> > >> >> The following tests FAILED: > >> >> 795 - vtkRenderingVolumeCxx-TestGPURayCastAdditive (Failed) > >> >> 796 - vtkRenderingVolumeCxx-TestGPURayCastCompositeBinaryMask > >> >> (Failed) > >> >> 797 - vtkRenderingVolumeCxx-TestGPURayCastCompositeMaskBlend > >> >> (Failed) > >> >> 798 - vtkRenderingVolumeCxx-TestGPURayCastCompositeMask (Failed) > >> >> 799 - vtkRenderingVolumeCxx-TestGPURayCastCompositeToMIP (Failed) > >> >> 800 - vtkRenderingVolumeCxx-TestGPURayCastCropping (Failed) > >> >> 801 - vtkRenderingVolumeCxx-TestGPURayCastDataTypesMinIP (Failed) > >> >> 802 - vtkRenderingVolumeCxx-TestGPURayCastDataTypesMIP (Failed) > >> >> 803 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsComposite > >> >> (Failed) > >> >> 804 - > >> >> vtkRenderingVolumeCxx-TestGPURayCastFourComponentsCompositeStreaming > >> >> (Failed) > >> >> 805 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMinIP > >> >> (Failed) > >> >> 806 - vtkRenderingVolumeCxx-TestGPURayCastFourComponentsMIP > >> >> (Failed) > >> >> 807 - vtkRenderingVolumeCxx-TestGPURayCastMapperBenchmark > (Failed) > >> >> 808 - vtkRenderingVolumeCxx-TestGPURayCastMapperSampleDistance > >> >> (Failed) > >> >> 809 - vtkRenderingVolumeCxx-TestGPURayCastMIPBinaryMask (Failed) > >> >> 810 - vtkRenderingVolumeCxx-TestGPURayCastMIPToComposite (Failed) > >> >> 811 - vtkRenderingVolumeCxx-TestGPURayCastNearestDataTypesMIP > >> >> (Failed) > >> >> 812 - vtkRenderingVolumeCxx-TestGPURayCastPerspectiveParallel > >> >> (Failed) > >> >> 818 - vtkRenderingVolumeCxx-TestGPURayCastClipping (Failed) > >> >> 822 - vtkRenderingVolumeCxx-TestGPURayCastVolumeScale (Failed) > >> >> 823 - vtkRenderingVolumeCxx-TestGPURayCastVolumeLightKit (Failed) > >> >> 824 - vtkRenderingVolumeCxx-TestGPURayCastPositionalLights > (Failed) > >> >> > >> >> > >> >> > >> >> On Thu, Jan 15, 2015 at 10:41 AM, Aashish Chaudhary > >> >> wrote: > >> >> > Thanks. Can you run just one test with -V options and send me that > >> >> > output. I > >> >> > am wondering something is failing texture wise (most likely 3D > >> >> > texture) > >> >> > which is causing the issue. > >> >> > > >> >> > - Aashish > >> >> > > >> >> > On Thu, Jan 15, 2015 at 10:20 AM, David Cole > wrote: > >> >> >> > >> >> >> The machine does not have a publicly available way for you to > >> >> >> connect... But I can try anything out for you on it, just let me > >> >> >> know > >> >> >> what you want me to try. > >> >> >> > >> >> >> The graphics is built-in Intel: Intel HD Graphics 2500, driver > >> >> >> version > >> >> >> 10.18.10.3621, OpenGL 4.0, OpenCL 1.2. > >> >> >> > >> >> >> What else do you need? > >> >> >> > >> >> >> thx, > >> >> >> D > >> >> >> > >> >> >> > >> >> >> > >> >> >> On Thu, Jan 15, 2015 at 9:57 AM, Aashish Chaudhary > >> >> >> wrote: > >> >> >> > Thanks for pointing it out. Is this machine accesible to us? I > am > >> >> >> > not > >> >> >> > seeing > >> >> >> > these failures on our dashboards. The earliest I can look into > it > >> >> >> > is > >> >> >> > this > >> >> >> > evening. > >> >> >> > > >> >> >> > What intel graphics card this machine has? > >> >> >> > > >> >> >> > - Aashish > >> >> >> > > >> >> >> > On Thu, Jan 15, 2015 at 6:21 AM, David Cole > >> >> >> > wrote: > >> >> >> >> > >> >> >> >> This build: > >> >> >> >> https://open.cdash.org/buildSummary.php?buildid=3652134 > >> >> >> >> > >> >> >> >> with these updates: > >> >> >> >> https://open.cdash.org/viewUpdate.php?buildid=3652134 > >> >> >> >> > >> >> >> >> introduced 22 new TestGPURayCast test failures: > >> >> >> >> https://open.cdash.org/viewTest.php?onlydelta&buildid=3652134 > >> >> >> >> > >> >> >> >> This is an OpenGL2 build, running on low end built-in Intel > >> >> >> >> graphics > >> >> >> >> (with Windows 8.1)... > >> >> >> >> > >> >> >> >> Can you make the tests pass again on this machine like they > were > >> >> >> >> in > >> >> >> >> the previous build...? > >> >> >> >> > >> >> >> >> > >> >> >> >> Thanks, > >> >> >> >> David C. > >> >> >> > > >> >> >> > > >> >> >> > > >> >> >> > > >> >> >> > -- > >> >> >> > | Aashish Chaudhary > >> >> >> > | Technical Leader > >> >> >> > | Kitware Inc. > >> >> >> > | http://www.kitware.com/company/team/chaudhary.html > >> >> > > >> >> > > >> >> > > >> >> > > >> >> > -- > >> >> > | Aashish Chaudhary > >> >> > | Technical Leader > >> >> > | Kitware Inc. > >> >> > | http://www.kitware.com/company/team/chaudhary.html > >> > > >> > > >> > > >> > > >> > -- > >> > | Aashish Chaudhary > >> > | Technical Leader > >> > | Kitware Inc. > >> > | http://www.kitware.com/company/team/chaudhary.html > > > > > > > > > > -- > > | Aashish Chaudhary > > | Technical Leader > > | Kitware Inc. > > | http://www.kitware.com/company/team/chaudhary.html > -- *| Aashish Chaudhary | Technical Leader | Kitware Inc. * *| http://www.kitware.com/company/team/chaudhary.html * -------------- next part -------------- An HTML attachment was scrubbed... URL: From DLRdave at aol.com Thu Jan 29 14:59:30 2015 From: DLRdave at aol.com (David Cole) Date: Thu, 29 Jan 2015 14:59:30 -0500 Subject: [vtk-developers] 22 new failing GPU tests on OpenGL2 dashboard In-Reply-To: References: Message-ID: On Thu, Jan 29, 2015 at 2:48 PM, Ken Martin wrote: > " I must admit, I'm a little bit disappointed that some of the commits > in what was merged to VTK master don't even compile... I would hope we > could be a bit less sloppy, and hold ourselves to a higher standard. > Rushing something in before it's ready for prime time serves no one." > > I want to make sure I understand what you are saying. Are you saying in this > case code was merged into master that did not compile? Or are you saying > that someone did multiple commits, some of which did not compile, but they > were not pushed or merged until it did compile? > Multiple commits, merged all at once, some of the intermediate commits did not compile. It just made it so git bisect could not narrow it down to a single commit. Don't worry, I'm just whining because it's Thursday, and I haven't gotten enough done this week yet... Hopefully the info I provided will help Aashish to figure out what change caused the problem here and actually lead us to a fix. Thx, D From aashish.chaudhary at kitware.com Thu Jan 29 15:02:50 2015 From: aashish.chaudhary at kitware.com (Aashish Chaudhary) Date: Thu, 29 Jan 2015 15:02:50 -0500 Subject: [vtk-developers] 22 new failing GPU tests on OpenGL2 dashboard In-Reply-To: References: Message-ID: No problem Dave. I am looking into it. The info you provided helped. Sorry you are having trouble with the latest changes. - Aashish On Thu, Jan 29, 2015 at 2:59 PM, David Cole wrote: > On Thu, Jan 29, 2015 at 2:48 PM, Ken Martin > wrote: > > " I must admit, I'm a little bit disappointed that some of the commits > > in what was merged to VTK master don't even compile... I would hope we > > could be a bit less sloppy, and hold ourselves to a higher standard. > > Rushing something in before it's ready for prime time serves no one." > > > > I want to make sure I understand what you are saying. Are you saying in > this > > case code was merged into master that did not compile? Or are you saying > > that someone did multiple commits, some of which did not compile, but > they > > were not pushed or merged until it did compile? > > > > Multiple commits, merged all at once, some of the intermediate commits > did not compile. It just made it so git bisect could not narrow it > down to a single commit. > > Don't worry, I'm just whining because it's Thursday, and I haven't > gotten enough done this week yet... Hopefully the info I provided will > help Aashish to figure out what change caused the problem here and > actually lead us to a fix. > > Thx, > D > -- *| Aashish Chaudhary | Technical Leader | Kitware Inc. * *| http://www.kitware.com/company/team/chaudhary.html * -------------- next part -------------- An HTML attachment was scrubbed... URL: From ben.boeckel at kitware.com Thu Jan 29 16:01:01 2015 From: ben.boeckel at kitware.com (Ben Boeckel) Date: Thu, 29 Jan 2015 16:01:01 -0500 Subject: [vtk-developers] 22 new failing GPU tests on OpenGL2 dashboard In-Reply-To: References: Message-ID: <20150129210101.GA16304@megas.kitwarein.com> On Thu, Jan 29, 2015 at 14:48:00 -0500, Ken Martin wrote: > " I must admit, I'm a little bit disappointed that some of the commits > in what was merged to VTK master don't even compile... I would hope we > could be a bit less sloppy, and hold ourselves to a higher standard. > Rushing something in before it's ready for prime time serves no one." > > I want to make sure I understand what you are saying. Are you saying in this > case code was merged into master that did not compile? Or are you saying > that someone did multiple commits, some of which did not compile, but they > were not pushed or merged until it did compile? FWIW, I have a script I use to ensure this for long-lived branches: ======= #!/bin/sh base="${1:-master}" shift GIT_EDITOR="sed -i -e '/^pick/p;/^pick/cexec ./build.sh'" export GIT_EDITOR exec git rebase -i "$( git merge-base HEAD "$base" )" ======= A 'build.sh' script (provided by you) is run after each commit and stops on any commit which fails to build. --Ben