Example #1
0
        public void AddToEachRow(IVector vector)
        {
            Debug.Assert(IsValid && vector.IsValid);
            var other = (GpuVector)vector;

            _cuda.AddToEachRow(_data, other.Memory, _rows, _columns);
        }