cudamatrix: adding comment to CuArray::{Min,Max}()

This commit is contained in:
vesis84 2016-05-03 22:57:20 +02:00
Родитель 8bcc11f28d
Коммит 2d5404ce9e
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -107,9 +107,11 @@ class CuArray {
void Add(const T &value);
/// Get minimum value (for now implemented on CPU, reimplement if slow).
/// Asserts the vector is non-empty, otherwise crashes.
T Min() const;
/// Get minimum value (for now implemented on CPU, reimplement if slow).
/// Asserts the vector is non-empty, otherwise crashes.
T Max() const;
CuArray<T> &operator= (const CuArray<T> &in) {