https://github.com/Microsoft/CNTK
Raw File
Tip revision: 6620b4e84556230b1334d68d6cf7822dd43d3ed6 authored by Mudit Jain on 22 November 2017, 22:41:18 UTC
Merge branch 'master' of https://github.com/Microsoft/cntk into muditj/pythonCRlossAvg_3
Tip revision: 6620b4e
stdafx.h
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//

#pragma once

#include "Platform.h"
#include "targetver.h"
#ifdef __WINDOWS__
#define NOMINMAX
#include "Windows.h"
#endif

// standard C stuff
#include <stdio.h>
#include <memory.h>
#include <math.h>

// standard C++ stuff
#include <string>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <memory>
#include <chrono>
#include <algorithm>
#include <iostream>
back to top