https://github.com/Microsoft/CNTK
Raw File
Tip revision: dafd83a5058a42136f66129ac983ac5fb0c129c9 authored by liqunfu on 09 July 2018, 16:46:22 UTC
remove tabs
Tip revision: dafd83a
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