Go to file
Allison Vacanti ab10ff3bf2 Merge topic 'warning_fix'
40441e78 Fix some additional warnings.
a90afa5a Clean up warnings introduced by recent benchmark modifications.

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !976
2017-10-23 13:29:01 -04:00
CMake Fix VTK-m version for tarball in another git repository 2017-10-19 11:41:30 -06:00
data Add sample input 2017-09-06 14:05:15 -06:00
docs Remove exports for header-only functions/methods 2016-11-15 22:22:13 -07:00
examples Add missing headers to examples. 2017-10-02 12:33:30 -04:00
Utilities Add python script that diffs VTKM benchmarks. 2017-09-26 16:49:25 -04:00
vtkm Fix some additional warnings. 2017-10-23 11:48:19 -04:00
.clang-format Allow clang-format to pass more empty lines 2017-05-31 09:35:26 -06:00
.gitattributes Ignore whitespace in markdown files as they mean something 2017-07-07 11:14:25 -04:00
CMakeLists.txt Clean up install/VTK issues in VTKmConfig.cmake. 2017-10-03 11:28:15 -04:00
CONTRIBUTING.md Remove dead link from CONTRIBUTING 2017-09-19 15:24:57 -06:00
CTestConfig.cmake Update copyright for Sandia 2017-09-20 15:33:44 -06:00
CTestCustom.cmake.in Update copyright for Sandia 2017-09-20 15:33:44 -06:00
LICENSE.txt Update copyright for Sandia 2017-09-20 15:33:44 -06:00
README.md Combine ResultField + ResultDataSet into Result. 2017-08-11 08:25:42 -04:00
version.txt Add warning if git version disagrees with version.txt 2017-01-26 10:08:45 -07:00

VTK-m

VTK-m is a toolkit of scientific visualization algorithms for emerging processor architectures. VTK-m supports the fine-grained concurrency for data analysis and visualization algorithms required to drive extreme scale computing by providing abstract models for data and execution that can be applied to a variety of algorithms across many different processor architectures.

You can find out more about the design of VTK-m on our wiki

Example

The VTK-m source distribution includes a number of examples. The goal of the VTK-m examples is to illustrate specific VTK-m concepts in a consistent and simple format. However, these examples only cover a small part of the capabilities of VTK-m.

Below is a simple example of using VTK-m to load a VTK image file, run the Marching Cubes algorithm on it, and render the results to an image:

vtkm::io::reader::VTKDataSetReader reader("path/to/vtk_image_file");
inputData = reader.ReadDataSet();

vtkm::Float64 isovalue = 100.0f;
std::string fieldName = "pointvar";

// Create an isosurface filter
vtkm::filter::MarchingCubes filter;
filter.SetIsoValue(0, isovalue);
vtkm::filter::Result result = filter.Execute( inputData,
                                              inputData.GetField(fieldName) );
filter.MapFieldOntoOutput(result, inputData.GetField(fieldName));

// compute the bounds and extends of the input data
vtkm::Bounds coordsBounds = inputData.GetCoordinateSystem().GetBounds();
vtkm::Vec<vtkm::Float64,3> totalExtent( coordsBounds.X.Length(),
                                        coordsBounds.Y.Length(),
                                        coordsBounds.Z.Length() );
vtkm::Float64 mag = vtkm::Magnitude(totalExtent);
vtkm::Normalize(totalExtent);

// setup a camera and point it to towards the center of the input data
vtkm::rendering::Camera camera;
camera.ResetToBounds(coordsBounds);

camera.SetLookAt(totalExtent*(mag * .5f));
camera.SetViewUp(vtkm::make_Vec(0.f, 1.f, 0.f));
camera.SetClippingRange(1.f, 100.f);
camera.SetFieldOfView(60.f);
camera.SetPosition(totalExtent*(mag * 2.f));
vtkm::rendering::ColorTable colorTable("thermal");

// Create a mapper, canvas and view that will be used to render the scene
vtkm::rendering::Scene scene;
vtkm::rendering::MapperRayTracer mapper;
vtkm::rendering::CanvasRayTracer canvas(512, 512);
vtkm::rendering::Color bg(0.2f, 0.2f, 0.2f, 1.0f);

// Render an image of the output isosurface
vtkm::cont::DataSet& outputData = result.GetDataSet();
scene.AddActor(vtkm::rendering::Actor(outputData.GetCellSet(),
                                      outputData.GetCoordinateSystem(),
                                      outputData.GetField(fieldName),
                                      colorTable));
vtkm::rendering::View3D view(scene, mapper, canvas, camera, bg);
view.Initialize();
view.Paint();
view.SaveAs("demo_output.pnm");

Learning

VTK-m offers numerous different ways to learn how to use the provided components. If you are interested in a high level overview of VTK-m a good place to start is with the IEEE Vis talk "VTK-m: Accelerating the Visualization Toolkit for Massively Threaded Architectures" or the older and more technical presentation "VTK-m Overview for Intel Design Review".

If you are interested in learning how to use the existing VTK-m codebase, or how to integrate into your own project, we recommend reading "Part 1: Getting Started" and "Part 2: Using VTK-m" of the VTK-m Users Guide.

If you want to contribute to VTK-m we recommend reading the following sections of the VTK-m Users Guide.

  • "Part 2: Using VTK-m"
    • Covers the core fundamental components of VTK-m including data model, worklets, and filters.
  • "Part 3: Developing with VTK-m"
    • Covers how to develop new worklets and filters.
  • "Part 4: Advanced Development"
    • Covers topics such as new worklet tags, opengl interop and custom device adapters .

Contributing

There are many ways to contribute to VTK-m, with varying levels of effort.

Dependencies

VTK-m Requires:

  • C++11 Compiler. VTK-m has been confirmed to work with the following
  • GCC 4.8+
  • Clang 3.3+
  • XCode 5.0+
  • MSVC 2013+
  • CMake 3.3

Optional dependencies are:

  • CUDA Device Adapter
  • TBB Device Adapter
  • Rendering Module
    • The rendering module requires that you have a extension binding library
      and one rendering library. A windowing library is not needed expect
      for some optional tests.
    • Extension Binding
    • Rendering Canvas
      • OpenGL Driver (See your GPU/iGPU vendor)
      • EGL (See your GPU/iGPU vendor)
      • OSMesa
    • Windowing/Contexts
      • EGL (See your GPU/iGPU vendor)
      • GLFW
      • GLUT

Building

VTK-m supports all majors platforms ( Windows, Linux, OSX ), and uses CMake to generate all the build rules for the project.

$ git clone https://gitlab.kitware.com/vtk/vtk-m.git
$ mkdir vtkm-build
$ cd vtkm-build
$ cmake-gui ../vtk-m
$ make -j<N>
$ make test

The VTK-m CMake configuration supports several options, including what specific device adapters ( e.g. CUDA, TBB ) that you wish to enable. Here are some relevant options

Variable Description
BUILD_SHARED_LIBS Enabled by default. Build all VTK-m libraries as shared libraries.
CMAKE_BUILD_TYPE This statically specifies what build type (configuration) will be built in this build tree. Possible values are empty, Debug, Release, RelWithDebInfo and MinSizeRel. This variable is only meaningful to single-configuration generators (such as make and Ninja).
CMAKE_INSTALL_PREFIX Directory to install VTK-m into.
VTKm_ENABLE_EXAMPLES Disabled by default. Turn on building of simple examples of using VTK-m.
VTKm_ENABLE_BENCHMARKS Disabled by default. Turn on additional timing tests.
VTKm_ENABLE_CUDA Disabled by default. Enable CUDA backend.
VTKm_CUDA_Architecture Defaults to native. Specify what GPU architecture(s) to build CUDA code for, options include native, fermi, kepler, maxwell, pascal, and volta.
VTKm_ENABLE_TBB Disabled by default. Enable Intel Threading Building Blocks backend.
VTKm_ENABLE_TESTING Enabled by default. Turn on header, unit, worklet, and filter tests.
VTKm_ENABLE_RENDERING Enabled by default. Turn on the rendering module.
VTKm_USE_64BIT_IDS Enabled by default. This is the size of integers used to index arrays, points, cells, etc. Use 64 bit precision when on, 32 bit precision when off.
VTKm_USE_DOUBLE_PRECISION Disabled by default. Precision to use in floating point numbers when no other precision can be inferred. Use 64 bit precision when on, 32 bit precision when off.

License

VTK-m is distributed under the OSI-approved BSD 3-clause License. See LICENSE.txt for details.