Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
eldakms committed Sep 1, 2016
1 parent 627f8eb commit 147efd1
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions Source/Math/ConvolutionEngine.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ class MATH_API ConvolutionEngine
public:
virtual ~ConvolutionEngine() = default;

virtual void MakeDeterministic() {}

void Forward(const Mat& in, const Mat& kernel, Mat& out, Mat& workspace);

void BackwardData(const Mat& srcGrad, const Mat& kernel, Mat& grad, Mat& workspace);
Expand Down
1 change: 0 additions & 1 deletion Source/Math/CuDnnConvolutionEngine.cu
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,6 @@ private:

// Flag indicating whether only deterministic algorithms should be used.
bool m_forceDeterministicAlgorithms;
const std::set<cudnnConvolutionBwdFilterAlgo_t> m_backFilterNonDeterministic;
};

template <class ElemType>
Expand Down
2 changes: 1 addition & 1 deletion Source/SGDLib/SGD.h
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ class SGD : public SGDParams
void Adapt(wstring origModelFileName, wstring refNodeName,
IDataReader* trainSetDataReader,
IDataReader* validationSetDataReader,
const DEVICEID_TYPE deviceID, const bool makeMode);
const DEVICEID_TYPE deviceID, const bool makeMode = true);

protected:

Expand Down

0 comments on commit 147efd1

Please sign in to comment.