Loading

上一页 1 2 3 4 5 6 7 8 9 10 ··· 16 下一页
摘要: 杂乱,个人存档 ref: 体系结构笔记 动态调度中的Tomasulo算法 Op:该部件将完成的具体操作(例如, + or –)Vj, Vk:源操作数的实际数值,存储缓冲器(Store buffers)设有V域,存放将存储的结果;Qj, Qk:—将产生源寄存器值(将写的值)的保留站。Busy:指明保留 阅读全文
posted @ 2020-03-25 10:33 ArkiWang 阅读(1906) 评论(0) 推荐(0)
摘要: Examples of Instructions on DLX MIPS64 Architecture for Programmers Vloume 手头资料不足,Google到了这个 To understand these tables we need to introduce notations 阅读全文
posted @ 2020-03-20 16:46 ArkiWang 阅读(201) 评论(0) 推荐(0)
摘要: pip install pandas 成功但import运行时报错 更新numpy到匹配(最新版本 阅读全文
posted @ 2020-03-11 21:34 ArkiWang 阅读(386) 评论(0) 推荐(0)
摘要: 1)字符串前加 ’u‘ 后面字符串以 Unicode 格式进行编码,一般用在中文字符串前面,防止乱码。 2)字符串前加 ‘r’ 声明后面的字符串是普通字符串,防止特殊字符串自带功能生效,如 ’\n‘、’\t‘,一般用在正则表达式、文件路径中使用。 示例:str1 = r'a\nb'print(str 阅读全文
posted @ 2020-03-10 00:02 ArkiWang 阅读(1298) 评论(0) 推荐(0)
摘要: numpy.split numpy.split(ary, indices_or_sections, axis=0)[source] Split an array into multiple sub-arrays. Parameters: ary : ndarray Array to be divid 阅读全文
posted @ 2020-03-08 23:23 ArkiWang 阅读(616) 评论(0) 推荐(0)
摘要: 1.若只是网速原因可以 pip -install --timeout=100 -U packagename 2.如果是被ban,访问这个unofficial python extensive package 下载pip失败的 .whl文件,移动到python文件夹后(和python.exe同级)再p 阅读全文
posted @ 2020-03-08 17:22 ArkiWang 阅读(279) 评论(0) 推荐(0)
摘要: Object Oriented Technique Summarize background a) Crisis of Software (20C60S) i. long term ii. expensive iii. low efficiency of development& hard to g 阅读全文
posted @ 2020-03-06 16:19 ArkiWang 阅读(257) 评论(0) 推荐(0)
摘要: 最近复习到这一块再提一句,大一以后就没怎么用过c了 void swap1(int *a,int *b){ int tmp = *a; *a = *b; *b =tmp; } void swap2(int *a,int *b){ int *t = a; a = b; b = t; } int main 阅读全文
posted @ 2020-03-02 16:34 ArkiWang 阅读(173) 评论(0) 推荐(0)
摘要: Function/Procedure都是可独立编译并存储在数据库中的,区别是Function有返回值。 Package则是数据和过程、函数的集合体。 CREATE PROCEDURE dorepeat(p1 INT) BEGIN SET @x = 0; REPEAT SET @x = @x + 1; 阅读全文
posted @ 2020-02-27 23:38 ArkiWang 阅读(327) 评论(0) 推荐(0)
摘要: 不知道怎么取标题,简单提一下数据库的完整性实现问题 在MySQL中一种不用写trigger也可以实现级联的方式——直接使用外键实现参照完整性(当然trigger的功能不只是实现级联修改/删除,还可以实现一些动态完整性约束 除此之外还可以通过check约束实现用户定义完整性 alter table s 阅读全文
posted @ 2020-02-26 17:17 ArkiWang 阅读(296) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 16 下一页