A Processor incorporates the functions of a computer's central processing unit (CPU)

learn more… | top users | synonyms

0
votes
3answers
40 views

How to extract line with word from string (java_android)

I have following code: private String ReadCPUinfo() { ProcessBuilder cmd; String result=""; try{ String[] args = {"/system/bin/cat", "/proc/cpuinfo"}; cmd = new ...
-1
votes
1answer
20 views

Same Algorithm works at my PC as Java and at Android Operating System as Android Application [closed]

I know I can' t express my problem at topic. I create a java application at my PC and algorithm works well. After that, i migrate the algorithm as Android application at my phone; but sometimes ...
-3
votes
0answers
22 views

Looking for simple word processor source code [closed]

I want build a simple word processor by myself. But, I'm not good enough to study huge open source like "Open Office". Is any simple source code or book for jump-start? Thanks!!
0
votes
1answer
31 views

Is it neccessary to have “control unit next state register” to be FALLING edge triggered ?

Each module can be consider to have following power: [1] It can store data. [2] It can operate on the data.(arithmetic operation) some property of modules (listing just that, i am concerned with ...
2
votes
3answers
54 views

Processors that have instructions to bypass the cache

Are there any such processors which have instructions to bypass the cache for a specific data? This question also has an answer which suggests that SSE4.2 instructions do bypass the cache. Can ...
2
votes
1answer
43 views

Android Best approach - performance perspective [closed]

I was looking for an official documentation telling this; Which is the best approach to use : Using image(.png/.jpg) as background for Views Using xml/color for background I have heard from lot ...
-6
votes
0answers
22 views

How can i install windows server 2008 in 4 core? [closed]

I have 12 core processor,need to install oracle DB or SQL DB and OS,I wanted to schedule 4 Core for OS and remaining 8 Core for Database,is it posssible to do it ?Can anyone explain? many thanks Nvf ...
-2
votes
1answer
16 views

Word processor for large formatted text files? [closed]

I have a formatted text document in LibreOffice and after 3 months of adding text it has 370KB and it starts being slow to operate. In the nearest future I will need a free word processor designed for ...
0
votes
2answers
37 views

Is there anyway to get all the values inside the processor registrers?

Is there a way, in any programing language to get all the value inside de processor regitrers? For Example: Getting all the value (regardless of format and type, hex, bin) that resides in the ...
2
votes
1answer
55 views

how to design the one-to-one communication algorithm between processors?

Let me show you an example to specify my question. I have 4 processors 1-4. Any two of them have to do some communication. So in order to save time, we can proceed this as follows. Time 1:(1,2)(3,4) ...
-2
votes
0answers
16 views

difference between i/o processor and i/o conto [closed]

What is the difference between I/O processor and I/O controller.?? I have been asked this question in interview which was for trainee in electricity board. I couldn't figure out what she was ...
0
votes
2answers
41 views

Ruby Benchmarking Accuracy - Branch Prediction at its finest?

So this morning I decided to play around with Benchmarking for the first time. I was curious about the speed different between code with "do-end" block formatting vs. "{ }" formatting. So I stored ...
0
votes
1answer
57 views

Number of processor ticks for thread

I need to know how many ticks of processor used by thread knowing its thread id. Because processor in PC is a synchronous device, if my thread is working, it takes processor time. I need to see what ...
1
vote
2answers
59 views

Process Scheduling from Processor point of view

I understand the scheduling is done by kernel, let us suppose a process(P1) in Linux is currently executing on the processor. Since, the current process doesn't know anything about time slice, and ...
-1
votes
1answer
60 views

How is floating point implemented in 32 and 64 bit processors? [closed]

I'm really confused with this. Can someone kindly explain to me how floating point is implemented with a 32 and 64 bit processor? ThankYou
2
votes
1answer
67 views

Is it possible to atomically load and store on X86 processors?

Can this be done atomically? void load_and_store(int* dst, int* src) { int data = *src; *dst = data; } If atomic store has to be done with XCHG [addr], EAX, I would have to load the data into ...
0
votes
3answers
126 views

does c++11 programs work on any CPU?

note:before down vote or anything like this,this is a general question to understand more how everything is going the question simply is: assume I compiled a program with c++11 features (using VS2012 ...
0
votes
0answers
26 views

getting declared field of annotatted class with Annotation processor

I have an annotation processor and I need to get the class associated with an element so I can retrieve its declared fields: @Override public boolean process(Set<? extends TypeElement> ...
0
votes
1answer
41 views

Can Intel VT-x and AMD-V be used in user mode?

Modern CPUs x86 support 'hooking' for certain CPU instructions. Is it possible to utilize these features from ring 3?
0
votes
1answer
38 views

(m4: Macro Processor) Dont understand complex define command

I'm currently reading the book "SPARC Architecture, Assembly Language Programming, and C. Second Edition". I got to a place in the book, where I don't understand or am not able to comprehend a ...
1
vote
0answers
124 views

How do I find the effective Hertz rating of a processor along with L1 cache units? [closed]

So, I have looked over my whole textbook (even chapters unrelated to this question just to make sure) and couldn't find a tiny bit of hint. What I am given is: Processor speed: 2 GHz L1 ...
0
votes
0answers
45 views

How do I know if I can compile with FMA instruction sets?

I have seen questions about how to use FMA instructions set but before I get to start using them, I'd first like to know if I can (does my processor support them). I found a post saying that I needed ...
1
vote
2answers
230 views

Find the processor speed of an Android device in MHz

How can I get processor speed of an Android device in MHz? I'm able to get the speed in terms of BogoMips by reading \proc\cpuinfo file. How can I convert BogoMips to MHz or is there any other way to ...
0
votes
1answer
17 views

In a machine using 16 bit addresses and page size is 512 addresses, what's the maximum size for a process that executes?

Since its 16 bit addresses and page size of 512 addresses, I think that makes the page offset 9 bits (512 is 29) and the number of pages is 216 - 29 = 27. What is the maximum size for a process that ...
-1
votes
2answers
65 views

How can I do multithreading in my own function? [closed]

I am having Intel Core i3 - 2350M Processor 2.30 GHz Processor, 2 GB RAM, 320 GB Hard Drive and MATLAB R2011a. I want to do multi threading in my own function explicitly. So that I can execute one ...
0
votes
1answer
68 views

how to implement parallel computing using SPMD command in MATLAB?

Please anyone suggest me simple programming code using SPMD command in MATLAB by which i can easily see the timing difference between sequential code and parallel code using SPMD command. I have tried ...
3
votes
2answers
91 views

A simple x86 disassembler open source for kernel use

I'm writing a kernel for educational purposes and I want to integrate a disassembler into my kernel. Since I'm going to integrate it into the kernel I want it to be very small and simple, i.e I only ...
1
vote
2answers
292 views

8 bit ALU for microprocessor

I have a project where i am supposed to develop a RISC microprocessor . this involves creating an ALU in behavioral model . however there seems to be problems/errors/warnings while simulating the ...
7
votes
2answers
131 views

Processor count reliability

I'm making an Android game and the performance difference between single core phones such as Galaxy S and dual-core Galaxy S2 is comparable to night and day. Thus instead of making different versions ...
-1
votes
1answer
40 views

32/64 bit OS/processor [closed]

32/64 bit processor means instruction size is 32/64 bit. What does 32/64 bit Operating System mean? what are the advantages of using 64bit OS over 32bit OS.?
0
votes
2answers
80 views

Heroku Dyno Compute Power [closed]

Heroku doesn't list the processor specs that accompany each dyno. I'm new to the platform. Does anybody have this information?
0
votes
0answers
130 views

sysconf (_SC_NPROCESSORS_ONLN) always returns 1

I am running a multi-threaded application, which uses the following function to get the number of online processors and spawns as many threads as the number of online processors. num_cpus = ...
2
votes
1answer
201 views

ARM CPSR - 5 bits for mode?

I'am learning about the arm architecture. 1. I figured that the CPSR had 5 bits allocated to specify the current mode it is executing in. where as we only have about 6-7 different modes for which 3 ...
0
votes
0answers
71 views

How to re-transmit a rtp session using the one/ the same processor in JMF?

Good evening, I am implementing a JMF project which can ping and transmit audio in the same time. I am having some issues. Everything seem fine when I try to transmit the audio across the network and ...
-3
votes
7answers
225 views

How often will processor check while loop condition? [closed]

I know that if the while loop has this body: while(a<b){ do_some_calculations } it will do calculations and then check the while loop again.But if I have an empty while loop: while(a<b) { ...
0
votes
0answers
34 views

Calculate Processor Need Based on Rows Processed Per Minute [closed]

Maybe this question doesn't make any sense, if so let me know... But I'm working with a client that has a busy website and we talking about moving hosting. MySql may process 250,000 rows per minute ...
1
vote
2answers
71 views

Processor Manager and Job Interrupts

This is a question from my homework in CIS-21: Operating Systems class, and I already have an answer, because the instructor gave it to us, but he did not want to explain why THIS was the answer. So ...
0
votes
0answers
58 views

Multi Cards Payment Processor module for Prestashop

I want to integrate Multi Cards Payment gateway with Prestashop. I tried to research on internet but couldn't find any help. Can anybody help me? The payment processor guide is given here ...
0
votes
0answers
20 views

Data Cache coherent with instruction cache

Please could somebody explain what it means for the instruction cache to be coherent with the data cache?
0
votes
2answers
60 views

How to get the chip name and the addressable memory in the specified architectures (x86, pic controller)?

How to get the chip name and the addressable memory in the specified architectures (x86, x64, pic controller) without bios? Have you got specific register which is storage the available memory size?
0
votes
2answers
113 views

Sitecore pipeline processor messing up the CMS

I have a pipeline processor which works as expected on the site, but causes havoc when you go in to the CMS. What is the proper way to determine if the request is to the CMS? Preferably I'd like ...
0
votes
2answers
79 views

64 bit processor running at 32 bit on mac

according to apple's mac processor list a i5 should be a 64 bit processor. According to this video if i type uname -m in terminal i should get x86_64. but in my case it says i386 instead. why is that? ...
0
votes
1answer
17 views

MySQL processor usage on a Xenon on Linux

I run a LAMP server - Ubuntu 12.10 on a Intel Xenon 4 core proc. I notice that mysqld only uses one core leaving the other 3 idle. The server gets some pretty high loads at times and during these ...
0
votes
0answers
38 views

master slave in hetrogeneous distributed environment

I want to implement a master-slave architecture for a program on homogeneous distributed environment. I want to allocate(divide) the task based to different procesors. Can anybody suggest the ...
0
votes
1answer
110 views

is it normal for jquery 'pan' to crash ios safari iphone 4?

I have had many troubles with my site and moved from CSS transitions to Jquery 'pan' effect to make the effect of clouds moving across the sky. The code I am using is this <!-- JAVASCRIPT LOADER ...
2
votes
3answers
80 views

What sets the cap on the RAM a processor can access?

As per this lecture from a professor at IIT, an 8 bit 8085 processor would have 8 bit registers which can be paired to access 16 bit address. He enforces the fact that it can access 16 bit address by ...
0
votes
1answer
67 views

Django context processors and middleware

I'm trying to set a context variable in my custom context_processor which I craft using a request variable. The request variable I'm trying to use is set in my custom middleware. However I get the ...
0
votes
0answers
21 views

Os and processor vendor decisions on system architecture [closed]

Who will be deciding OS vendor or processor vendor on: 1.Which cache mapping to use? 2.What kind of paging(in the first place weather to use paging or not) to use? Also , Does MS will gain from Intel ...
2
votes
3answers
170 views

Does larger cache size always lead to improved performance?

Since cache inside the processor increases the instruction execution speed. I'm wondering what if we increase the size of cache to many MBs like 1 GB. Is it possible? If it is will increasing the ...
0
votes
0answers
32 views

What optimization algorithms are used for multi-level cache?

I have read about processor and cache inside the processor to speed up the processing for recently used operations. However whenever we implement multilevel cache such as (L1, L2, L3 etc) we have to ...

1 2 3 4 5 7