https://github.com/Microsoft/CNTK
Revision ac266faacc6c8abdedf724b3a4507200c234e9d8 authored by Amit Agarwal on 29 February 2016, 00:56:09 UTC, committed by Amit Agarwal on 29 February 2016, 01:54:06 UTC
1 parent ddeb324
Raw File
Tip revision: ac266faacc6c8abdedf724b3a4507200c234e9d8 authored by Amit Agarwal on 29 February 2016, 00:56:09 UTC
Fixed a memory allocation bug in GPUSparseMatrix
Tip revision: ac266fa
CNTK.Cpp.props
<?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>
  </PropertyGroup>
</Project>
back to top