Fix some warning.

revert-3824-remove_grad_op_type
hedaoyuan 8 years ago
parent 72bb211b2f
commit c7f245892e

@ -302,6 +302,10 @@ public:
bool isSparse() const { return true; }
private:
using Matrix::mul;
using Matrix::copyFrom;
using Matrix::rowMax;
using Matrix::print;
using Matrix::subMatrix;
};
} // namespace paddle

@ -14,8 +14,8 @@ limitations under the License. */
#pragma once
#include <cstddef>
#include "Matrix.h"
#include "CpuSparseMatrix.h"
#include "Matrix.h"
namespace paddle {
@ -234,6 +234,9 @@ public:
private:
using Matrix::mul;
using Matrix::copyFrom;
using Matrix::rowMax;
using Matrix::print;
using Matrix::subMatrix;
};
} // namespace paddle

Loading…
Cancel
Save