mkl::rng::device::skip_ahead

Proceed state of engine by the skip-ahead method.

Syntax

The mkl::rng::device::skip_ahead function supports the following interfaces to apply the skip-ahead method:

Common Interface

template<typename_Engine>

void skip_ahead (Engine& engine, std::uint64_t num_to_skip);

Interface with a partitioned number of skipped elements

template<typename_Engine>

void skip_ahead (Engine& engine, std::initializer_list<std::uint64_t> num_to_skip);

Include Files

Template Parameters

Common Interface

Name

Type

Description

engine

Engine&

Object of engine class, which supports the block-splitting method.

num_to_skip

std::uint64_t

Number of skipped elements.

Interface with a Partitioned Number of Skipped Elements

Name

Type

Description

engine

Engine&

Object of engine class, which supports the block-splitting method.

num_to_skip

std::initializer_list<std::uint64_t>

Partitioned number of skipped elements.