
编程语言
文章平均质量分 92
C#、C、C++、Java、Matlab、Python
Santorinisu
记录只为分享,分享益于成长!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C++ & Matlab 混合编程 - KLU(Sparse LU)
1. 软件版本信息Matlab 2017bVisual Studio 2015 ProfessionalOperating System Windows 10KLU2 KLU 编译KLU是针对线性方程组中系数矩阵的LU分解的一类快速求解方法。源文件为C文件,理论上是可以直接在Visual Studio中直接使用的,可参见KLU使用说明。不过,大部分编程的人,尤其是高校研究生更熟悉Matlab。因此...原创 2018-02-13 02:17:23 · 3174 阅读 · 4 评论 -
C# & Jama 混合编程
1. 软件版本信息Windows 10Visual Studio 2015 Professional2. 相关文件链接2.1 Jama包Introduction:JAMA is a basic linear algebra package for Java. It provides user-level classes for constructing and manipulating real,...原创 2018-05-22 23:40:53 · 422 阅读 · 0 评论 -
C++ & SuperLU 混合编程
1. 软件版本信息Windows 10Visual Studio 2015 ProfessionalSuperLU Package2. 软件下载链接SuperLU Introduction: SuperLU is a general purpose library for the direct solution of large, sparse, nonsymmetric systems of ...原创 2018-05-11 02:33:08 · 2385 阅读 · 4 评论 -
C++ & Intel MKL 混合编程
1. 软件版本信息Windows 10Visual Studio 2015 ProfessionalIntel MKL2. 软件来源链接Intel MKL下载链接:方式 1:直接进入Intel Software官网,进行注册后下载Intel Math Kernel Library(MKL) Package.下载链接:https://software.intel.com/en-us/performa...原创 2018-05-10 23:17:04 · 7684 阅读 · 2 评论 -
C Language & KLU From SuiteSparse & Cygwin
1 所需软件版本信息Visual Studio 2015 ProfessionalOperating System Windows 10SuiteSparse KLU - 4.4.4 and Dependent Ordering Package Metis 4.0Cygwin2 关键资源来源SuiteSparse KLU 下载链接:SuiteSparse LinkMetis 4.0 下载链接:Me...原创 2018-03-23 01:30:31 · 825 阅读 · 0 评论 -
SIMD And AVX Explanation With C# Language
1 所需文件和软件版本信息Microsoft.Bcl.SimdSystem.Numerics.VectorsVisual Studio 2015 ProfessionalCPU-Z Software2 关键资源来源Microsoft.Bcl.Simd,下载链接:Microsoft.Bcl.SimdMicrosoft SIMD-enabled Vector Types,下载链接:System.Nu...原创 2018-03-24 12:42:06 · 1170 阅读 · 2 评论 -
ArrayFire 性能提升优化技巧
为了让你的CUDA或者OpenCL代码有更好的性能,这里将有一些有用的优化性能的技巧.注意:在这里说的“加速器”是指GPU、APU、协处理器、FPGA和所有可以支持CUDA或OpenCL的设备。 · 向量化代码Vectorized Code: 加速器执行向量化代码性能会很好因为计算自然地映射到硬件的运算内核上。ArrayFire函数本质上是量化的,因此,如果您使用ArrayFire,你正在编写向量...转载 2018-02-17 04:34:29 · 1825 阅读 · 0 评论 -
C++ & Matlab 混合编程 - 动态链接库形式
1 软件版本信息Visual Studio 2015 ProfessionalMatlab 2017bOperating System Windows 102 代码部分2.1 Matlab代码2.1.1 图片2.1.2 源码function [c] = gpuTestInCPlus(n)clc;fprintf('Creating a matrix of size %d-by-%d.\n',n,...原创 2018-01-29 23:40:31 · 1649 阅读 · 7 评论 -
Python 3.X怎么安装PIL
关于Pillow与PILPIL(Python Imaging Library)是Python一个强大方便的图像处理库,名气也比较大。不过只支持到Python 2.7。PIL官方网站:http://www.pythonware.com/products/pil/Pillow是PIL的一个派生分支,但如今已经发展成为比PIL本身更具活力的图像处理库。目前最新版本是3.0.0。Pill...转载 2018-10-14 17:39:51 · 2323 阅读 · 0 评论