https://github.com/Microsoft/CNTK
Raw File
Tip revision: 12c67f6fa9bedeb8db398dd017d110f74a0b7e77 authored by Guoli Ye on 19 October 2018, 05:00:30 UTC
support semi-orthogonal
Tip revision: 12c67f6
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