上一页 1 2 3 4 5 6 7 8 9 10 ··· 25 下一页
摘要: 1 deque 双向队列, 内部通过map 管理 https://blog.csdn.net/plyukulong2008/article/details/7018270 2. list 双向链表 游标一次只可以移动一步。如果你对链表已经很熟悉,那么STL中的list则是一个双向链表(每个节点有指向 阅读全文
posted @ 2020-09-14 20:31 洛笔达 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 超分的两个文件 chropo_resolution derain : 输入rgb 去除雨滴 vf_sr.c 超分 dnn_processing 如果用GPU 建议使用自己编译的tensorflow, 而且只能使用tensorflow 阅读全文
posted @ 2020-08-06 20:07 洛笔达 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 如果你需要动态库就用人家编译好的so https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-gpu-linux-x86_64-1.15.0.tar.gz 安装Nvidia-docker curl -s -L htt 阅读全文
posted @ 2020-07-13 16:07 洛笔达 阅读(888) 评论(0) 推荐(0) 编辑
摘要: 1. 下载与安装: https://pytorch.org/get-started/locally/ 安装cuda9.2 & cudnn https://developer.nvidia.com/rdp/cudnn-download 2. 第一个程序 编写CMakeLists.txt cmake_m 阅读全文
posted @ 2020-07-09 20:39 洛笔达 阅读(390) 评论(0) 推荐(0) 编辑
摘要: // 8 Rows of square-matrix A processed by each CTA. // This can be max 32 and only power of 2 (i.e., 2/4/8/16/32). #define ROWS_PER_CTA 8 #if !defined 阅读全文
posted @ 2020-07-03 19:24 洛笔达 阅读(152) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <math.h> #include <stdlib.h> #include <cv/cv_tools.h> #include <picture/cv_picture.h> using namespace cv; using namespace 阅读全文
posted @ 2020-05-12 16:53 洛笔达 阅读(1271) 评论(0) 推荐(0) 编辑
摘要: #include <m_tools.h> #include <stdio.h> #include <assert.h> #include <vector> #include <string> int main(int argc , char ** argv) { assert( argc>=3 ); 阅读全文
posted @ 2020-04-30 17:05 洛笔达 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 1660: 1660Ultra:默认频率1530Mhz;Boost频率1860Mhz 1660Gaming ES:默认频率1530Mhz;Boost频率1785Mhz 散热器也是1660Ultra更好。 但说实话吧,这个价格上1660,宁可是买技嘉GeForce GTX 1660 GAMING OC 阅读全文
posted @ 2020-04-01 10:39 洛笔达 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 1. 优化方向1. 传输、解码、计算流水线2. 多个Stream并发3. 低位数整数运算4. CPU/GPU流水线 2. 每个核函数使用最少的寄存器 3. 必须最大限度地利用全局内存 带宽 4. 5. 开启一级缓存和关闭(K40以上GPU默认关闭) -Xptxas -dlcm=cg (禁用一级缓存) 阅读全文
posted @ 2020-02-20 22:42 洛笔达 阅读(419) 评论(0) 推荐(0) 编辑
摘要: g++ -o vmafossexec_cuda src/run_vmaf.cpp.o ../../../../libframereader/libframereader.a -L/data/app/bili_xcode_vmaf_ffmpeg/build/lib -L/usr/local/lib - 阅读全文
posted @ 2020-02-15 19:07 洛笔达 阅读(214) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 25 下一页