public void SpeedTest() { int inwidth = 512, inchannels = 31, outchannels = 63; OverflowCheckedTensor y_tensor = new OverflowCheckedTensor(Shape.Map1D(outchannels, inwidth)); OverflowCheckedTensor w_tensor = new OverflowCheckedTensor(Shape.Kernel0D(inchannels, outchannels)); OverflowCheckedTensor x_tensor = new OverflowCheckedTensor(Shape.Map1D(inchannels, inwidth)); PointwiseDeconvolution ope = new PointwiseDeconvolution(inwidth, outchannels, inchannels); ope.Execute(y_tensor, w_tensor, x_tensor); Stopwatch sw = new Stopwatch(); sw.Start(); ope.Execute(y_tensor, w_tensor, x_tensor); ope.Execute(y_tensor, w_tensor, x_tensor); ope.Execute(y_tensor, w_tensor, x_tensor); ope.Execute(y_tensor, w_tensor, x_tensor); sw.Stop(); Console.WriteLine($"{sw.ElapsedMilliseconds / 4} msec"); }
public void ExecuteTest() { float max_err = 0; foreach (int batch in new int[] { 1, 2 }) { foreach (int inchannels in new int[] { 1, 2, 3, 4, 5, 10, 15, 20 }) { foreach (int outchannels in new int[] { 7, 13 }) { foreach (int inwidth in new int[] { 8, 9, 13, 17 }) { float[] yval = (new float[inwidth * outchannels * batch]).Select((_, idx) => idx * 1e-4f).ToArray(); float[] wval = (new float[inchannels * outchannels]).Select((_, idx) => idx * 1e-4f).Reverse().ToArray(); Map1D y = new Map1D(outchannels, inwidth, batch, yval); Filter1D w = new Filter1D(inchannels, outchannels, 1, wval); Map1D x = Reference(y, w); OverflowCheckedTensor y_tensor = new OverflowCheckedTensor(Shape.Map1D(outchannels, inwidth, batch), yval); OverflowCheckedTensor w_tensor = new OverflowCheckedTensor(Shape.Kernel0D(inchannels, outchannels), wval); OverflowCheckedTensor x_tensor = new OverflowCheckedTensor(Shape.Map1D(inchannels, inwidth, batch)); PointwiseDeconvolution ope = new PointwiseDeconvolution(inwidth, outchannels, inchannels, batch); ope.Execute(y_tensor, w_tensor, x_tensor); float[] x_expect = x.ToArray(); float[] x_actual = x_tensor.State; CollectionAssert.AreEqual(yval, y_tensor.State); CollectionAssert.AreEqual(wval, w_tensor.State); AssertError.Tolerance(x_expect, x_actual, 1e-7f, 1e-5f, ref max_err, $"mismatch value {inchannels},{outchannels},{inwidth},{batch}"); Console.WriteLine($"pass: {inchannels},{outchannels},{inwidth},{batch}"); } } } } Console.WriteLine($"maxerr:{max_err}"); }