搜索资源列表
zhizhen
- 说明指针的使用注意事项,简单明了,方便理解。-show the use of the pointer, simple and clear.Easy to understand.
www
- 使用指针求一个数的平方,不使用库函数,而且其中用了一些技巧,对初学者有一定帮助-Using the pointer seeking the square of a number, do not use the library functions, and with some skill, some help for beginners
Colfax-HOW-Day-02
- we focus on the usage of the Intel Xeon Phi platform as a coprocessor in the offload programming model. We talk about the explicit offload model based on compiler pragmas, explaining how to offload functions, local scalars and arrays of known size, a
big-and-small-using-pointer-array
- c-code to find large and small number the given input using pointer array.dev-c++ is used For the above code compilation -c-code to find large and small number the given input using pointer array.dev-c++ is used For the above code compilation
myFirstKernel
- 启动内核--从“myFirstKernel”模板开始。 Part1:使用指针d_a为内核的结果分配设备内存。 Part2:使用1-D的1-D网格来配置和启动内核 线程块。 Part3:让每个线程设置一个d_a的元素,如下所示: idx = blockIdx.x * blockDim.x + threadIdx.x d_a [idx] = 1000 * blockIdx.x + threadIdx.x Part4:将d_a中的结果复制回主机指针h_a。 Part5:验证结果是否正
reverseArray_singleblock
- 反向阵列(单块)-- 给定指针d_a中的输入数组{a0,a1,...,an-1},将反向数组{an-1,an-2,...,a0}存储在指针d_b中 A: 从“reverseArray_singleblock”模板开始 B: 只有一个线程块启动,以反转一个大小的数组 N = numThreads = 256个元素 C: 第1部分(共1个):所有你需要做的是实现内核的“reverseArrayBlock()” D:每个线程将单个元件移动到相反的位置, 从d_a指标读取输入,
reverseArray_multiblock
- 反向阵列(multiblock): 给定指针d_a中的输入数组{a0,a1,...,an-1},将反向数组{an-1,an-2,...,a0}存储在指针d_b中 A: 从“reverseArray_multiblock”模板开始 B:多个256线程块启动,要颠倒大小为N,N / 256块的数组 第1部分:计算要启动的块数 第2部分:实现内核reverseArrayBlock 请注意,现在您必须同时进行计算 块内的相反位置 反向偏移到块的开始(Reverse array