
C++ AMP
文章平均质量分 94
Augusdi
让时间验证一切,让时间验证我。感谢大家的无私帮助,我愿以同样的态度回馈我热情的朋友,用我们的热忱开创美好未来!
展开
-
GPU通用计算调研报告
摘要:NVIDIA公司在1999年发布GeForce256时首先提出GPU(图形处理器)的概念,随后大量复杂的应用需求促使整个产业蓬勃发展至今。GPU在这十多年的演变过程中,我们看到GPU从最初帮助CPU分担几何吞吐量,到Shader(着色器)单元初具规模,然后出现Shader单元可编程性,到今天GPU通用计算领域蓬勃发展这一清晰轨迹。本报告首先根据搜集到的资料记录GPU通用计算的发展过程中硬件和转载 2013-10-15 10:43:38 · 4857 阅读 · 0 评论 -
C++ AMP: Start GPU Debugging in Visual Studio 2012
There is fantastic debugging support for C++ AMP in Visual Studio 2012, and in this post I’ll show you how easy it is to get started.1. Create a new "Hello World" projectFollow the steps described in转载 2013-09-22 22:37:46 · 3177 阅读 · 0 评论 -
C++ AMP: Simultaneous CPU/GPU Debugging in Visual Studio 2013
The debugging support introduced for C++ AMP in Visual Studio 2012 has been extended in Visual Studio 2013 when running on Windows 8.1 so that you are able to debug both the CPU and GPU parts of your转载 2013-09-22 22:34:52 · 2331 阅读 · 0 评论 -
C++ AMP: Changes in VS 11 Beta for C++ AMP
With the release of Visual Studio 11 Beta, you get among other things an updated version of C++ AMP. After the Beta, we aspire to have no breaking changes (or even major additions) in C++ AMP, so that转载 2013-09-22 16:31:36 · 1589 阅读 · 0 评论 -
C++ AMP: C++ AMP Runtime Exceptions
When you author restrict (amp) kernels (the lambda you pass to parallel_for_each), as with any other code, there are various things that can go wrong. In restrict (amp) code there is no exception hand转载 2013-09-22 15:20:37 · 1787 阅读 · 0 评论 -
C++ AMP: printf, errorf, abort in C++ AMP
There is full Visual Studio debugging support for C++ AMP, and we will cover that in future blog posts. In this post, I am going to introduce three debug diagnostic functions that can be used in restr转载 2013-09-22 17:08:31 · 1854 阅读 · 0 评论 -
C++ AMP: direct3d namespace and HLSL intrinsics in C++ AMP
As you know by now, as a rule most functionality in C++ AMP is in the concurrency namespace. The exception to that is the C++ AMP math library which introduces two sub namespaces (precise_math and fas转载 2013-09-22 17:07:17 · 2256 阅读 · 0 评论 -
C++ AMP - Coding Gorilla
C++ AMP4 October 2011C/C++/C#, CUDA, OpenCL, Parallel, TipAt the AMD Fusion Developer Summit 2011 in June, Microsoft announced C++ Accelerated Massive Parallelism (C++ AMP), an extension to C++ for pa转载 2013-09-22 16:43:18 · 2340 阅读 · 0 评论 -
C++ AMP: C++ AMP: Accelerated Massive Parallelism with Microsoft Visual C++
C++ AMPAccelerated Massive Parallelism with Microsoft Visual C++ Kate Gregory and Ade MillerCapitalize on the faster GPU processors in today’s computers with the C++ AMP code library—and bring massive转载 2013-09-22 16:06:07 · 2350 阅读 · 0 评论 -
C++ AMP: Libraries for C++ AMP
Many of you have been wondering about availability of additional C++ AMP libraries. As part of the shipping product you already have C++ AMP which itself is a library, and also the C++ AMP Math librar转载 2013-09-22 16:04:49 · 2394 阅读 · 0 评论 -
C++ AMP: Math Library for C++ AMP
Visual C++ developers in need of math functions know to go . In this blog post I’ll describe the equivalent in C++ AMP.With C++ AMP, if you want to use a math function in your restrict(amp) functions,转载 2013-09-22 15:23:55 · 3341 阅读 · 0 评论 -
C++ AMP: How to measure the performance of C++ AMP algorithms?
Today I am going to present a way to measure the performance of C++ AMP algorithms. Specifically I am going to show you how to accurately measure elapsed time, and what you need to know while placing转载 2013-09-22 14:15:58 · 2103 阅读 · 0 评论 -
Simultaneous CPU/GPU Debugging in Visual Studio 2013
The debugging support introduced for C++ AMP in Visual Studio 2012 has been extended in Visual Studio 2013 when running on Windows 8.1 so that you are able to debug both the CPU and GPU parts of your转载 2013-09-22 13:48:22 · 1842 阅读 · 0 评论 -
C++ AMP: Staging Arrays in C++ AMP
Hi there, my name is Weirong Zhu, and I’m a developer on the C++ AMP team. In this blog post, I will show you how to use staging arrays to optimize your data transfers between the host and a C++ AMP转载 2013-09-22 10:57:41 · 1646 阅读 · 0 评论 -
C++ AMP: Performance Guidance for C++ AMP
Some of our existing and upcoming blog posts illustrate how to get the best performance from C++ AMP, with a focus on today’s DirectX 11 GPUs, and a focus on our v1 capabilities. This post will serve转载 2013-09-22 11:16:32 · 1600 阅读 · 0 评论 -
C++ AMP 加速大规模并行计算-GPU和CPU的性能比较
比较一下CPU和GPU的通用计算能力,我的显卡是AMD的,没法使用CUDA……前段时间尝鲜Win8,顺便就下载了一个Visual Studio 11 Beta,发现里面有一个C++ AMP,拿来比较一下。根据目前的资料,只要显卡支持DirectX 11就可以使用 C++ AMP,就是将代码编译成x86和HLSL 比赛的方法是准备一个10000个32位浮点数,对每个浮点数做100000次转载 2013-09-21 23:30:01 · 11638 阅读 · 7 评论 -
C++ AMP: Any optimization ways in memory transfer in AMP?
Question0Sign in to voteRecently we did some research on Image processing using GPGPU, and we tired both OpenCL and AMP. It was found that AMP performs worse than OpenCL, consuming more time with the转载 2013-09-21 23:32:04 · 2381 阅读 · 0 评论 -
C++ AMP: Default accelerator in C++ AMP
I have blogged previously about the accelerator and accelerator_view classes in C++ AMP and in this post I want to focus on some specific aspects of its usage.The notion of defaultYou can write a lot转载 2013-09-22 22:39:56 · 2350 阅读 · 0 评论 -
C++ AMP: .Massive Data Parallelism on the GPU with Microsoft's C++ AMP (Accelerated Massive Parallel
Over the last decade an exceedingly loud chorus of industry and academia experts has sounded the alarms bells: the free lunch is over! No longer can we, software developers, expect new hardware to ben转载 2013-09-22 21:25:48 · 2686 阅读 · 0 评论 -
C++ AMP: The Concurrency Runtime and Visual C++ 2010: Lambda Expressions
As a C++ programmer, you might have already started working with the Concurrency Runtime components in Visual Studio 2010 such as the Parallel Patterns Library (PPL) and the Asynchronous Agents Librar转载 2013-09-23 10:30:25 · 2026 阅读 · 0 评论 -
C++ AMP: 哈夫变换求平面参数的GPU实现
终于有时间把这篇博客给补上了,理论知识我会在另外一片数学知识中讲到。写了一个静态的方法,GPU实现的方便并不难(比起来DirectCompute里的复杂配置,amp的确提供了异常方面的接口)。具体代码见下,我会做一些讲解。static void HoughFitPlanGPU(float* pXData, float* pYData, float* pZData, int count, PlanP转载 2013-10-15 10:32:39 · 2446 阅读 · 0 评论 -
双剑合璧:CPU+GPU异构计算完全解析
引用自:http://tech.sina.com.cn/mobile/n/2011-06-20/18371792199.shtml 这篇文章写的深入浅出,把异构计算的思想和行业趋势描述的非常清楚,难得一见的好文章。按捺不住转一下。^_^ 相对于串行计算,并行计算可以划分成时间并行和空间并行。时间并行即流水线技术,空间并行使用多个处理器执行并发计算,当前研究的主要是空间的并行问题。以程序和算法设计转载 2013-10-15 10:16:14 · 4621 阅读 · 0 评论 -
C++ AMP: Hello GPU
部分知识摘自一个网站的描述,自己通过程序实现进行了测试,得到了一些感性的认识 C++ AMP是微软提供的一套利用GPU并行计算的API。GPU运算不是新概念,用GPU运算比较有名的已有NVIDIA的CUDA,AMD的stream。同时对于OpenCL这个标准大家也一定没见过也听说(AMP同样与近日放出了开放标准)。 导读:C++ AMP是微软提供的一套利用GPU并行计算的API. GPU运算不是新转载 2013-10-15 10:29:56 · 2649 阅读 · 0 评论 -
Using CUDA and Thrust with Visual Studio 2010
Using CUDA and Thrust with Visual Studio 2010Sunday, March 6, 2011 – 11:16 am Using CUDA 4.0 RC2? Read the update post here.I was working on setting up some new CUDA projects as I’m doing some spiking转载 2013-10-13 00:13:26 · 3349 阅读 · 0 评论 -
C++ AMP: 遇见C++ AMP:GPU的线程模型和内存模型
遇见C++ AMP:GPU的线程模型和内存模型 Written by Allen Lee I don't care where the enemies are / Can't be stopped / All I know / Go hard– Linkin Park, Lost In The Echo C++ AMP、CUDA和OpenCL,选择哪个? 在《遇见C++ AMP:在GPU转载 2013-09-25 17:02:29 · 2828 阅读 · 0 评论 -
C++ AMP: 遇见C++ Lambda
遇见C++ Lambda Written by Allen Lee If you die when there's no one watching, and your ratings drop and you're forgotten.– Marilyn Manson, Lamb Of God 生成随机数字 假设我们有一个vector容器,想用100以内的随机数初始化它,其中一个办法是通转载 2013-09-25 16:09:19 · 2106 阅读 · 0 评论 -
C++AMP: 遇见C++ PPL:C++ 的并行和异步
遇见C++ PPL:C++ 的并行和异步 Written by Allen Lee You held it all, but you were careless to let it fall. You held it all, and I was by your side powerless.– Linkin Park, Powerless 并行计算正弦值 假设我们有一个数组,里面包含一转载 2013-09-25 16:15:05 · 4086 阅读 · 0 评论 -
C++ AMP: C++AMP的tiled_index线程编号属性笔记
tiled_index类中有4个属性与线程编号有关——tiled_index.global:线程的全局编号。相当于DirectCompute中的SV_DispatchThreadID。tiled_index.local:线程的局部编号。相当于DirectCompute中的SV_GroupThreadID。tiled_index.tile:线程块的编号。相当于DirectCompute中的SV_Gr转载 2013-09-25 15:45:19 · 2026 阅读 · 0 评论 -
C++AMP: 遇见C++ AMP:在GPU上做并行计算
遇见C++ AMP:在GPU上做并行计算 Written by Allen Lee I see all the young believers, your target audience. I see all the old deceivers; we all just sing their song.– Marilyn Manson, Target Audience (Narcissus Nar转载 2013-09-25 16:35:26 · 12103 阅读 · 0 评论 -
C++ AMP: uses tile_static(lds) as function param: 2 methods ( array or Pointer)
// cppamp1.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include #include using namespace concurrency;const int size = 5;inline unsigned long Log2 (unsign原创 2013-09-25 15:46:31 · 2427 阅读 · 0 评论 -
C++ AMP: 基于代码的 C++ AMP 简介
基于代码的 C++ AMP 简介Daniel Moth下载代码示例本文介绍将随同 Visual Studio 11 一同发布的名为 C++ AMP 的预发布技术。 所有信息均有可能发生变更。Visual Studio 11 通过名为 C++ Accelerated Massive Parallelism (C++ AMP) 的技术为主流异构计算提供相应支持。 这使您能够利用 GPU 等加速器来加速转载 2013-09-23 11:17:39 · 2546 阅读 · 0 评论 -
C++ AMP: C++ AMP Articles in MSDN Magazine April issue
The April issue of MSDN Magazine is out and it includes two articles on C++ AMP. Whether you are experienced with C++ AMP or a total newbie that's never heard of it, I am sure there will be something转载 2013-09-23 11:20:10 · 1822 阅读 · 0 评论 -
C++ AMP: The Concurrency Runtime and Visual C++ 2010: Lambda Expressions
As a C++ programmer, you might have already started working with the Concurrency Runtime components in Visual Studio 2010 such as the Parallel Patterns Library (PPL) and the Asynchronous Agents Librar转载 2013-09-23 10:17:34 · 1930 阅读 · 0 评论 -
C++ AMP: Lambdas, auto, and static_assert: C++0x Features in VC10, Part 1
The Visual C++ compiler in the Microsoft Visual Studio 2010 September Community Technology Preview (CTP) contains support for four C++0x language features, namelylambdas, auto, static_assert, and rval转载 2013-09-23 10:10:51 · 2454 阅读 · 0 评论 -
C++ AMP: restrict(amp) restrictions part 2 of N – compound types
This post assumes and requires that you have read the introductory post to this series which also includes a table of content. With that out of the way let’s look at restrictions around compound types转载 2013-09-22 21:04:12 · 1681 阅读 · 0 评论 -
C++ AMP: C++ AMP 平铺功能简介
C++ AMP 平铺功能简介Daniel Moth下载代码示例本文介绍将随同 Visual Studio 11 一同发布的名为 C++ AMP 的预发布技术。 所有信息均有可能发生变更。Visual Studio 11 为异构计算到 c + + 加速大规模并行 (c + + AMP) 通过主流带来支持。 我在这一问题,我认为必备阅读这篇文章中的另一篇文章中介绍了 c + + AMP。 所以如果你还转载 2013-09-23 11:19:21 · 4003 阅读 · 0 评论 -
C++ AMP: Lambda表达式语法
本主题描述的 lambda 表达式的语法。 它提供了一个示例,演示的 lambda 表达式,则这些元素的关联方式的结构元素。 generate_n and for_each." data-guid="bc8c3ba3cf6e12797d1b6f6fd31259da">下面的程序将在两个 STL 算法中使用 lambda 表达式: generate_n 和 for_each转载 2013-09-18 15:00:43 · 2190 阅读 · 0 评论 -
C++ AMP: restrict(amp) restrictions part 0 of N – introduction
Hi, I am Lingli Zhang, a developer on the C++ AMP team and this is the first in a series of posts on C++ AMP restrictions.In a previous post, we have introduced a key new language feature introduced w转载 2013-09-18 11:11:30 · 1675 阅读 · 0 评论 -
C++ AMP: Lambda表达式的示例
本主题在程序中包含演示如何使用 lambda 表达式的示例。 Lambda Expressions in C++." data-guid="411656d77b666e51e15caac8de528191">有关 lambda 表达式的概述,请参见 在C++中Lambda表达式。 Lambda Expression Syntax." data-guid="df40a218a0617e5e01e转载 2013-09-18 15:02:27 · 2162 阅读 · 0 评论 -
Visual Studio 2012 Express 较好支持 C++11 新特性
前面使用 GCC 4.7, MinGW4.7 以及 boost 在 windows, Ubuntu下测试了C++11 的新特性,这次,把 Ubuntu 下的C++11测试代码直接挪到Windows 8 + Visual Stuido 2012 Express下,支持还是比较好的!测试环境:WIndows XP Host + Vmbox 4.2 +windows 8 企业试用版, visual s转载 2013-09-17 15:19:05 · 2996 阅读 · 0 评论