Exemplo n.º 1
0
        public void TestMINInVectorWhole()
        {
            CreateRandomData(_hostInput1);
            _gpu.CopyToDevice(_hostInput1, _devPtr1);
            int   index = _blas.IAMIN(_devPtr1);
            float max   = _hostInput1.Min();

            Assert.AreEqual(max, _hostInput1[index - 1]); // 1-indexed
        }