torch.tx.EfficientOptions
export interface EfficientOptions {
/** Output tensor to write result to (avoids allocation) */
out?: AnyTensor;
/** Buffer pool to use for intermediates */
pool?: BufferPool;
/** Enable debug logging */
debug?: boolean;
}out(AnyTensor)optional- – Output tensor to write result to (avoids allocation)
pool(BufferPool)optional- – Buffer pool to use for intermediates
debug(boolean)optional- – Enable debug logging
Options for efficient evaluation.