Learn R Programming

shard (version 0.1.0)

shards_list: Create Shards from an Explicit Index List

Description

Constructs a shard_descriptor from a user-supplied list of index vectors. This is useful for non-contiguous workloads like searchlights/feature sets where each shard operates on an arbitrary subset.

Usage

shards_list(idxs)

Value

A shard_descriptor list describing the chunk layout.

Arguments

idxs

List of integer vectors (1-based indices). Each element becomes one shard with fields id, idx, and len.

Examples

Run this code
sh <- shards_list(list(1:10, 11:20, 21:30))
length(sh)

Run the code above in your browser using DataLab