https://github.com/Microsoft/CNTK
Raw File
Tip revision: d01ef8fa6d0fb27af77bfb52eb28acee16adf84a authored by Yang Chen on 18 July 2019, 17:22:37 UTC
remove an assert that seems to be too conservative
Tip revision: d01ef8f
Globals.cpp
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.md file in the project root for full license information.
//

#include "Globals.h"
#include "Constants.h"

using namespace std;

namespace Microsoft { namespace MSR { namespace CNTK {

    // TODO: get rid of this source file once static initializers in methods are thread-safe (VS 2015)
    std::atomic<bool> Globals::m_forceDeterministicAlgorithms(false);
    std::atomic<bool> Globals::m_forceConstantRandomSeed(false);

    std::atomic<bool> Globals::m_enableShareNodeValueMatrices(true);
    std::atomic<bool> Globals::m_optimizeGradientAccumulation(true);
    std::atomic<bool> Globals::m_enableNodeTiming(false);
    std::atomic<bool> Globals::m_useV2Aggregator(false);
    std::atomic<std::size_t> Globals::m_mpiPackThresholdInBytes(DEFAULT_PACK_THRESHOLD_SIZE_IN_BYTES);
}}}
back to top