forked from microsoft/CNTK
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
357 changed files
with
17,309 additions
and
51,067 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,6 +88,7 @@ Makefile text | |
*.log text | ||
|
||
Dockerfile* text | ||
.dockerignore text | ||
|
||
# Speech data | ||
mean.363 text | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<!-- Note: SolutionDir / RepoRootPath are the same in current setup --> | ||
<RepoRootPath>$(MSBuildThisFileDirectory)</RepoRootPath> | ||
<RelativeProjectPath>$(MSBuildProjectDirectory.Substring($(MSBuildThisFileDirectory.Length)))</RelativeProjectPath> | ||
|
||
<OutDir>$(RepoRootPath)$(Platform)\$(Configuration)\</OutDir> | ||
<IntDir>$(RepoRootPath)$(Platform)\.build\$(Configuration)\$(RelativeProjectPath)\</IntDir> | ||
|
||
<DebugBuild>false</DebugBuild> | ||
<DebugBuild Condition="$(Configuration.StartsWith('Debug'))">true</DebugBuild> | ||
|
||
<ReleaseBuild>false</ReleaseBuild> | ||
<ReleaseBuild Condition="!$(DebugBuild)">true</ReleaseBuild> | ||
|
||
<GpuBuild>true</GpuBuild> | ||
<GpuBuild Condition="$(Configuration.EndsWith('_CpuOnly'))">false</GpuBuild> | ||
|
||
<CpuOnlyBuild>true</CpuOnlyBuild> | ||
<CpuOnlyBuild Condition="$(GpuBuild)">false</CpuOnlyBuild> | ||
|
||
<NoOptBuild>false</NoOptBuild> | ||
<NoOptBuild Condition="$(Configuration.Contains('NoOpt'))">true</NoOptBuild> | ||
|
||
<HasSwig>false</HasSwig> | ||
<HasSwig Condition="Exists('$(SWIG_PATH)\swig.exe')">true</HasSwig> | ||
</PropertyGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,4 +24,7 @@ int main() | |
MultiThreadsEvaluation(false); | ||
#endif | ||
|
||
fprintf(stderr, "Evaluation complete.\n"); | ||
|
||
fflush(stderr); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Examples/Evaluation/CNTKLibraryCSEvalCPUOnlyExamples/packages.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="CNTK.CPUOnly" version="2.0-beta9" targetFramework="net45" /> | ||
<package id="CNTK.CPUOnly" version="2.0-beta11" targetFramework="net45" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Examples/Evaluation/CNTKLibraryCSEvalGPUExamples/packages.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="CNTK.GPU" version="2.0-beta9" targetFramework="net45" /> | ||
<package id="CNTK.GPU" version="2.0-beta11" targetFramework="net45" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Microsoft.Research.CNTK.CpuEval-mkl" version="2.0-beta9" targetFramework="net45" /> | ||
<package id="Microsoft.Research.CNTK.CpuEval-mkl" version="2.0-beta11" targetFramework="net45" /> | ||
</packages> |
Oops, something went wrong.