
图计算
文章平均质量分 76
yaochuyi
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
大规模图计算应用
参考:http://www.sohu.com/a/204747088_617676转载 2018-06-14 21:17:03 · 1400 阅读 · 0 评论 -
nx矩阵
python 中 sparse matrix的应用和基本操作(CSR矩阵)https://blog.youkuaiyun.com/weixin_42067234/article/details/80247194转载 2019-04-17 09:46:00 · 849 阅读 · 0 评论 -
社区划分相关笔记
https://blog.youkuaiyun.com/qq_38266635/article/details/81743336转载 2019-03-25 14:28:04 · 752 阅读 · 0 评论 -
通信与共享内存
如何理解“不要通过共享内存来通信,而应该通过通信来共享内存”?http://www.imooc.com/wenda/detail/505010使用共享内存的话在多线程的场景下为了处理竞态,需要加锁,使用起来比较麻烦。另外使用过多的锁,容易使得程序的代码逻辑坚涩难懂,并且容易使程序死锁,死锁了以后排查问题相当困难,特别是很多锁同时存在的时候。共享内存会涉及到多个线程同时访问修改数据的情况,那得...转载 2019-03-14 09:41:51 · 604 阅读 · 0 评论 -
METIS-input file format error
第一种报错:n the first line of the file, you specified that the graph contained63 edges. However, I only found 51 edges in the file.Please specify the correct number of edges in the first line of the fi...原创 2019-03-02 11:14:07 · 838 阅读 · 0 评论 -
options array call API
metis官网Calling METIS_NodeND in Metis 5.0.2 from fortran95http://glaros.dtc.umn.edu/gkhome/node/877#comments这些函数服务的对象是应用程序(Application), 所以便称之为 Application Programming Interface,简称 API 函数。(摘自https:/...转载 2019-03-06 08:43:02 · 395 阅读 · 0 评论 -
ParMETIS compilation error
In some OS X systems, compilation of ParMETIS will stop with:(cd ParMETISLib ; make )mpicc -DNDEBUG -O3 -I. -c comm.cIn file included from ./parmetislib.h:19:0,from comm.c:11:./stdheaders.h:17:20...转载 2019-02-28 17:20:30 · 389 阅读 · 0 评论 -
[Xcode] No Such File or Directory
https://www.jianshu.com/p/630da94abd0fDerivedDate这个文件夹是XCODE的缓存文件夹。整个删除都没事的。关于如何找到这个文件夹,参考:https://zhidao.baidu.com/question/983940765371258779.html关于报错的解决,参考:https://cmake.org/Bug/view.php?id=138...原创 2019-02-28 14:50:15 · 2672 阅读 · 0 评论 -
networkx_to_metis
存储networkx生成的图的方法参考networkx手册:https://networkx.github.io/documentation/stable/reference/readwrite/index.htmlAdjacency List经过适当处理可以转换成metis可识别的格式。先看graph的Adjacency Listimport networkx as nximport ...原创 2019-02-18 22:15:50 · 1510 阅读 · 1 评论 -
ParMETIS安装与使用
官方下载网址:http://glaros.dtc.umn.edu/gkhome/metis/parmetis/download我用cmake configure的时候会报错在github上找到一个parmetis的源码,cmake后可正常使用,不过与官方源码之间的区别还未对比。该网址为:https://github.com/scibuilder/parmetis安装过程略使用:查看...原创 2019-02-17 21:37:15 · 2949 阅读 · 2 评论 -
MPI for mac下载及安装
下载最新版open-MPI,下载地址:https://www.open-mpi.org/software/ompi/v4.0/下载之后进行如下操作:双击解压下载的文件openmpi-4.0.0.tar.gz打开cmd,cd到解压的文件夹。输入 cd /Users/ycy/Desktop/openmpi-4.0.0安装在/usr/local下,执行./configure。输入 ./...原创 2019-02-11 00:15:46 · 5617 阅读 · 2 评论 -
METIS安装与使用
官网的安装失败,从github上下载了一个源码,用cmake安装。一开始configure会报错如下:CMake Warning (dev):Policy CMP0042 is not set: MACOSX_RPATH is enabled by default. Run “cmake–help-policy CMP0042” for policy details. Use the c...原创 2019-02-27 00:20:27 · 12901 阅读 · 2 评论 -
python metis模块
python metis模块networkxmetis新的改变功能快捷键合理的创建标题,有助于目录的生成如何改变文本的样式插入链接与图片如何插入一段漂亮的代码片生成一个适合你的列表创建一个表格设定内容居中、居左、居右SmartyPants创建一个自定义列表如何创建一个注脚注释也是必不可少的KaTeX数学公式新的甘特图功能,丰富你的文章UML 图表FLowchart流程图导出与导入导出导入netw...原创 2019-02-01 15:45:02 · 2615 阅读 · 0 评论 -
谱方法相关理论
一个对称矩阵的规范型是指与它合同的最简对角阵,对角线上的元素只可能有1,-1,0且按1,…,1,-1,…,-1,0,…,0排列。https://zhidao.baidu.com/question/587308148066207285.html实对称矩阵的正交相似对角化对实对称矩阵,A’=A,总有正交矩阵T,使T’AT=T逆AT=diag(lambda1,lambda2,…,lambdan)...原创 2019-04-18 20:32:42 · 2484 阅读 · 0 评论