摘要:
查看是否能正确加载nvidia 驱动 在终端输入 (glxinfo 需要安装mesa-utils) 如果可以正确加载了nvidia驱动 那么在输入的内容中可以看到NVIDIA 字样 如果GPU是IntelGPU 正确加载类似 卸载 老版本 驱动 sudo apt-get purge nvidia* 阅读全文
摘要:
将tensorflow C++ 版本更新为何训练版本一致即可 阅读全文
摘要:
int bw = blockDim.x; int bh = blockDim.y; int tx = threadIdx.x%bw; int ty = threadIdx.y%bh; __shared__ uchar2 ys0[16][16]; __shared__ uchar2 ys1[16][16]; __shared__ ucha... 阅读全文
摘要:
1. matMul 2. eval 函数 作用: 1.eval(): 将字符串string对象转化为有效的表达式参与求值运算返回计算结果2.eval()也是启动计算的一种方式。基于Tensorflow的基本原理,首先需要定义图,然后计算图,其中计算图的函数常见的有run()函数,如sess.run( 阅读全文
摘要:
#include "cuda_runtime.h" #include "device_launch_parameters.h" #include "device_functions.h" #include #include #include cudaError_t addWithCuda(int *c, const int *a, const int *b, unsigned ... 阅读全文
摘要:
1. 2. CMake "/work/lib/opencv/ubuntu14/4.1.0" make[2]: *** No rule to make target `/usr/local/ffmpeg/lib/libavcodec.so', needed by `libpic_detection_s 阅读全文
摘要:
先看结论: 基本上只和PCIE的带宽有关 1. i5-8250U 1.6GHz 2. PCIE 3 4K 105fps = 10.45Gps 4K 一帧 = 99.5Mbit 4K YUV444 + mask = 3840*2160*4*8 = 265.42Mbit 4K YUV444 = 3840 阅读全文
摘要:
数据集二分类 第一类1000张, 第二类600张 1. darknet + resnet50 Loss,训练出来测试的时候是NULL, 暂时不知道为什么, 将CUDA-10.0 换成 cuda-8.0 依然显示不出label Loss 也是3.8 2. darknet + alexnet Loss 阅读全文