两个命令df 、du结合比较直观 df -h 查看整台服务器的硬盘使用情况 cd / 进入根目录 du -sh * 查看每个文件夹的大小 du -lh --max-depth=1 : 查看当前目录下一级子文件和子目录占用的磁盘容量。 这样的组合可以快速定位大文件和分区满了 ...
分类:
系统相关 时间:
2017-10-23 17:51:28
阅读次数:
323
Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthest l ...
分类:
其他好文 时间:
2017-10-21 19:02:59
阅读次数:
194
module mr_rom_pll_valuemask_8bpc #( parameter NUMBER_OF_MIF_RANGE = 6, parameter ROM_DEPTH_FOR_EACH_MIF_RANGE = 7, parameter ROM_SIZE = 32, parameter ...
分类:
其他好文 时间:
2017-10-17 21:53:59
阅读次数:
288
opencv中图像的格式Mat 有图像的定义,图像深度、类型格式等,其中Mat的参数depth为深度,深度反应出图像颜色像素值; ...
分类:
其他好文 时间:
2017-10-16 13:38:22
阅读次数:
150
在很多情况下要计算输入输出的位宽,比如你写一个8*8的ram,那么地址需要三位去表示,那么这个函数的方便就体现出来了,你需要使用函数定义就好了,如果对于多文件可以包含定义的文件: 如果你的DEPTH是2^n次的话,可以用下面的function,否则要是像DEPTH为7的话,修改for循环中的dept ...
分类:
其他好文 时间:
2017-10-13 19:09:19
阅读次数:
398
Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthest l ...
分类:
其他好文 时间:
2017-10-13 10:24:16
阅读次数:
161
【BZOJ4771】七彩树 Description 给定一棵n个点的有根树,编号依次为1到n,其中1号点是根节点。每个节点都被染上了某一种颜色,其中第i个节点的颜色为c[i]。如果c[i]=c[j],那么我们认为点i和点j拥有相同的颜色。定义depth[i]为i节点与根节点的距离,为了方便起见,你可 ...
分类:
其他好文 时间:
2017-10-05 15:38:59
阅读次数:
219
//极大值极小值算法的伪代码 int MinMax(node, depth, isMaxplayer) { if (depth == 0) { return Evaluate(node); } int score = isMaxPlayer ? -INFINITY : INFINITY;//条件?结... ...
分类:
其他好文 时间:
2017-10-02 21:29:45
阅读次数:
163
From:https://developer.nvidia.com/content/depth-precision-visualized From:https://developer.nvidia.com/content/depth-precision-visualized Depth precis ...
分类:
其他好文 时间:
2017-09-25 13:09:56
阅读次数:
258
max pooling 在不同的 depth 上是分开执行的,且不需要参数控制。也就是说,pooling之后,feature map的维度不会改变 ...
分类:
其他好文 时间:
2017-09-24 14:30:56
阅读次数:
109