码迷,mamicode.com
首页 >  
搜索关键字:processor    ( 1200个结果
查看Linux上CPU信息
一、命令说明CPU相关的信息从/proc/cpuinfo文件中查看,以下是查看的命令:查看物理CPU数 cat/proc/cpuinfo|grep"physicalid"|uniq|wc-l 查看CPU核心数 cat/proc/cpuinfo|grep"cpucores"|uniq 查看CPU的处理器数 cat/proc/cpuinfo|grep"processor"|wc-l二、实例1.以下命令执行..
分类:系统相关   时间:2015-09-14 12:21:20    阅读次数:222
2.2 ARM处理器工作模式
ARM Architecture Reference Manual Arm 指令框架手册 1. 处理器7种工作模式 Processor modeMode numberDescriptionUser usr0b10000Normal program execution modeFIQ ...
分类:其他好文   时间:2015-09-13 21:38:33    阅读次数:236
java学习:处理逻辑的抽象,processor
以一个简单的例子来记这个抽象的技巧:实现三个方法:1、反转字符串;2、反转List;3、反转Set里的所有元素要求:进行参数校验、结果校验普通写法:(以下三个方法的逻辑都是1.参数校验2.处理3.结果校验,除了2以外基本都一样,多少代码因为各种校验而变得臃肿T_T) public String...
分类:编程语言   时间:2015-09-13 19:57:50    阅读次数:352
Thread多线程stopSleep顺序问题
今天呢,学习了javase多线程,里面的睡眠sleep问题有点困扰:public class Thread_06_stopSleep{ public static void main(String[] args)throws Exception{ Processor p = ne...
分类:编程语言   时间:2015-09-10 10:52:03    阅读次数:186
Cortex-M4 Core Registers
Cortex-M4 Core RegistersGoal:visualizingwhat happens to the Cortex-M4 core registers after resetHere's what happens after the processor is reset:Gener...
分类:其他好文   时间:2015-09-09 01:03:48    阅读次数:135
POJ-1502-MPI Maelstrom
问题描述 BIT has recently taken delivery of their new supercomputer, a 32 processor Apollo Odyssey distributed shared memory machine with a hierarchical c...
分类:其他好文   时间:2015-09-08 15:13:48    阅读次数:180
linux通过命令看cpu参数
cpu物理个数:cat/proc/cpuinfo|grep"physicalid"|sort|uniq|wc-l显示如果是2就说明是有2个物理CPUcpu核心数:cat/proc/cpuinfo|grep"cpucores"|sort|uniq返回如果是6说明是每个CPU有6个核心cpu线程数:cat/proc/cpuinfo|grep"processor"|sort-nk3|uniq|tail-1返回如果是23说明..
分类:系统相关   时间:2015-09-01 14:10:44    阅读次数:185
LabTool : LPC LINK2, LPC4370 cheap scope: 80Ms/s 12 bit
80MHz 12 bit ADC processor LPC4370.LPCxpresso do a LPC LINK2 and LABTOOLS open source oscilloscope demo set. (£84 from Mouser, seems quite well liked....
分类:其他好文   时间:2015-09-01 12:09:40    阅读次数:691
java 完全解耦[编程思想之9.4]
策略设计模式示例package com.ebao.java.interfaces9;public class Processor {public String name(){return this.getClass().getSimpleName();}Object process(Object i...
分类:编程语言   时间:2015-08-31 19:14:41    阅读次数:569
sql server 性能计数器
常规计数器收集操作系统服务器的服务器性能信息,包括Processor、磁盘、网络、内存Processor处理器1.1 % Processor Time指处理器用来执行非闲置线程时间的百分比。通过此计数器可以确定服务器当前CPU使用百分比。1.2 % Privileged Time是在特权模式下进程线...
分类:数据库   时间:2015-08-26 13:46:45    阅读次数:181
1200条   上一页 1 ... 96 97 98 99 100 ... 120 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!