VTK/Multicore and Streaming: Difference between revisions
From KitwarePublic
< VTK
Jump to navigationJump to search
mNo edit summary |
|||
Line 13: | Line 13: | ||
* Need to subclass the composite data pipeline with support for temporal data. | * Need to subclass the composite data pipeline with support for temporal data. | ||
* | * | ||
== GraphViz Test == | |||
<graphviz> | |||
digraph proto2_pipeline | |||
{ | |||
overlap="False"; | |||
node[shape=box, style=filled, fontname=Helvetica, fontsize="10" colorscheme=set33 fillcolor=1] | |||
edge[fontname=Helvetica fontsize="10"] | |||
// Streaming pipeling ... | |||
vtkStreamer [fillcolor="#55ff55"] | |||
vtkFoo [fillcolor="#55ff55"] | |||
vtkBar [fillcolor="#55ff55"] | |||
view1 [label="View 1 (Clustered Documents)", fillcolor=2] | |||
vtkStreamer -> vtkFoo [label="Pieces"] | |||
vtkFoo -> vtkBar [label="Data"] | |||
vtkBar->view1 [label="Table"] | |||
} | |||
</graphviz> |
Revision as of 15:39, 10 June 2009
Multicore and Streaming
Background
This page is to act as a facilitator for current efforts in adding advanced multicore and streaming functionality into the VTK framework. We will be building on some past work by others, and this page is meant to facilitate discussion and collaboration of those contributing via a number of synergistic research efforts.
Discussions
Meeting 9 June 2009
- Brian would like to have the pipelines on the wiki along with the papers now that the reviews are complete.
- Brian does not care about the papers! :)
- Berk would like to modify Huy's current changes (in git) to leverage the existing streaming classes in vtk. Huy indicated that the current streamers require extents calculation, which might not always be available. Berk suggested that we look at using pieces instead of extents.
- Need to subclass the composite data pipeline with support for temporal data.
GraphViz Test