- 博客(23)
- 收藏
- 关注
原创 A new way of Tree-All-Reduce (Mixed-Tree-All-Reduce)
1 Ring All Reduce详见:https://blog.youkuaiyun.com/gaofeipaopaotang/article/details/94028949 https://blog.youkuaiyun.com/dpppBR/article/details/80445569中的Ring-All-Reduce介绍2 Tree All Reduce详见...
2020-05-20 17:31:16
496
原创 [TensorRT] How to write code to using PluginV2
https://docs.nvidia.com/deeplearning/sdk/tensorrt-developer-guide/index.html#ipluginextIn the doc, it is written below:1. Create the Plugin and AddPlugin int the network.For example, to add a plugin layer to your network with plugin name set to plugi
2020-05-11 19:54:29
297
原创 查看MXNet模型结构
MXNet model file: (download in mxnet net) MXNet_Yolo3-symbol.jsonYou can see that it is different from print(net) of pyhton print the model.There are some "elemwise_add" layers.But there ar...
2020-04-27 17:44:33
600
原创 [TensorRT] 构建推理网络中(自定义层)Plugin Layer使用方法及数据处理格式
代码详见SampleCharRNN1 nvinfer.h中的定义1.1 处理数据维度的定义/** * \class Dims * \brief structure to define the dimensions of a tensor * * \note: currently the following formats are supported for layer inputs and...
2020-04-15 23:16:22
1176
原创 [并行计算] Summary
[并行计算] 1. 并行计算简介https://blog.youkuaiyun.com/magicbean2/article/details/75174859Tensorflow框架是如何支持分布式训练的?https://blog.youkuaiyun.com/dQCFKyQDXYm3F8rB0/article/details/88839206[深度学习] 分布式模式介绍(一)https://blog...
2020-04-13 13:26:20
130
原创 [Summarry] Synchronized BatchNorm
MegDet 与 Synchronized BatchNormhttps://blog.youkuaiyun.com/yiran103/article/details/80820300[论文笔记]MegDet: A Large Mini-Batch Object Detectorhttps://blog.ddlee.cn/posts/e9b3289c/caffe:同步Batch Normali...
2020-04-08 17:33:45
807
原创 归一化/标准化 And 激活函数
归一化/标准化Batch Normalization详细解读https://blog.youkuaiyun.com/guo1988kui/article/details/83794343机器学习哪些算法需要归一化https://blog.youkuaiyun.com/qq_34872215/article/details/88363504机器学习数据归一化的的方法有哪些?适合于什么样的数据?...
2020-04-07 17:41:23
1281
转载 [转载] PIP源使用国内镜像 提升下载速度
国内源:新版ubuntu要求使用https源,要注意。清华:https://pypi.tuna.tsinghua.edu.cn/simple阿里云:http://mirrors.aliyun.com/pypi/simple/中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/华中理工大学:http://pypi.hustunique.c...
2020-04-07 15:03:37
179
原创 [TensorRT Sample Code] How to Save Engine and Load Engine from file
In the TensorRT Sample "TensorRT-7.0.0.11/samples/trtexec/trtexec.cpp"1Save Engine to filebool saveEngine(const ICudaEngine& engine, const std::string& fileName, std::ostream& err){...
2020-04-03 16:39:44
1615
原创 [CUDA KERNEL] Some tips for write CUDA kernel function
1 CUDA device端 内建函数__exp(),__log(),__power(),...这些函数降低了精度,但是提高了运算速度2 线程同步 __syncthreads() 这个函数是“block线程内”的线程同步以前有一次发现使用到__syncthreads()的程序,发现经常运行的结果不一样,就是因为__syncthreads() 这个函数是“block线程内”的线程同...
2020-04-03 16:08:40
162
原创 [TensorRT] Write your plugin which support FP16
Total Steps 3:1. In the plugin, 3 Interface need support FP162. Use cuda_fp16.hto writeKernel Function3. Use FP16 in the Engine===========================================1. In the plugi...
2020-04-03 14:28:58
690
原创 AI学习资源的汇总
1 TensorRThttps://developer.nvidia.com/tensorrtdeveloper guide & sample codehttps://docs.nvidia.com/deeplearning/sdk/tensorrt-developer-guide/index.html2 Caffecode:http://caffe.berkeleyvision.org/...
2018-04-15 23:18:29
707
转载 关于卷积
卷积卷积核大小(Kernel Size):定义了卷积操作的感受野。在二维卷积中,通常设置为3,即卷积核大小为3×3。步幅(Stride):定义了卷积核遍历图像时的步幅大小。其默认值通常设置为1,也可将步幅设置为2后对图像进行下采样,这种方式与最大池化类似。边界扩充(Padding):定义了网络层处理样本边界的方式。当卷积核大于1且不进行边界扩充,输出尺寸将相应缩小;当卷积核以标准方式进行边界扩充,...
2018-04-15 22:43:01
650
原创 Google Time Lapse Recording 在高档手机上的一个实现
实现的配置是 mCaptureFp=240 mFrameRate=30设置的SampleRate=48K,计算得到的sampleRate为384K 1047 if (mCaptureFpsEnable && mCaptureFps >= mFrameRate) {1048 // Upscale the sample rate for slow motio...
2018-03-15 21:36:14
244
原创 Media Recorder 录像流程中时间戳/系统时间的处理2 Pause/Resume的时间戳处理
Media Recorder 录像流程中时间戳/系统时间的处理2 Pause/Resume的时间处理[Pause]1897status_t StagefrightRecorder::pause() {1898 ALOGV("pause");1899 if (!mStarted) {1900 return INVALID_OPERATION;1901 }19...
2018-03-15 21:16:09
1197
1
原创 Media Recorder 录像流程中时间戳的处理
Media Recorder 录像流程中时间戳的处理 [Audio]1 AudioSource1.1 AudioSource构造函数52AudioSource::AudioSource(53 audio_source_t inputSource, const String16 &opPackageName,54 uint32_t sampleRate, ui...
2018-03-13 23:05:59
2540
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人