Skip to content

Commit

Permalink
Fix an inconsistency after merge with master.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yongqiang Wang committed Jan 12, 2016
1 parent 25fd18b commit 914ac61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/ComputationNetworkLib/CompositeComputationNodes.h
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ namespace Microsoft { namespace MSR { namespace CNTK {
CreateMatrixIfNull(m_value);
m_value->SetValue(value);
m_hasComputed = true;
SetDims(value.GetNumRows(), value.GetNumCols());
SetDims(TensorShape(value.GetNumRows()), value.GetNumCols());
}
public:
bool m_hasComputed;
Expand Down

0 comments on commit 914ac61

Please sign in to comment.