export declare const NVIDIA_DOCS_LABEL = "NVIDIA docs"; export declare const STALL_SOURCE_URL = "https://docs.nvidia.com/nsight-compute/ProfilingGuide/index.html#warp-stall-reasons"; export declare const SASS_SOURCE_URL = "https://docs.nvidia.com/cuda/cuda-binary-utilities/index.html#instruction-set-reference"; export interface StallEntry { reasonLabel: string; description: string; sourceUrl?: string; } export interface SASSEntry { reasonLabel: string; description: string; sourceUrl?: string; } export declare const SASS_INSTRUCTION_DESCRIPTIONS: Record; export declare const STALL_REASON_DESCRIPTIONS: Record; export type GpuFrameInfo = { kind: 'sass'; entry: SASSEntry; sourceLabel: string; sourceUrl: string; } | { kind: 'stall'; entry: StallEntry; sourceLabel: string; sourceUrl: string; }; export declare const CUDA_SASS_INSTRUCTION_LABEL = "cuda_sass_instruction"; export declare const CUDA_STALL_REASON_LABEL = "cuda_stall_reason"; export declare function gpuFrameInfo(name: string): GpuFrameInfo | undefined; export declare function gpuFrameInfosFromLabels(labelPairs: Array<[string, string]>): GpuFrameInfo[]; //# sourceMappingURL=gpuFrameDescriptions.d.ts.map