public NdArray <T> ReshapeForward(NdArray <T> val) { NdArray <T> result = val.Clone(); result.ParentFunc = this; result.Reshape(this.Shape); return(result); }
public override NdArray SingleInputForward(NdArray val) { NdArray result = val.Clone(); result.ParentFunc = this; result.Reshape(this.Shape); return(result); }
NdArray ForwardCpu(NdArray val) { NdArray result = val.Clone(); result.ParentFunc = this; result.Reshape(this.Shape); return(result); }