Shortcuts

Struct Dim3

Struct Documentation

struct ripple::detail::Dim3

The Dim3 class is stores information about the size/index in 3 dimensions.

This is a wrapper class to prvide the same functionality as cuda’s dim3.

Public Functions

constexpr auto set(size_t value) noexcept -> void

Sets the indices to the given constant value.

Parameters
  • value: The value to set the indices to.

constexpr auto reset() noexcept -> void

Resets the value of the thread indices to zero.

Public Members

size_t x = 0

x value.

size_t y = 0

y value.

size_t z = 0

z value.

Docs

Access comprehensive developer documentation for Ripple

View Docs

Tutorials

Get tutorials to help with understand all features

View Tutorials

Examples

Find examples to help get started

View Examples