- 博客(23)
- 资源 (6)
- 收藏
- 关注
原创 VirtualBox
VirtualBox 安装增强功能sudo apt-get install build-essential gcc make texinfo perl linux-headers-$(uname-r)sudo bash VBoxLinuxAdditions.run
2021-02-14 14:03:15 186
原创 CompileForAndroid
fftw3.3.9#!/bin/bashexport NDK="/home/nocent/work/android-ndk-r21e"export TOOLCHAIN="toolchains/llvm/prebuilt/linux-x86_64"export TOOLCHAIN_BIN_DIR="$NDK/$TOOLCHAIN/bin"export TOOLCHAIN_SYS_ROOT="$NDK/$TOOLCHAIN/sysroot"export PATH="$TOOLCHAIN_BIN_D
2021-02-14 13:59:32 242
原创 Android mk variable
文章目录definitionvariabledefinitionall-subdir-makefiles# include all subdir Android.mkinclude $(call all-subdir-makefiles)all-makefiles-underinclude $(call all-makefiles-under, $(LOCAL_PATH))variableANDROID_BUILD_TOPafter run lunch command, it will
2021-01-17 14:44:05 601
原创 平台硬件信息
文章目录CPUQCOM powerhint 实现到底几个 clustercluster 下的 CPUCPU 频率关闭开启 CPUx设置CPU工作模式C-states获取 CPU 频率示例GPU设置 GPU 频率DDR 频率sensormiscCSICPUQCOM powerhint 实现通过设置 msm_performance 的参数实现/sys/module/msm_performance/parameters/cpu_max_freq/sys/module/msm_performance/p
2020-12-28 13:43:07 1175
原创 Memory_debug
VSS/RSS/PSS/USSVSS:Virtual Set Size 虚拟耗用内存(包含共享库占用的内存)。(reported as VSZ from ps) is the total accessible address space of a process.RSS:Resident Set Size 实际使用物理内存(包含共享库占用的内存)。resident set size, the non-swapped physical memory that a task has used (i
2020-12-05 15:15:20 203
原创 Autoconf Manual摘要
文章目录3 Making configure Scripts3.1 Writing configure.ac3 Making configure Scripts3.1 Writing configure.acTo produce a configure script for a software package, create a file called configure.ac that contains invocations of the Autoconf macros that test th
2020-11-18 14:16:30 85
原创 GIT使用总结
文章目录说明gerritmerge the Gerrit branch to another Gerrit branchgit addgit amgit cat-filegit checkout-indexgit configgit diffNo newline at end of filegit format-patch基于上几次内容打包git fetch and git pullgit fetchgit pullgit loggit pushfor gerritgit taggit rebasegit
2020-08-03 11:07:26 603
原创 Android APP&NDK总结
文章目录locale相关国家码locale相关国家码ZipCode - CountryName map<?xml version="1.0" encoding="utf-8"?><resources> <string-array name="CountryCodes"> <item>93,AF</item> <item>355,AL</item> <item>213,DZ
2020-07-29 16:40:45 526
原创 CMake文档总结
文章目录Binary Targetsadd_librarytarget_link_librariesPseudo TargetsInterface Librariestarget_sourcesBinary Targetsadd_libraryadd_library(<name> [STATIC | SHARED | MODULE] [EXCLUDE_FROM_ALL] [source1] [source2 ...])Adds a lib
2020-07-25 16:08:06 375
原创 JNI文档总结
文章目录Java Native Interface OverviewChapter 2 Design OverviewJNI Interface Functions and PointersCompiling, Loading and Linking Native MethodsResolving Native Method NamesNative Method ArgumentsReferencing Java ObjectsGlobal and Local References局部/全局引用局部引用全局
2020-07-25 14:19:36 475
原创 Android_webrtc_vad功能编译
文章目录源码目录添加NDK Application.mk 和 Android.mkApplication.mkAndroid.mkNDK编译命令源码目录${Android}/external/webrtc添加NDK Application.mk 和 Android.mk分布建立 Application.mk 和 Android.mk 文件并把相应的内容添加到相应文件中。将Application.mk 和 Android.mk复制到${Android}/external/webrtc,即可通过 ND
2020-07-24 16:11:07 284
原创 Android Studio使用总结
问题plugin: ‘com.android.library’ not found解决:在 build.gradle 中添加下面内容allprojects { repositories { google() jcenter() }}buildscript { ext.kotlin_version = '1.3.72' repositories { google() jcenter() }
2020-07-23 15:05:45 335
翻译 语义化的版本控制规则2.0.0
文章目录说明概要介绍语义化版本管理规范(SemVer)说明此处是原文网址链接本文没有任何商业目的,也禁止任何商业目的的使用,转载等如有侵权,请联系删除概要给出一个的版本号 MAJOR.MINOR.PATCH,出现下面的情况增加与之对应的版本号:增加 MAJOR 版本,当做出一些非兼容性 API 修改,增加 MINOR 版本,当以向后兼容的方式添加一些功能性修改,增加 PATCH 版本,当修复了一些向后兼容的问题。用于预发布和构建的元数据的附加标签可以作为 MAJOR.MINOR.
2020-07-05 16:13:42 185
翻译 一个成功的git分支模型
文章目录说明及原文出处反思后记(2020/3/5)介绍为什么选择git分散但是集中主分支支持分支特性分支(Feature branches)创建一个特性分支开发完成的特性合并到develop分支发布分支创建发布分支结束发布分支Hotfix分支创建hotfix分支结束hotfix分支总结说明及原文出处原文链接作者:Vincent Driessen本文没有任何商业目的,也禁止任何商业目的的使用,转载等如有侵权,请联系删除反思后记(2020/3/5)在git形成没多久时间,这个分支模型是在201
2020-06-22 14:33:08 301
原创 TensorFlow Lite分析
TensorFlow Lite分析TocoQuantizationTocoQuantization默认量化数据类型为:// tensorflow-r1.12/tensorflow/contrib/lite/toco/graph_transformations/quantize.cc*quantized_data_type = GetQuantizedDataType(array, Arr...
2019-04-24 16:59:22 597
原创 C++
C++namespacenamespacestd::string str0; // 表示 std 命名空间下的 string 类// 直接 `::` 开始,表示顶层命名空间(全局变量),如:::std::string str1;tensorflow::Status Readable(const string& filename, ...
2019-04-03 17:31:04 147
原创 TensorFlow_Train
TensorFlow Train tipsNvidia relatedGPUsNvidia relatedGPUspython CUDA_VISIBLE_DEVICESos.environ['CUDA_VISIBLE_DEVICES']='5'
2019-03-29 17:23:05 224
原创 NeuralNetwork Operator
NeuralNetwork OperatordropoutdropoutA single model can be used to simulate having a large number of different network architectures by randomly dropping out nodes during training. This is called dro...
2019-03-27 22:10:44 250
原创 硬件知识
硬件知识TT**TCM (tightly coupled memory) **The ‘TCM’ (tightly coupled memory) is fast, probably SRAM multi-transistor memory, like the cache. Both have a fast dedicated connection to the CPU. However...
2019-03-27 10:53:08 177
原创 开发常遇到的包安装问题
开发常遇到的包安装问题azaNo module named ‘absl’ error when I import tensorflowpip3 install absl-pyzzipimport.ZipImportError: can’t decompress data; zlib not availablesudo apt-get install zlib1g-dev ...
2019-03-26 20:28:09 317
原创 SNPE TensorFlow Converter API 笔记
SNPEDlcConverter_resolve_graph_operations_from_modelDlcConverter_resolve_graph_operations_from_model遍历 Graph 中所有 operation,并将遍历结果作为列表返回,具体遍历过程如下:...for output_op_name in model.out_nodes_names: ...
2019-03-20 17:44:12 1003 6
原创 TensorFlow API 笔记
TensorFlowGraphAPIget tf.OperationGraphAPIget tf.Operation# session is tf.Session# returns tf.Operation(in tensorflow/python/framework/ops.py)session.graph.get_operations()
2019-03-20 16:52:59 126
转载 可变参数
那天无意中发现这个帖子,感觉写的不错,那到这里来,给大家共享一下(非常抱歉原地址忘记了)! 某些情况下希望函数的参数个数可以根据需要确定。典型的例子有大家熟悉的函数printf()、scanf()和系统调用execl()等。那么它们是怎样实现的呢?C编译器通常提供了一系列处理这种情况的宏,以屏蔽不同的硬件平台造成的差异,增加程序的可移植性。这些宏包括va_start、va_
2012-02-27 16:13:36 292
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人