Skip to content

Commit

Permalink
Disable prefetching by default as there are issues in case of RNNs
Browse files Browse the repository at this point in the history
  • Loading branch information
amitaga committed Jul 20, 2015
1 parent 9bb8d4d commit 3cbf7fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MachineLearning/CNTK/SGD.h
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ class SGD : ComputationNetworkHelper<ElemType>
size_t numMBsToCUDAProfile = configSGD("numMBsToCUDAProfile", "0");

// Whether it is OK for read to happen on a separate thread while compute is happening
bool doPrefetchTrainingData = configSGD("prefetchTrainingData", "true");
bool doPrefetchTrainingData = configSGD("prefetchTrainingData", "false");

bool keepCheckPointFiles = configSGD("keepCheckPointFiles", "false");

Expand Down

0 comments on commit 3cbf7fe

Please sign in to comment.