torch.ShapeOpSchema
export interface ShapeOpSchema<Name extends string = string> {
readonly kind: 'shape';
readonly name: Name;
}Nameextends string- readonly
kind('shape') - readonly
name(Name)
Schema for shape operations.
Shape operations modify tensor shape without changing data. Examples: reshape, transpose, permute, squeeze, unsqueeze, etc.