My First Article

作为一名IC验证工程师,英语技能至关重要。本文记录了使用C语言和Verilog HDL过程中遇到的经验和问题,同时涵盖图表、接口、定时、参数等多个技术要点,并探讨了语言能力的提升。此外,还涉及到兼容性、协议、优化等关键概念,旨在分享技术成长的足迹。
摘要由CSDN通过智能技术生成

Master Xunzi said that,the living place and following friends must be chosen, so that I came here to document my progress and growth.

As an IC verification engineer, the skill to use English is significant. That's the reason why I want to write all the content in English. Further more, it is one way to increase the ability of languages.

I will record the experience and problems at the period when using of The C Programming Language and verilog HDL, as well as others.

Best wish to great China dynasty.

The rule of posting is a little strict that I cannot post this article with few words. So I pasted these professional words in my field below.

hierarchy                               层次结构

diagram                                 图表/示意图

contain                                 包含

typically                               通常

denoted                                 表示

*donate                                捐*

thicker                                 较厚

*thin                                  薄*

schematic         *                      示意图

symbol                                  象征/符号

interface                               接口/界面/端口

confidential        *                    机密的

node               *                     节点

register                                寄存器

bus                                     总线

buffer                                  缓冲 器

dominant            *                    主导的

transmit                                传输

timing                                  定时/计时

parameter                               参数

acceptance                              验收

filter                                  过滤器

Counter                                 计数器

executing                               执行

transmission                            传输

----

acknowledgement           *              确认

configuration                           配置/结构

aspects                    *             方面

desired                                 想要的

segment                                 部分/分割/段/细分市场

cater                      *             满足

arbitration                             仲裁

comprises                               包含

Overrun                                 超限

generated                               生成

storage                                 贮存

issuing                  *               发行发出

variations                              变化

compensate               *               补偿

synchronize               *              同步 Synchronization

Phase                   *                阶段

----

industry                                行业

format                 *                 格式

overall                *                 全面的

fabricate                               制造

facet                  *                 刻面

synthesis              合成,综合                 综合/合成

stage                   *                阶段

constraint                              约束

script                                  脚本

Section                                 章节/部分

implementation                          执行

vector                                  向量

chapter                                 章节

simulate                                仿真

outline                                 提纲

associated                              联系

compile                                 编译

Frame                                   帧

Format                                  格式

baud rate                               波特率

Time Quanta                             时间量子(段) time quantum

incoming                                传入

simultaneously                          同时地

integrated circuit                      集成电路

regression                              回归

implement                               实施

coverage                                覆盖范围

methodology                             方法

----

explicit                                明确的

compiler                                编译器

netlist                                 网表

strobes                                 闪光灯

latch                                   锁存器                            

Flip-flop                               触发器

register                                寄存器

transceiver                             收发器

compatible                              兼容的

binary                                  二进制

Peripheral                              外围设备

fanning out                             扇形散开

flow                                    流程

annotation                              注解

intrinsic                               固有的

macro cell                              宏单元

back-annotation                         回注

database                                数据库

appendix                                附录

----

*optimized*                         优化的

complexity                              复杂

revision                                修订

obsolete                                过时的

write strobes                           写频闪

protocol                                协议

----

associativity                              关联性

Standby                               支持/待机

Functional                               功能性

Cache configurability                缓存可配置性

Component                               零件

Prevention                              预防

indicate                              指示

coherency                              连贯性

Asynchronous                              异步

Synchronous                                同步

Dynamic                              动态的

separate                              分离

Glossary                              词汇表

backbone                              骨干

Architecture                              体系结构

trademarked                              商标

on-chip communication                              片上通信

optimize                              优化

consumption                              消耗

generic                              通用的

eXtensible                              可扩展

decrementing                              递减

synchronizer                              同步器

domain                              领域

subsequent                              随后的

designWare                              设计软件

calculator                              计算器

timeout period                         超时时间

reference                         参考

truncate                               截短

assertion                           断言

coherently                         连贯地

Architecture                  体系结构

SVN                               版本控制系统

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
首先,你需要安装 Django:`pip install django` 接下来,你需要创建一个 Django 项目:`django-admin startproject myblog`,其中 `myblog` 是项目名称。 然后,你需要在项目目录下创建一个 Django 应用:`python manage.py startapp blog`,其中 `blog` 是应用名称。 接下来,我们需要配置数据库。在 `settings.py` 文件中找到 `DATABASES` 设置,将其修改为: ```python DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': 'myblog', 'USER': 'root', 'PASSWORD': '123456', 'HOST': 'localhost', 'PORT': '3306', } } ``` 这里使用了 MySQL 数据库,需要安装 PyMySQL:`pip install pymysql`,并在 `__init__.py` 文件中添加以下内容: ```python import pymysql pymysql.install_as_MySQLdb() ``` 接下来,我们需要定义模型类,即 ORM 数据库映射类。打开 `blog/models.py` 文件,添加以下内容: ```python from django.db import models class Article(models.Model): title = models.CharField(max_length=128) content = models.TextField() pub_time = models.DateTimeField(auto_now_add=True) ``` 这里定义了一个 Article 类,它继承自 Django 的 Model 类,用于映射到数据库中的一张表。其中,title、content、pub_time 三个字段分别对应表中的三个列。 接下来,运行以下命令创建表: ```bash python manage.py makemigrations python manage.py migrate ``` 最后,我们可以在 Python Shell 中测试 ORM 数据库映射类: ```bash python manage.py shell >>> from blog.models import Article >>> a = Article(title='Hello, Django', content='This is my first article') >>> a.save() >>> Article.objects.all() <QuerySet [<Article: Article object (1)>]> ``` 这里创建了一个 Article 对象并保存到数据库中,然后使用 `objects.all()` 方法查询所有的 Article 对象。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值