跳至主要内容

【转】ARM11 MPCore多处理器

ARM11 MPCore多处理器
2007-04-06 16:33

ARM公司于20057月向其合作伙伴演示了首款ARM11 MPCore多处理器(multiprocessor),其功耗仅为600毫瓦,但具备1440 Dhrystone MIPS的性能。这款测试芯片基于ARMv6指令集结构,由四枚缓存运行一致的处理器组成,由NEC采用通用130nm制造工艺加工而成,并没有对性能或功率进行优化。

ARM多处理项目经理John Goodacre表示,该测试芯片工作的时钟频率高达300MHz。他接着指出:"该芯片意在方便我们测试多处理设计和缓存的功能性,正因为如此,它在工艺和库的选择上比较保守。尽管如此,我们毕竟创造出了处理能力最高的单芯片ARM处理器。"

Goodacre表示,ARM的授权对象未来将能够在更高性能的130nm工艺和优化库中,进行可综合的设计,并有望实现350Hz550MHz的时钟频率性能,而这是商用ARM11通用处理器的典型值。

一年前,ARM曾表示MPCore能够配置成包含1个到4个处理器,具有高达2600 Dhrystone MIPS的性能。ARM11 MPCore处理器测试芯片是ARMNEC合作开发下一代基于对称多处理技术的多处理器内核的结晶。它得到瑞典KTH皇家技术学院OpenMP编译器技术的支持,得以减少高达85%的功耗。现在已经了采用ARM11 MPCore的智能手机和移动视听设备上市。

评论

此博客中的热门博文

【转】smb协议栈使用示例

/*  * * uncdownload.c  * *  * * Utility for downloading files from SMB shares using libsmbclient  * *  * * Copyright(C) 2006 Sophos Plc, Oxford, England.  * *  * * This program is free software; you can redistribute it and/or modify it under the terms of the  * * GNU General Public License Version 2 as published by the Free Software Foundation.  * *  * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without  * * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  * * See the GNU General Public License for more details.  * *  * * You should have received a copy of the GNU General Public License along with this program; if not,  * * write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA  * *  * */ # include < sys / types . h > # include < sys / time . h > # include ...

【转】Ether Types

Ether Types (last updated 2008-09-09) NOTE: Please see [RFC5342] for current information and registration procedures. This registry will be revised soon and will be replaced with up-to-date information. Many of the networks of all classes are Ethernets (10Mb) or Experimental Ethernets (3Mb). These systems use a message "type" field in much the same way the ARPANET uses the "link" field. If you need an Ether Type, contact: IEEE Registration Authority IEEE Standards Department 445 Hoes Lane Piscataway, NJ 08854 Phone +1 732 562 3813 Fax: +1 732 562 1571 Email: <ieee-registration-authority& ieee.org > http://standards.ieee.org/regauth/index.html The following list of EtherTypes is contributed unverified information from various sources. Another list of EtherTypes is maintained by Michael A. Patton and is accessible at: <URL: http://www.cavebear.com/CaveBear/Ethernet/ > <URL: ftp://ftp.cavebear.com/pub/Ethernet-codes > Assign...

【转】udp编程实例

UDP通讯实例 2008-04-29 15:30:05 / 个人分类: linux C编程 UDP协议的几点好处: 1.UDP不要求保持一个连接; 2.UDP没有因接收方认可收到数据包(或者当数据包没有正确抵达而自动重传)而带来的开销; 3.设计UDP的目的是用于短应用和控制信息; 4.在一个数据包接一个数据包的基础上,UDP要求的 网络 带宽比TCP更小。 UDP的几个缺点: 1.程序员必须创建代码检测传输错误并进行重传(如果应用程序要求这样做); 2.程序员必须把大数据包分片。 code: <1> /* * sender.c--UDP protocol example */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <netdb.h> int port = 6789; int main() {     int socket_descrīptor;     int iter = 0;     char buf[80];     struct sockaddr_in address;     /* Initialize socket address structure for Interner Protocols */     bzero(&address, sizeof(address)); // empty data structure     address.sin_family = AF_INET;     address.sin_addr.s_addr = inet_addr("127.0.0.1");     address...