https://github.com/Microsoft/CNTK
Revision 40af7bb68fa3ca245676b81938568aedefcb5ece authored by Bowen Bao on 18 September 2018, 01:10:34 UTC, committed by Bowen Bao on 18 September 2018, 01:10:34 UTC
* CPU.
  - Short-circuit the call to ComputeConvolveGeometryExplicit() when
    MKL is enabled.
  - Replace div/mod inside ComputeConvolveGeometryExplicit with
    fast_divmod.
* GPU.
  - Instead of creating a new CuDnnConvolutionEngine for every batch,
    just update the geometry related info, and try to reuse the
    workspacememory from previous run.
1 parent 1f28c7d
Raw File
Tip revision: 40af7bb68fa3ca245676b81938568aedefcb5ece authored by Bowen Bao on 18 September 2018, 01:10:34 UTC
Improve conv performance with freedimension
Tip revision: 40af7bb
.clang-format
---
# Requires clang-format version 3.7.1 or later
Language: Cpp
AlignConsecutiveAssignments: false
AlignEscapedNewlinesLeft: true
AlignTrailingComments: true 
AllowShortBlocksOnASingleLine: false
AllowShortFunctionsOnASingleLine: Empty
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
AlwaysBreakTemplateDeclarations: true
AccessModifierOffset: -4
BreakBeforeBraces: Allman
BreakConstructorInitializersBeforeComma: false
ColumnLimit: 0
ConstructorInitializerAllOnOneLineOrOnePerLine: true
DerivePointerAlignment: true
ForEachMacros: [ BOOST_FOREACH, foreach_column, foreach_coord, foreach_index, foreach_row, foreach_row_in_submat ]
IndentWidth: 4
MaxEmptyLinesToKeep: 1
NamespaceIndentation: None
PointerAlignment: Left
SpaceAfterCStyleCast: true
SpaceBeforeAssignmentOperators: true
SpaceBeforeParens: ControlStatements
SpaceInEmptyParentheses: false
SortIncludes: false
Standard: Cpp11
TabWidth: 4
UseTab: Never
...

back to top