tf.raw_ops.StridedSliceAssign

Assign value to the sliced l-value reference of ref.

The values of value are assigned to the positions in the variable ref that are selected by the slice parameters. The slice parameters begin, end, strides, etc. work exactly as in StridedSlice.

NOTE this op currently does not support broadcasting and so value's shape must be exactly the shape produced by the slice of ref.

refA mutable Tensor.
beginA Tensor. Must be one of the following types: int32, int64.
endA Tensor. Must have the same type as begin.
stridesA Tensor. Must have the same type as begin.
valueA Tensor. Must have the same type as ref.
begin_maskAn optional int. Defaults to 0.
end_maskAn optional int. Defaults to 0.
ellipsis_maskAn optional int. Defaults to 0.
new_axis_maskAn optional int. Defaults to 0.
shrink_axis_maskAn optional int. Defaults to 0.
nameA name for the operation (optional).

A mutable Tensor. Has the same type as ref.