Skip to main content

标  题: Re: 大家觉得EDA行业怎么样

http://gengwg.blogspot.com/发信人: reare (knoxville), 信区: EE
标  题: Re: 大家觉得EDA行业怎么样
发信站: BBS 未名空间站 (Tue Mar 15 23:29:36 2011, 美东)

问题是现在的设计公司趋势是在变少不是在增多啊。在现在的business model下,客户
卖多少芯片跟EDA是没有关系的。有关系的只是有多少客户,每个客户买多少license.
所以EDA公司赚多少钱跟芯片公司赚多少钱没有很直接的关系。间接影响肯定是有的,
但是不是简单的正相关关系。另外几个大EDA公司之间基本上是恶性竞争,不怎么会为
整个行业的定价能力着想,让EDA整个行业和Semi的谈判处在弱势。

至于转到软件行业,你有心的话肯定是有可能的。就算你是做电路的,你好好练习编程
照样有希望转到软件行业。只是这个是已经在EDA行业的人应该考虑的问题。对于还在
进行行业选择的,如果你想做软件,为什么不直接选择软件呢。

EDA跟普通软件的区别是用户体验在EDA软件中占的比重基本为0。EDA的客户只在乎计算
结果和多快能拿到这个结果。所以你要不断的去提高这一两个数的准确度,同时减少
runtime和memory.  你可以想象为了算准这几个数,都已经做了多少年了。这些问题大
多没有最优解,就是不停的去试新的heuristic是不是会提高结果。一般的软件行业都
是寻找用户还会对什么其他方面感兴趣从而把蛋糕做大。EDA的问题基本上很固定,只
是不断的尝试用新的方法去解决这些问题。因为一般来说进入新的technology, 前面的
那套解法就会break掉。

EDA的工作可以让你写和维护大量C/C++ code, 但是其他方面的软件训练就不是很多了
,还是要靠自己看书提高。因为result driven的因素,EDA公司里的code也肯定不是软
件行业里质量最高的code。

对于已经在EDA行业的,我觉得还可以了。算是比上不足,比下有余吧。对于还没工作
的,不建议把进这个行业做目标。做EDA的人大多编程基础都还不错,好好看看编程多
做做题就有希望去google什么的,做EDA感觉是比较吃力不讨好的。需要懂的东西不少
,但是回报不高。


【 在 IME (微电子) 的大作中提到: 】
: EDA应该是依附于设计公司把,如果设计公司一片繁荣,EDA应该也水涨船高啊
: 就算没有成长空间,如果到EDA公司学会了软件技能,转到软件行业有没有可能呢?

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...