public void TestLocGradient()
        {
            MultiBoxLossLayerTest test = new MultiBoxLossLayerTest();

            try
            {
                foreach (IMultiBoxLossLayerTest t in test.Tests)
                {
                    t.TestLocGradient(false);
                }
            }
            finally
            {
                test.Dispose();
            }
        }
        public void TestConfGradientGpu()
        {
            MultiBoxLossLayerTest test = new MultiBoxLossLayerTest();

            try
            {
                foreach (IMultiBoxLossLayerTest t in test.Tests)
                {
                    t.TestConfGradient(true);
                }
            }
            finally
            {
                test.Dispose();
            }
        }
        public void TestSetup()
        {
            MultiBoxLossLayerTest test = new MultiBoxLossLayerTest();

            try
            {
                foreach (IMultiBoxLossLayerTest t in test.Tests)
                {
                    t.TestSetup();
                }
            }
            finally
            {
                test.Dispose();
            }
        }