1.影响CPU fmax的主要因素 corner(工艺角),SC(standard cell),SRAM,clock实现(高性能比较难,4GHz) 衡量一个CPU设计的标准(lantency所占小于总path的20%,repeater instance所占的资源小于20%,Q值,performanc ...
分类:
其他好文 时间:
2019-11-17 14:20:29
阅读次数:
85
http://shanhuxueyuan.com/news/detail/46.html 执行php -v 提示未找到命令,这是因为没有将php路径添加到环境变量 方法一:直接运行命令export PATH=$PATH: /usr/local/php56/bin 和 export PATH=$PAT ...
分类:
Web程序 时间:
2019-11-16 10:53:08
阅读次数:
92
css实现元素水平对齐 css实现水平对齐,如图 有人会说css实现这种水平对齐要兼容ie8还不简单吗?使用float: left,或者display: inline-block,不就可以了吗?是的,最常用的最简单方式就是上面这两种,但还有一种方式也可以实现,那就是使用display: table- ...
分类:
Web程序 时间:
2019-11-12 20:02:02
阅读次数:
106
一般是python2默认安装了,python3没有安装,这时候一般使用命令:brew install python3 进行安装 不同方法安装python的路径是不一样的,如下所示: 接下来就要看具体步骤了。 1 控制台输入:vim ~/.bash_profile 并输入如下代码: # Setting ...
分类:
编程语言 时间:
2019-11-11 21:27:06
阅读次数:
84
/* 解决IE9表格错位 */ .el-table--border th:last-of-type.gutter { display: table-cell !important; width: 50px !important; } /* 解决分页前往第几页数字不垂直居中 */ .el-pagina ...
分类:
其他好文 时间:
2019-11-09 13:27:33
阅读次数:
92
public ResponseResult uploading(MultipartFile file1) throws IOException { String filename = file1.getOriginalFilename(); // 1.流读取文件 FileInputStream st ...
分类:
其他好文 时间:
2019-11-07 19:35:06
阅读次数:
109
Given an integer matrix, find the length of the longest increasing path. From each cell, you can either move to four directions: left, right, up or do ...
分类:
其他好文 时间:
2019-11-07 13:40:29
阅读次数:
75
{ field: "billNumber", locked: true, title: '<@spring.message "测试单号"/>', width: 170, headerAttributes: { style: "text-align: center" }, attributes: { ...
分类:
其他好文 时间:
2019-11-07 13:15:09
阅读次数:
89
生物信息学 Cell theory:7个要点 All known living things are made up of one or more cells. All living cells arise from pre-existing cells by division. The cell ...
分类:
系统相关 时间:
2019-11-06 13:05:16
阅读次数:
168
1.将DFA最小化:教材P65 第9题 ① {1,2,3,4,5} {6,7} {1,2,}b{2} {3,4}b{6,7} {5}b {6,7}b{6,7} ② {1,2,},{3,4},{5} {6,7} 2.构造以下文法相应的最小的DFA S→ 0A|1B A→ 1S|1 B→0S|0 3.给 ...
分类:
其他好文 时间:
2019-11-06 12:51:53
阅读次数:
82