sliceTensor(_:starts:ends:strides:name:)
Creates a strided-slice operation and returns the result tensor.
Declaration
func sliceTensor(_ tensor: MPSGraphTensor, starts: [NSNumber], ends: [NSNumber], strides: [NSNumber], name: String?) -> MPSGraphTensorParameters
- tensor:
The tensor to be sliced.
- starts:
An array of numbers that specify the starting points for each dimension.
- ends:
An array of numbers that specify the ending points for each dimension.
- strides:
An array of numbers that specify the strides for each dimension.
- name:
The name for the operation.
Return Value
A valid MPSGraphTensor object.
Discussion
Slices a tensor starting from starts, stopping short before ends stepping strides paces between each value. Semantics based on TensorFlow Strided Slice Op.