Pro TBB
在摩尔定律逐渐失效的今日,CPU主频和单核性能提升越来越不明显,为了得到跟高的性能,我们走向了并行计算的道路
概念
并发和并行
并发(Concurrent):happening during the same time span,处理器在两件事间快速切换,宏观上看,就像是同时发生的(下图AB)
并行(Parallel):happening at the same ti...
DX12
环境搭建
Windows 10/11系统
安装PIX
安装Visual Studio 2019
Windows应用程序
Windows应用程序使用事件驱动(详情可以去看WPF)
Windows应用程序的入口点是WinMain函数
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, LPSTR, int nCmdShow){...