menu

ProgramOptions

import { ProgramOptions } from "destack:compute";

Compile options for one compute program.

language/library/src/compute/program.ds:62:71
1export struct ProgramOptions {2    label: string;3    entries: [string];4    debug: boolean;5}

Members

label: string

Debug label.

entries: [string]

Entry point names to retain when provided.

debug: boolean

Whether to keep backend debug information.