/// <summary>チャネルごとの1次元畳み込み</summary>
        public static VariableNode ChannelwiseConvolution1D(VariableNode x, VariableNode w, int stride)
        {
            Function function =
                new Functions.Connection1D.ChannelwiseConvolution(x.Shape, w.Shape, stride);

            VariableNode y = Apply(function, x, w)[0];

            return(y);
        }
        /// <summary>チャネルごとの1次元畳み込み</summary>
        public static Tensor ChannelwiseConvolution1D(Tensor x, Tensor w, int stride)
        {
            Functions.Connection1D.ChannelwiseConvolution function =
                new Functions.Connection1D.ChannelwiseConvolution(x.Shape, w.Shape, stride);

            Tensor y = new Tensor(function.OutShape);

            function.Execute(new Tensor[] { x, w }, new Tensor[] { y });

            return(y);
        }