torch.CreationOpSchema
export interface CreationOpSchema<Name extends string = string> {
readonly kind: 'creation';
readonly name: Name;
}Nameextends string- readonly
kind('creation') - readonly
name(Name)
Schema for creation operations.
Creation operations create new tensors without input tensors. Examples: zeros, ones, randn, rand, arange, etc.