由买买提看人间百态

topics

全部话题 - 话题: specs
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
m***t
发帖数: 254
1
posix thread is the spec, linuxthread is the older implementation of this
spec. nptl is the current implementation of this spec.
o**2
发帖数: 168
2
来自主题: Programming版 - FMP tutorial
有本质的不同,体现在FMP比task更进了一步。首先,FMP把这些task集中起来放在一个
active object里了;然后再对这个active object抽象了一次,把它完全变成了一个
object的spec;最后,由其它一个(甚至多个)solid的impl object来实现这个spec。
(see figure below)
FMP里的messenger object是整个体系的关键,不同的messenger implementations只要
能维持active object的spec和语义一致不变,那user programs就完全不受影响了。于
是messenger object在内部怎么搞都可以了,比如:可以用一个impl object;可以用
多个impl objects来支持一个active object;甚至可以用非object,比如C,来实现这
个active object;再比如可以自由安排内部的thread等。
FMP对message的data type没有定义,完全留给实现者根据具体的语言决定其特定的风
格。这也导致了FMP不能实现在编译时做静态类型检... 阅读全帖
f***c
发帖数: 338
3
来自主题: Programming版 - 问问g++, gcc, cc之间的关系
写了一段代码,用g++编译顺利通过。
想到前几天曾讨论过编译器对int main(),void main()的处理不同问题,就顺手试了cc
和gcc。这一试不打紧,居然都不能通过。
OS: Debian GNU/Linux 6.0.3 (squeeze)
然后就看看个编译器的version,居然是一样的。但是对同样的代码的编译处理区别怎
么这么大呢?
彻底懵了,请达人解惑,谢谢。
g++ -v
Using built-in specs.
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 4.4.5-8' --
with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs --enable-languages=c,c
++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.4 --enable-shared
--enable-multiarch --enab... 阅读全帖
o****e
发帖数: 417
4
来自主题: Programming版 - goodbug劝你一句,不作不死
哦,首先澄清一下条件:第一,每秒百万张票(不同起点终点),否则你搞一个1百万张
同样的票就没有必要讨论了。第二,每人限购5张票,那么transaction数目是每秒20万
到1百万之间,实时出票。第三,单机,最多128个CPU;第四,全国任何站点都包括。
第五,12306支持每新出一条线路和车次,就自动更新,无需更新代码。
如果这些条件没错的话瞻仰一下老魏。那么请教老魏你说一下你的设计spec:
1。中国境内火车站大约有5752个,几千个车次,几百条线路,形成一个有向双向可行
驶的网。每秒百万张票意味着图论算法要在1us内完成在这个复杂有向图里的路由问题
。怎么解决?有没有spec可供参考,解决方案里的硬件有没有可能买得到。
2。单机每秒20万到1百万transaction,瓶颈应该在数据库的写动作(和网络传输)。老
魏你的spec要求怎样,解决方案里的硬件有没有可能买得到?
如果老魏能合理地解决以上两个问题,估计就能做得出。要求写代码做出系统来才算正
确的话,那不是讨论问题的方式。
j******a
发帖数: 100
5
来自主题: Programming版 - 代码开源了
就事论事,我工作是装机的,平常不光这班的,来看热闹的,不知道谁定下的需求,明
显是坑好虫来的
因为过手的机器很多,很多CPU spec都是我跑的,极品的customer碰到不少,经常有
customer发给我一些小code来chanllege我装的机器的performance,说我贴的spec分有
水分,还总是威胁说,你要不给我跑到多少多少秒我就找隔壁韩二戴四装机了,当然隔
壁装的机器比我的贵多了
其实我要说的是,实际上的这些customer的应用比cpu spec,opemMP的那些benchmark
复杂,而他们的程序源虽然刷白板很厉害,却从来不管下边的脏活,一般的交流都是鸡
跟丫讲
所以也难怪
y*****p
发帖数: 733
6
来自主题: Unix版 - help! Re: some wt

/usr/local/lib/gcc-lib/sparc-sun-solaris2.5.1/2.95.2/

when
果然原来设置了
# Environment for Ada
setenv GCC_EXEC_PREFIX /opt/ada/lib/gcc-lib/..
不懂这个ADA 是何物。不管,
setenv GCC_EXEC_PREFIX /opt/gnu/lib/gcc-lib/...
再 g++ -v 看看
Reading specs from /opt/gnu/lib/gcc-lib/sparc-sun-solaris2.6/2.8.1/specs
gcc version 2.8.1
现在编译就没有问题了.
没有解决的问题是,如果我按如下设置(这个是例子程序的设置)
setenv GCC_EXEC_PREFIX /usr/local/lib/gcc-lib/...
用g++ -v 看到的结果也是 Reading specs from /opt/gnu/lib/gcc-lib.....
但是在/usr/local/lib 目录下根本没有gcc-lib 这个目录,怎
j******g
发帖数: 1098
7
来自主题: EE版 - video codec ASIC from scratch?
我觉得你基本上没看懂VP8的spec,当然也不能怪你
VP8的spec写的其烂无比,充其量是一个软件文档。
VP8的整数DCT在整个解码器里是一个很小很小的模块,整数DCT,如果butterfly也在
spec中定下来了,那个iDCT模块的verilog代码也就几十行。你可以去对着google开源
的vp8的代码看看。
希望对你有用。
不过我觉得google马上就要吃专利官司了,vp8模仿了不少264的技术,google这头肥羊
不宰,那就没天理了,lol
M**********e
发帖数: 44
8
来自主题: EE版 - A question on USB physical layer
Hi,
I am wondering why USB 2.0 can achieve 480bps rate.
I had a look on USB 2.0 spec, there isn't any modulation scheme. There is
only scrambling (every contineous "1", insert a "0" ) and NRZI coding. Does
it mean the 480Mbps signal is transmitted directly (i.e. 1 bit occupies 2.08
ns, and this signal can be sampled by local 480MHz clock directly )?
I know there are several other methods to improve speed in USB. Such as
transmitting signal by differential, and the cable is shielded, short
distan... 阅读全帖
m*****t
发帖数: 3477
9
在摩尔精英上看到这篇评论,主要是讲国内IC特别是Analaog的现状。绝得靠谱。
这里的人对美国这边业界的情况可能更了解一些。板上也不少师出Wooley, Gray,
Allen, Abidi, Razavi, Sánchez, Song, Moon等名门的高徒。欢迎大家讨论和发表看
法。
PS: 像“半导体怎么样也不及CS”这种谁都知道且没营养的话,就不用再在这里累述了。
————————————————————————————————————
近来闲来无事看了一下招聘网站,发现电子行业工程师与互联网工程师的差距越拉越大
,颇感凄凉。而在电子行业内,不同岗位的待遇也千差万别。就好像模拟这个岗位,从
2007年走到高峰以后就一直往下走,待遇感觉也逐渐抛离。在与朋友讨论这个问题的同
时,朋友甩过来水木社区上的一个讨论,我们来看一下大家是怎么看待模拟待遇式微的
这个现象:
回答者:icore
现在做模拟的兄弟很多是给当年的老炮给忽悠来的。
什么模拟是艺术,什么格雷,拉扎维,艾伦,三森吹的像圣经。还有什么bob pease,
widlar江湖人物一般的个人传记,本版也是帮凶,什么模拟ic的九... 阅读全帖
o*********s
发帖数: 275
10
来自主题: Law版 - 请教几个名词,多谢!
Tech spec and patent paralegal are very different positions. Tech spec
usually has a science or engineering degree, in a lot of cases advance
degree. Tech specs usually help attorneys or work independently on patent
drafting and prosecution, provide litigation support and so on. Patent
paralegals are usually responsible for filing patent, keep portfolio, keep
track of deadlines and billing, etc...
Associate is a position for a professional employee, usually an attorney in
a law firm. Associat... 阅读全帖
S******w
发帖数: 195
11
No.
Set rings R=Q, S=Z, T=Z/nZ;
u: S->R: a->a, v: S->T: a->a mod n;
X=Spec R, Y=Spec S, Z=Spec T.
Then u induces dominant f: X->Y, v induces morphism g: Z->Y;
f' is induced by T->(R tensor T over S, which is 0). So f' is not dominant.
H*N
发帖数: 44
12
来自主题: Pharmaceutical版 - 专利前景
认识的几个同道都是这样:
PhD毕业 有机化学、物理化学、生物、化学之类 (有几个人在上学期间考过了LSAT)
然后进专利律师事务所,从Tech Spec干起
第一年做Tech Spec, 同时通过Patent Bar考试
第二年起白天工作,晚上念法学院夜校,念四年,拿JD(这一阶段很苦)
第五年JD毕业,考过Bar,正式成为律师,职称有Tech Spec 改成Associate,然后拼命
工作熬到中高层(Principal 或者Partener,这一阶段最漫长)
当然工资水平比在药厂里面做实验要高,而且高不少

agent
s******y
发帖数: 352
13
we program per SPECs. the OP gives vague Specs on how to choose the cloeset
d1 to D2. i just assume the question 1 will be imposed on question2.
again, SPECs will guide your program's implementations.
But, your points or concerns are well taken.
i*********5
发帖数: 19210
14
How does Trek keep its prices down compared to lets say, Cervelo?
http://forums.roadbikereview.com/trek/how-does-trek-keep-its-pr
terbennett
I hate to say it but someone should. Made in USA doesn't mean much in the
bike industry. you can rip on Asian made bikes but the quality is equal to (
sometimes even surpass) their US built counterparts. Made in Asia is
considered cheap because bottom of the barrel department store bikes are
made there. However, most high end Asian made bikes are designed i... 阅读全帖
s******s
发帖数: 1584
15
昨天去面个政府工,medical technologist III 的职位。楼主是生物专业的万年
薄厚,能申到这个职位个人感觉纯属巧合,当然相似的地方是现在的工作用到Mass
Spectrometer,之后的也是,就只有这一个关键词对上了
政府工的面试是非常standard. 问题是HR设计好的,每个Candidate都一样,面试
的人就是负责把题目念一遍。流程是先发给你上面有题目的3张纸,一共9条题目,有半
个小时想怎么答,他们过半个小时来,念题目,我答,他们把我讲的话一个字不漏的抄
下来说是这样以后有据可查(我非常惊讶他们不弄个录音机啥的,因为我跟面试的两个
人几乎没有任何交流,他们只负责念题加抄写,最后洋洋洒洒抄了三大张)以下是题目:
题目是不可以外漏的,不要转载啊!!!!
behavior questions:
1) How to deal with a difficult co-worker?
2) How to deal with a stressful situation?
General:
1) what is the most important t... 阅读全帖
l******n
发帖数: 11737
16
《GT5》山内一典FAMI长篇访谈:OP含义|删除的赛道|续集PS3?|今后更新|最爱兰博基
尼等
http://bbs.a9vg.com/thread-1651404-1-1.html
翻译自上周fami
请随便转载,心情好可以加翻译者名字
(译者是A9死恐心也,lalaphin注)
目标世界同时发卖的各种艰辛
————首先请说下6年开发终于结束的心情
山内:总之能够坚持开发直到面世让我觉得很高兴。GT5的概念是尽量体现出“面向未
来”,想做出有神秘感的东西。既然是神秘的东西,那就是无法捕捉和瞄准的东西。为
了达成这样的目标进行的开发过程异常艰辛。此外,GT4之后也并没有保证一定会有GT5
,根据具体情况也有可能系列在GT4终结。理由可能就是觉得没法再做下一作了,所以
能走到现在这一步感觉真的是干得不错。
————那么所谓神秘的东西,某种程度上是否觉得实现了呢?
山内:有粗糙、也有细致完成的地方,但总之我觉得算是达成了。
————发卖4天后,日本卖了41万呢。
山内:在GT系列登场的13年时间里,考虑到日本汽车起伏的现状和国内游戏市场的特殊
性,我觉得某种程度上算是和预期相同的数字。... 阅读全帖
l**********l
发帖数: 4468
17
来自主题: _Auto_Fans版 - 今天带朋友去买了辆车。。。
看了六缸camaro,这车根本没法开,什么都看不见,视野也太垃圾了;看了2.0 T R-
spec的genesis coupe,这哥们不会开车只要自动档,其实他很想要这辆车,但是最后
被我劝得不买了,一个原因是我觉得这车自动档垃圾,二是需要调车今天拿不到,还有
我们这里路况天气都很恶劣,新手开个后驱的估计几天就挂了,要不就要新车一买来就
买新圈上雪胎。其实给的价格我觉得蛮好,2万4包括税出门价自动档R-spec,MSRP是24
,500 invoice$23,294,运费800的样子,加自动档怎么也要1000-1500了。 后来回家查
了一下觉得有点怪怪的,cars.com上面你选r-spec根本没有自动档可以选呢,不知道咋
回事。
后来看到这里scion有一辆新的装了TRD配件的release 7.0,很好看样子太骚了。只出
了黄色,上面有铭牌一共做了2200量这个第几辆,有TRD bodykit每块上面都有trd字样
,椅子上面用黄色highlight,TRD排气管声音非常赞,后视镜黑色的,18寸的黑色trd
圈,TRD engine start button。两万三出门的样子。居... 阅读全帖
h****y
发帖数: 9234
18
我开过02的spec v和03的si,个人感觉spec v动力要更强劲一些(本来也是马更大).而且
六速也挺爽的. 而且spec v标配有LSD.这个当时的si没有
不过si可靠性好点吧. 各有千秋,
不过这些都不在LZ的预算范围就是了
c*********r
发帖数: 19468
19
wiki……
http://toyota.jp/86/spec/
http://www.toyota.de/automobile/gt86/index.json#/publish/compar
http://www.subaru.jp/brz/brz/spec/spec.html
http://www.subaru.de/fileadmin/downloads/modelle/brz/pta/Subaru
……
你找找看那个用PS的市场Toyota或者Subaru不是标200的呢?
你不觉得一般来说我比wiki可信一些吗?
w*******y
发帖数: 60932
20
Link:
http://accessories.us.dell.com/sna/productdetail.aspx?sku=A3913945
The 42" class (42" diagonal) LC-42SB48UT, with full HD spec 1080p resolution
and an elegant design, produces superb picture quality. The LC-42SB48UT
features high contrast, a fast response time and wide viewing .
Market Value1 $949.99
Total Savings $490.00
Dell Price $459.99
10% cashback from Discover Card if you shop through their site and pay using
their CC.
Highlights
Experience full HD 1080p... 阅读全帖
w*******y
发帖数: 60932
21
Newegg.com
Rosewill - Pellucid HD Series High Speed HDMI cable (6 FEET) $2.99 FS
Brand
Rosewill
Model
RC-6-HDMI-MM-BK-3
Type
HDMI Cables
Color
Black
Spec
Length
6 feet
Connector Number
2
Terminal Gender
M-M
Speed
10.2 Gbps
Standards
Shielding
Triple-shielded
Spec
Specifications
Supports High Speed 10.2 Gbps at 340 MHz
Supports Sony Playstation3, XBOX, Blu-ray, DVD/ Blu-ray recorder,
digital cameras, video cameras, home theatre system and others.
S... 阅读全帖
w*******y
发帖数: 60932
22
Starting Sunday 2/13, Officemax and Officedepot have some good laptop deals.
These notebooks can be found in their respectable weekly ads.
Deal has not started yet.
Shipping is free.
Officedepot:
http://www.officedepot.com/a/products/900546/Lenovo-IdeaPad-Z56
has the Lenovo IdeaPad Z560 (0914-42U) Laptop for $449.99.
Specs:
Intel Core i3-380M 2.53GHz Processor With Hyper-Threading Technology
4GB DDR3 PC3-8500 Memory
320GB Hard Drive
Intel HD Graphics with shared memory
15.6" LED-Backlit Screen... 阅读全帖
w*******y
发帖数: 60932
23
For some reason I have pita time of real links with this site, so you might
have to search via item number. I linked to the other 2 combos that are
slightly more but might have better specs for your purpose.
Might be a nice rod reel combo to throw in the car for 'emergency fishing'
Ready 2 Fish Ultralight Spinning Combo - Trout $11.47
Item Number: 3708351
*** other combos available for not much more***
Link:
http://www.sportsauthority.com/search/index.jsp?kw=ready 2 fish&s=A-StorePrice-TSA&lmdn=... 阅读全帖
w*******y
发帖数: 60932
24
Original price : 1293
Sale price : 799
Link:
http://www.sears.com/shc/s/p_10153_12605_04651103000P?vName=App
#specs" rel="nofollow" target="_blank" onclick="_gaq.push(['_trackEvent', '
thread', 'click', '2949187 - kenmore-stainless-steel-25.1-cu.-ft.-sidebyside
-refrigerator-w-icewater-dispenser-energy-star']);">http://www.sears.com/shc/s/p_10153_12605_046511 03000P?vName=Applian ces&keyword=04660933 000p|04651103000p|04 671022000p|046282620 00p|04671053000p|046 51039000p&resultsLab elTex... 阅读全帖
w*******y
发帖数: 60932
25
E2420HD $130 FS : Link:
http://shop.benq.us/ProductDetail.aspx?id=249
Note: The E2420HD is CCFL-backlit(no image quality difference, just uses
more power). However, it's power consumption seems reasonable according to
the EPA: Link:
http://www.energystar.gov/index.cfm?fuseaction=find_a_product.s
Specs:
Product Color
Product Color Glossy Black
Display
Screen Size 24.0"W
Aspect Ratio 16:9
Resolution (max.) 1920x1080
Pixel Pitch (mm) 0.276
Brightness ( typ.) 300 cd/
Contrast... 阅读全帖
w*******y
发帖数: 60932
26
Starting Sunday, Staples:
http://www.staples.com/StaplesProductDisplay?fromUrl=home&catal Aspire AS5250-BZ467 15.6" Laptop&ddkey=http:StaplesSearch
will have the Acer Aspire AS5250-BZ467 Laptop for $299.99 with free
shipping.
Deal has not started yet
Similar specs to the lenovo FP deal a couple days ago, but almost better (
upgraded) specs in every way, at the same price.
Specs
AMD Dual-Core E-450 1.65GHz
4GB DDR3
500GB HDD
15.6" 1366x768 LED Display
AMD Radeon HD 6320
... 阅读全帖
w*******y
发帖数: 60932
27
MacBook Pro 15.4" MD035LL/A Laptop Computer
Link:
http://www.microcenter.com/single_product_results.phtml?product
Product Features
2.3GHz quad-core Intel Core i7 processor
1680 x 1050 high resolution & antiglare display
4GB 1333MHz DDR3 SDRAM - 2x2GB
750GB Serial ATA Drive @ 5400 rpm
Specs on Amazon.
Link:
http://www.amazon.com/Apple-MacBook-Antiglare-Widescreen-MD035L
I know the Microcenter specs says 1440x900, but I've verified in-store that
these come with the hi-res/anti-glare display.
Same ... 阅读全帖
w*******y
发帖数: 60932
28
55" Panasonic Viera TC-P55ST30 3D 1080p 600Hz Plasma HDTV $899.99 Free
shipping from Sears.com
Get an extra 5% off by using your Sears credit card.
$912.50 after tax and 5% discount
Discount shown at checkout
Link:
http://www.sears.com/shc/s/p_10153_12605_05775561000P?sid=IAx20
#specs" rel="nofollow" target="_blank" onclick="_gaq.push(['_trackEvent', '
thread', 'click', '3943070 - 55-panasonic-viera-tcp55st30-3d-1080p-600hz-
plasma-hdtv-899.99-free-shipping-from-sears.com']);">http://www.sears.c... 阅读全帖
l*********y
发帖数: 1011
29
问题是SPEC变了。这个SPEC首先就包括操作人的能力,也包括客观的条件。
就是太祖在世,到今天来搞太祖战略,那说句不好听的:一个派出所就把他镇压了。
太祖战略在今天,需要有所改变,用在别的地方。
y*h
发帖数: 25423
30
你在业内还是不明白啊,苹果带来的是fashion的广告效应,对于工程师没多大的
影响力,而消费者根本看不到苹果里面的芯片,也不在乎是谁的芯片。工程师要
看的是specs和datasheet,虽然芯片厂打广告来推销specs,但是不是苹果的
广告,也不是苹果那种广告。
t******t
发帖数: 15246
31
来自主题: Military版 - 龙芯3A的性能曝光
2011年3月3日,中科院高技术局在计算所组织召开了由我所承担的院知识创新工程重要
方向项目“高性能多核CPU结构设计及原型系统研究”验收会。该项目是科学院针对“
十五”末和“十一五”初龙芯处于“青黄不接”的情况下专门设立的,作为龙芯3号处
理器的预先启动研究项目,主要研究片上多核处理器设计的关键技术,并完成龙芯3号
处理器的方案设计、结构设计和逻辑设计,力争在多核处理器的结构设计方面达到国际
领先水平。
经过科研人员的努力,该项目很好地完成了任务书中规定的研究任务,达到了研究目标
。主要完成了四核龙芯3号的结构设计、逻辑设计,完成了FPGA验证系统。提出了“
MESH+CrossBar”的可伸缩多核结构、I/O优先的处理器结构、软硬件协同的X86二进制
翻译、低功耗的多核测试技术,并有效地应用于四核龙芯3A中。相关研究成果发表在国
际体系结构领域顶级会议和期刊上(ISCA、HPCA、IEEE Micro等),达到了世界先进水
平。其中,软硬件协同的X86二进制翻译技术在国际上产生了重要影响。
基于该项目提出的技术,在国家863计划项目支持下研制成功的四核龙芯3A,采用 65纳
米CM... 阅读全帖
z***e
发帖数: 5393
32
来自主题: Military版 - 华为Mediapad 10 对比 ipad 3
true.
所以拿这些spec来比是没有意义的。你可以对PC来比hardware spec,因为软件系统是
一样的。即便是PC,对于跑linux的和跑windows的来单纯比较硬件就已经意义不大。
现实的情况是,iphone用起来就是比android舒服,大部分人说的是我要买iphone/ipad
,而不是说我要买个4个core gpu的pad...
h******k
发帖数: 13418
33
不是可行不可行,是必须行,提高国民收入是必须的,否则中国要出大问题。
报告是确定方向的,是function spec,不是提解决实现的,那是design spec的事。
x****u
发帖数: 12955
34
来自主题: Military版 - 中国无法让J15作战起飞

40
That's only because you weren't driving according to the manufacturer spec.
The spec didn't lie.
g***j
发帖数: 40861
35
来自主题: Military版 - dealsea 上关于华为手机的评论
nts (20) ›Add Comments
07/14/2013, 02:51pm By anonymous
Nice !! Ships within 1 to 2 months !!
07/14/2013, 02:54pm By anonymous
lol, 1-2 months
07/14/2013, 04:06pm By lwang9
The spec is close to Samsung Focus which original launched 3 years ago.
07/14/2013, 04:46pm By anonymous
It is undoubtfull that Huawei would surpass Samsung in very soon; look at
the the technician inside Huawei you will know, they are excellent and hard
working than any country engineers.
07/14/2013, 04:53pm By anonym... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)