added more scaffolding (empty CPP files) for moving actions to CNTKActionsLib. Updated Linux Makefile
This commit is contained in:
Родитель
f2ab900b41
Коммит
e0d900f814
|
@ -171,6 +171,9 @@
|
|||
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">NotUsing</PrecompiledHeader>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\Common\TimerUtility.cpp" />
|
||||
<ClCompile Include="EsotericActions.cpp" />
|
||||
<ClCompile Include="EvalActions.cpp" />
|
||||
<ClCompile Include="OtherActions.cpp" />
|
||||
<ClCompile Include="TrainActions.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
|
|
|
@ -13,6 +13,15 @@
|
|||
<ClCompile Include="TrainActions.cpp">
|
||||
<Filter>Actions</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="EsotericActions.cpp">
|
||||
<Filter>Actions</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="EvalActions.cpp">
|
||||
<Filter>Actions</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="OtherActions.cpp">
|
||||
<Filter>Actions</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\Common\Include\basetypes.h">
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
//
|
||||
#pragma once
|
||||
|
||||
#include "Actions.h"
|
||||
#include "ScriptableObjects.h"
|
||||
|
@ -17,6 +16,7 @@
|
|||
|
||||
namespace Microsoft { namespace MSR { namespace CNTK {
|
||||
|
||||
// TODO: MakeRuntimeObject will just call procedures, and return a dummy 'bool = true'
|
||||
class TrainAction : public ActionsBase
|
||||
{
|
||||
void Do()
|
||||
|
|
4
Makefile
4
Makefile
|
@ -421,6 +421,10 @@ CNTK_SRC =\
|
|||
MachineLearning/CNTKComputationNetworkLib/NetworkBuilderFromConfig.cpp \
|
||||
MachineLearning/CNTKSGDLib/Profiler.cpp \
|
||||
MachineLearning/CNTKSGDLib/SGD.cpp \
|
||||
MachineLearning/CNTKActionsLib/TrainActions.cpp \
|
||||
MachineLearning/CNTKActionsLib/EvalActions.cpp \
|
||||
MachineLearning/CNTKActionsLib/OtherActions.cpp \
|
||||
MachineLearning/CNTKActionsLib/EsotericActions.cpp \
|
||||
MachineLearning/CNTKSequenceTrainingLib/latticeforwardbackward.cpp \
|
||||
MachineLearning/CNTKSequenceTrainingLib/parallelforwardbackward.cpp \
|
||||
BrainScript/BrainScriptEvaluator.cpp \
|
||||
|
|
Загрузка…
Ссылка в новой задаче