John von Neumann is one of the founding fathers of computing and a major 20th century mathematician. Questions under this tag generally relate to what is now known as the 'von Neumann architecture' for stored-program computers.
0
votes
0answers
54 views
Simple truly random number generator
There is a lot of research going on related to generating "truly" random numbers.
There is a very simple method, invented long time ago.
The method is attributed to von Neumann [1].
In the most ...
1
vote
1answer
109 views
How to evaluate new CPU architecture with existing one
I have a new computational architecture idea rather than Von-neuman. Current machines are based on Von-neuman's CPU-Memory logical separation based. While in my case it is possible to fuse Memory-ALU ...
1
vote
1answer
237 views
Von Neuman Architecture, is this still applicable
Reading the article on Wikipedia on Von Neumann Architecture, it says the following
The meaning of the term has evolved to mean a stored-program computer
in which an instruction fetch and a data ...
3
votes
2answers
218 views
Use cases for self-modifying code?
On a Von Neumann architecture, program and data are both stored in memory, so a program can modify itself. Is this useful for a programmer? Could you give some examples?
0
votes
0answers
132 views
How do i perform mean filtering on 2D arrays in java
I'm a novice java coder and need help with using the von Neumann neighbourhood of radius 1 to perform a mean filtering on 2D arrays. start by creating a 300 by 300 array of random double values, then ...
0
votes
1answer
459 views
How to add two array's of numbers together using the IAS instruction set?
I have to write a program using the IAS instruction set that will loop through two arrays and add each element of the one to the other and store the result in a thrid array. So for example I have to ...
0
votes
1answer
389 views
introduction to CS - stored-program concept - can't understand concept
I really do tried to understand the Von Neumann architecture, but there is one thing I can't understand, how can the user know the number in the computer's memory if this command or if it is a data ?
...
6
votes
3answers
655 views
Some doubts regarding diagram of Von Neumann Arcitechture
Well I cant understand the above diagram of Von Neumann architecture [Cited from wikipedia] and not even sure whether it is correct. Some obvious doubts that I have -
How can ALU communicate with ...
2
votes
7answers
777 views
Are there any current non-Harvard architecture microcontrollers?
I have used and like the Atmel ATMEGA and ATTINY series microcontrollers, and think them quite good. One thing I am not terribly fond of though is the fact that they (and Microchip PIC uC family also) ...
6
votes
4answers
305 views
What would the assembly language equivalents of the operations on the original Turing machine be?
If you take the original Turing machine definition as follows:
...an infinite memory capacity
obtained in the form of an infinite
tape marked out
into squares, on each of which a symbol ...
14
votes
5answers
3k views
Turing Model Vs Von Neuman model
First some background (based on my understanding)..
The Von-Neumann architecture describes the stored-program computer where instructions and data are stored in memory and the machine works by ...
1
vote
2answers
313 views
von-Neumann machines and Lambdas
Brian's premise in his argument to the question "Are side effects a good thing?" is interesting:
computers are von-Neumann machines that are designed to work well with effects (rather than being ...
5
votes
2answers
358 views
Types of computers
I have read somewhere recently something related to the kind of computers.
The reading was related to Lisp and Emacs that fit into an "architectural" model more like a Turing Machine.
In the other ...