上一页 1 2 3 4 5 6 7 8 9 10 ··· 20 下一页
摘要: #include <iostream> #include <stack> #include <vector> #include <queue> #include <string> #include <list> #include <unordered_map> #include <unordered 阅读全文
posted @ 2022-04-17 21:42 fourmii 阅读(70) 评论(1) 推荐(1) 编辑
摘要: ref: https://zhuanlan.zhihu.com/p/115024669 http://www.xitongcheng.com/jiaocheng/dnrj_article_55009.html 比较英伟达显卡的性能从两个方向比较,一是核心,二是显存。 核心关注两点,其中一点是核心数量 阅读全文
posted @ 2021-03-11 13:45 fourmii 阅读(1641) 评论(0) 推荐(0) 编辑
摘要: 移动端深度学习推理框架 框架 公司 支持硬件 特性 相关资源 TensorFlow Lite Google 2017 CPU GPU: android基于OpenGL, IOS基于Metal app内核优化,pre-fused激活,更快更小模型定量化 https://tensorflow.googl 阅读全文
posted @ 2021-03-09 18:15 fourmii 阅读(1488) 评论(0) 推荐(0) 编辑
摘要: 参考连接:https://blog.csdn.net/u012505617/article/details/89205642 区别: 1.指令集: ARMv8使用64位及32位的指令集,ARMv7使用32位及16位的指令集。 2.通用寄存器: v8包含32个寄存器其中前32个位64位寄存器,后32个 阅读全文
posted @ 2021-03-09 15:09 fourmii 阅读(6089) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<cstring> using namespace std; class EV{ public: EV(const int &vR, const int& vN) { result = vR; n =vN; } EV(){} int getRes 阅读全文
posted @ 2020-03-20 14:46 fourmii 阅读(268) 评论(3) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-03-16 21:16 fourmii 阅读(146) 评论(0) 推荐(0) 编辑
摘要: //makefile cc = g++ prom = mystring obj = mystring.o $(prom):$(obj) rm -rf *.exe; $(cc) -o $(prom) $(obj) //头文件 #ifndef __MYSTRING__ #define __MYSTRIN 阅读全文
posted @ 2020-03-14 22:05 fourmii 阅读(289) 评论(0) 推荐(0) 编辑
摘要: //makefile cc = g++ prom = complex obj = complex.o $(prom):$(obj) rm -rf *.exe; $(cc) -o $(prom) $(obj) //complex.h #ifndef __COMPLEX__ #define __COMP 阅读全文
posted @ 2020-03-14 22:01 fourmii 阅读(312) 评论(0) 推荐(0) 编辑
摘要: 包含两个类:Employee及Dataset //employee.h #pragma once #include<string> namespace Record { const int kDefaultstartingSalary = 30000; class Employee { public 阅读全文
posted @ 2020-01-15 07:52 fourmii 阅读(297) 评论(0) 推荐(0) 编辑
摘要: //以下代码来源: 设计模式精解-GoF 23种设计模式解析附C++实现源码 //Context.h #pragma once class Context { public: Context(); ~Context(); protected: private: }; //Context.cpp #i 阅读全文
posted @ 2019-12-24 11:36 fourmii 阅读(189) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 20 下一页