Role of HDL in CPU design? [closed] - vhdl

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 days ago.
Improve this question
What role doest Hardware Description Language such as Verilog or VHDL play in the design of a CPU?
I am a bit confused about the purpose of hardware description language in CPU design. Are they used to program a CPU after it has been made physically, or do they model the design of the CPU in order for the manufacturer to know how to design the CPU electronically (physically)?

Related

Are there any redundant or duplicate code blocks that can be removed? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 days ago.
Improve this question
code refactoring can improve the overall quality and efficiency of software development processes. It should be integrated as an ongoing process in the software development life cycle.
i was expecting real anser for this

What is the difference between MPI and MapReduce? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
Can someone please elaborate the difference between mpi and mapreduce?
For an explanation of what MPI is, see this question. For an explanation of what MapReduce is, please see this question.
There are some differences between both. MPI is a standardized API that has multiple implementations such as OpenMPI or MPICH. MapReduce is mostly a programming paradigm that has a vast amounf of implementations in different programming and database languages.

Designation of algorithms performing automatic learning [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
Can any algorithm that performs automatic learning be called a "machine learning algorithm"? Or is this designation is reserved to the known ML algorithms like SVM, Feature Selection... ?
Any algorithm that learns to do a task by itself and gets better at it is considered machine learning even if it just as simple as computing the joint probability. Only condition is automated learning, that's all.

Is there a framework or methodology for evaluating software engineering models and meta-model? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
In software engineering project and research a lot of model have been made.
Is there a framework or methodology for evaluating software engineering models and meta-model especially in qualitative perspective?
Yes, there is. In fact, there are a lot of evaluation models, such as: Medvidovic, N., Taylor, R.N. A classification and comparison framework for software architecture description languages, Software Engineering, IEEE Transactions on (Volume:26 , Issue: 1), 2000. and this, and that.

Are applications such as image processing naturally slow in Scheme for lacking a random-access data-structure? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
Scheme lists are slow for random access, which is a common operation in many applications such as image processing. Does this make it naturally handicapped for that kind of application?
If performance is a concern, then you should definitely consider using fixed-access-time structures. Fortunately, Scheme has lots of these, too. The "vector" is the simplest one; it's a close match to what most languages call an "array".

Resources