2023年3月8日

摘要: 免费的东西不错,但装起来确实坑很多。 为了节约大家时间,只说要点吧: 1. 系统选择Windows Server2022,(Windows10/11和旧版本Server应该也可以); 2. 数据库用Microsoft的SQL Server2022 Dev版,(Dev版是免费的,Express版应该也 阅读全文
posted @ 2023-03-08 14:20 SumXing 阅读(676) 评论(0) 推荐(0) 编辑

2020年8月29日

摘要: 报错内容为"nvcc fatal: A single input file is required for a non-link phase when an outputfile is specified" error 虽然命令里面输入了 -D CUDA_NVCC_FLAGS=”-D_FORCE_I 阅读全文
posted @ 2020-08-29 16:26 SumXing 阅读(1552) 评论(0) 推荐(0) 编辑

2020年4月11日

摘要: AMD Threadripper 39xx系列CPU安装Ubuntu18.04会遇到启动困难的问题,表现是启动会长时间停在USB设备的地方。 解决方法是GRUB启动选项显示的时候,先选择启动选项,然后按e编辑,在启动名令里面加入mce=off,安装完成后第一次启动,有可能需要加入nomodeset, 阅读全文
posted @ 2020-04-11 15:34 SumXing 阅读(653) 评论(2) 推荐(0) 编辑
摘要: 如果提示Python2或者Python3问题,需要加上bazel flag --noincompatible_do_not_split_linking_cmdline I had run into this issue, and adding the bazel flag --noincompati 阅读全文
posted @ 2020-04-11 15:30 SumXing 阅读(868) 评论(0) 推荐(0) 编辑

2018年9月27日

摘要: TP-LINK本身没有在中文网站提供linux驱动。 英文网站的网卡型号不一样,通过样子猜测是T9UH,于是google了一下发现有开源驱动。 具体做法如下: 把其中的第1行 替换为 然后 就可以成功安装了。 安装后需要重新启动。 阅读全文
posted @ 2018-09-27 22:26 SumXing 阅读(1042) 评论(0) 推荐(0) 编辑

2018年4月18日

摘要: def multi_level_contextual(patch_size, n_channels, nb_classes): # number of convolutional filters to use at each layer nb_filters = [64, 64, 64] # level of pooling to perform at each layer (P... 阅读全文
posted @ 2018-04-18 17:12 SumXing 阅读(129) 评论(0) 推荐(0) 编辑

2018年4月16日

摘要: 多进程数据同步不能用global,因为不能跨进程存取,必须要用Multiprocessing的queue, Value, Array, Rawarray来做数值传递。 而且这个传递不支持多维数组,只支持一维的,所以前后要自己转换一下。 阅读全文
posted @ 2018-04-16 16:37 SumXing 阅读(571) 评论(0) 推荐(0) 编辑

2017年10月24日

摘要: nVidia的显卡是支持超频的,在Windows下各家都有工具,例如Afterburning之类的工具。 但是在Linux下就没有这样现成的工具了。 不过Coolbits的设置也还是非常简单的。 只需要修改Xorg.conf文件加入Coolbit就可以用nvidia-setting来超频了 手动编辑 阅读全文
posted @ 2017-10-24 20:39 SumXing 阅读(4292) 评论(0) 推荐(0) 编辑

2017年10月23日

摘要: 这个需要安装Nuvoton的nct6795的驱动。 因为微星主板用的是Nuvoton的芯片,驱动在github的link如下: https://github.com/groeck/nct6775.git $git clone https://github.com/groeck/nct6775.git 阅读全文
posted @ 2017-10-23 20:19 SumXing 阅读(295) 评论(1) 推荐(0) 编辑

导航