摘要:
在Linux上leveldb的安装和使用中我们写了这么一段测试代码,内容以及输出结果如下: #include <iostream> #include <string> #include <assert.h> #include "leveldb/db.h" using namespace std; i 阅读全文
摘要:
在Linux上leveldb的安装和使用中我们写了一个测试代码,内容如下: #include "leveldb/db.h" #include <cassert> #include <iostream> using namespace std; using namespace leveldb; int 阅读全文
摘要:
源码下载 git clone https://github.com/google/leveldb.git 项目结构 db/, 数据库逻辑 doc/, MD文档 helpers/, LevelDB内存版, 通过namespace覆盖 port/, 平台相关代码 table/, LSM有关的 主要模块 阅读全文
摘要:
1.首先从官网上下载leveldb进行编译 git clone https://github.com/google/leveldb.git cd leveldb make 2.将头文件和动态链接库拷到系统文件里,创建软连接,执行ldconfig命令,将动态链接库加到缓存中,使得系统可以真正使用这个动 阅读全文
摘要:
一、登录Linux,切换到root用户 sudo su 二、在usr目录下建立java安装目录 cd /usr mkdir java 三、下载jdk 登录网址:http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads 阅读全文
摘要:
ls和du的用法 阅读全文
摘要:
VAE的结构以及pytorch实现 阅读全文
摘要:
PyTorch教程之Training a classifier 阅读全文