一些并行计算的示例

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/XJT2015/article/details/82054990

GPU加速:
https://github.com/Celebrandil/CudaSift 用CUDA实现SIFT特征检测
https://github.com/zhxfl/CUDA-CNN 用CUDA加速CNN网络
https://github.com/fixstars/libSGM 利用CUDA实现SGM(Semi Global Matching)半全局匹配算法
https://github.com/vincentfpgarcia/kNN-CUDA 利用CUDA实现K近邻算法
https://github.com/chrischoy/knn_cuda 利用CUDA实现K近邻算法
https://github.com/fengChenHPC/kmeans_cuda 利用CUDA加速K均值算法
https://github.com/lzhengchun/matrix-cuda 利用CUDA实现矩阵相乘
https://github.com/cuMF/cumf_als 利用CUDA实现矩阵因式分解
https://github.com/jstraub/cudaPcl 利用CUDA实现对RGB-D图像的边缘平滑
https://github.com/deeplearningais/curfil CUDA实现随机森林的图像标注
https://github.com/drpaneas/cuda CUDA实现RGB图像转灰度图像
https://github.com/boostorg/compute 利用OpenCL对C++ Boost库加速

Xilinx HLS:
https://github.com/Xilinx/CHaiDNN 基于Xilinx Ultrascale+ MPSoCs的卷积神经网络
https://github.com/valar1234/SDAI 用HLS编写的LeNet-5网络手写识别案例
https://github.com/spcl/gemm_hls 在Xilinx SDSOC环境下的高性能矩阵相乘

猜你喜欢

转载自blog.csdn.net/XJT2015/article/details/82054990