摘要: 取消操作 取消git commit 文件保存修改,并保存git add后的状态 git reset --soft HEAD~1 文件保存修改,所有修改需要重新git add git reset HEAD~1 文件舍弃修改,完全回到上一次提交 git reset --hard HEAD~1 取消git 阅读全文
posted @ 2025-09-15 10:08 心比天高xzh 阅读(11) 评论(0) 推荐(0)
摘要: 两段实习经历的差别 At my first internship company, since they were relatively new and had a small team, there weren't many online documents for me to learn fro 阅读全文
posted @ 2025-09-03 10:45 心比天高xzh 阅读(23) 评论(0) 推荐(0)
摘要: 在.vimrc中自定义功能,或者在别的文件中自定义,在.vimrc中source,功能名一定要用大写。 function Test() ... endfunction 然后在命令行中,:call test()运行 也可以自定义为map <leader>te :call test()<cr> 示例: 阅读全文
posted @ 2025-05-14 15:20 心比天高xzh 阅读(15) 评论(0) 推荐(0)
摘要: acmp对协议的检查 没有ready,valid信号与data没有hold住(在interface中通过property检查) 丢包头包尾 在等待读数据的过程中,ready信号拉高 获得的字节数对不上 covergroup怎么写的 主要在monitor中通过收集到的transaction进行收集。 阅读全文
posted @ 2025-03-18 14:46 心比天高xzh 阅读(34) 评论(0) 推荐(0)
摘要: import torch import torch.nn as nn def get_inp(inp,stride,kernel_size): channels = inp.shape[0] x_len = inp.shape[1] y_len = inp.shape[2] inp_list = [ 阅读全文
posted @ 2025-02-25 15:52 心比天高xzh 阅读(13) 评论(0) 推荐(0)
摘要: 在编译运行时,添加选项-cm line+cond+fsm+tgl -cm_dir cov.vdb -cm是选择哪些覆盖率显示,-cm_dir是把关于覆盖率显示的文件夹名。 然后在cov.vdb的路径下verdi -cov -covdir cov.vdb & 如果要合并不同的case覆盖率,将不同的t 阅读全文
posted @ 2025-02-24 13:26 心比天高xzh 阅读(170) 评论(0) 推荐(0)
摘要: 使用示例:python3 test.py -m 14,可以添加参数-p -oh,-p表示参数命名,-oh表示使用onehot编码。 import argparse import math def main(args): bit = math.ceil(math.log2(args.max)) if 阅读全文
posted @ 2025-02-19 09:51 心比天高xzh 阅读(19) 评论(0) 推荐(0)
摘要: print("\033[32m"+4*" "+9*"x"+10*" "+1*"x"+11*" "+7*"x"+5*" "+7*"x"+4*" "+"\033[0m") print("\033[32m"+4*" "+2*"x"+7*" "+2*"x"+6*" " 阅读全文
posted @ 2025-01-10 10:41 心比天高xzh 阅读(42) 评论(0) 推荐(0)
摘要: vimrc let mapleader=" " " 语法高亮度显示 syntax on set cuc set cul " 设置行号 set nu set relativenumber "防止中文注释乱码 set fileencoding=utf-8 set fenc=utf-8 set fencs 阅读全文
posted @ 2025-01-07 13:33 心比天高xzh 阅读(30) 评论(0) 推荐(0)
摘要: 参考链接 安装vim-plug 下载plug.vim,并拷贝到~/.vim/autoload 安装插件安装包 从github上下载插件包,发送到服务器上,拷贝到~/.vim/plugged目录。 配置文件 在.vimrc中编写时使用本地路径,注意路径两端用',而不是" call plug#begin 阅读全文
posted @ 2025-01-06 12:31 心比天高xzh 阅读(266) 评论(0) 推荐(0)