Presentation is loading. Please wait.

Presentation is loading. Please wait.

COMPUTATIONAL MODELS Chapter No. 1. What Is Computational Model? zThe common basis of programming language and computer architecture is known as computational.

Similar presentations


Presentation on theme: "COMPUTATIONAL MODELS Chapter No. 1. What Is Computational Model? zThe common basis of programming language and computer architecture is known as computational."— Presentation transcript:

1 COMPUTATIONAL MODELS Chapter No. 1

2 What Is Computational Model? zThe common basis of programming language and computer architecture is known as computational model. zProvides higher level of abstraction than the programming language and the architecture. zComputational model is the combination of the above two.

3 What Is Computational Model? cont’n zE.g Von Neuman Architecture and imperative languages, reduction architecture and functional languages.

4 What Is Computational Model? cont’n

5 What is a computer program? zIt is an executable representation of some algorithm designed to solve some real world problem. zThere are thus two elements to a computer program: zLogic - what we what the program to achieve. zControl - how we are going to achieve the end goal. ALGORITHM = LOGIC + CONTROL

6 Imperative Languages zModel of computation based on a step by step sequences of commands. zProgram states exactly how the result is to be obtained. zDestructive assignment of variables.

7 Imperative Languages con’t zOrder of execution is crucial, commands can only be understood in context of previous computation due to side effects. zControl is the responsibility of the programmer. zE.g ALGOL, Pascal, Ada and C

8 Functional Languages zA program in a functional language consists of a set of (possibly recursive) function definitions and expression whose value is output as the program's result. zFunctional languages are one kind of declarative language. zDeclarative languages allow the programmer to concentrate on the logic of an algorithm (declarative languages are goal driven,control is not the concern of the programmer)

9 Declarative Langauge zModel of computation based on a system where relationships are specified directly in terms of the constituents of the input data. zMade up of sets of definitions or equations describing relations which specify what is to be computed, not how it is to be computed. zNon-destructive assignment of variables. zOrder of execution does not matter (no side effects). zExpressions/definitions can be used as values. zProgrammer no longer responsible for control.

10 Interpretation of the Concept of a Computational Model zThe computational model comprises of three sets of abstraction: Computational Model Basic Items of Computation Problem Description Model Execution Model

11 Basic Items of Computation zThis is the specification of the items the computation refers to the kind computations (operations) that can be performed on them. zE.g of items of computations are: ydata, objects or messages, arguments and functions, elements of sets and predicate declared on them.

12 Problem Description Model zRefers to both style and method of problem description. Problem Description Model StyleMethod

13 Problem Description Style zIt specifies how the problems in a particular computational model are described. Style Procedura l Declarative

14 Procedural Style zIn a procedural style the algorithm for solving the problem is stated. A particular solution is then declared. (Imperative languages uses procedural style) int nfac (int n) { int fac = 1; if (n > 0) for ( int i = 2; i <= n; i++ ) fac = fac * i; return fac; }

15 Declarative Style zFacts and relationships related to the problem have to be stated. Declarative Style Using Functions (applicative computational model ) Using predicts (predict logic based computational model)

16 Declarative Style zFunctional style yrelationships are expressed using functions. z E.g. (square (n) (* n n)) zThis is a function square,that express the relationship between the input n and the output value n*n. z Logic style yrelationships are declared using expressions known as clauses. z E.g. square(N, M):- M is N*N z Clauses can be used to express both facts and rules.

17 Problem Description Method zProcedural style ythe problem description model states how a solution of the given problem has to described. z Declarative style ythe problem description model states how the problem itself has to be described.

18 Execution Model zExecution model consists of three components. Interpretation of the computation Execution Semantics Execution Model Control of the execution sequence

19 Interpretation of the Execution zHow to perform the computation? zIt relates to problem description method z Problem description method and the interpretation of the computation mutually determines and presumes each other. zIn Von Neumann computational model, problem description is the sequence of instructions which specify data and sequence of control instructions and the execution of the given sequence of instructions is the interpretation of the computation.

20 Execution Semantics zA rule that prescribes how a single execution step is to be performed. zThe rule is associated with the chosen problem description method and how the execution of the computation is interpreted.

21 Execution Semantics State transition semantics SLD- resolution Execution Model Dataflow semantics Reduction semantics

22 Control of the Execution Sequence Control of the execution sequence Control Driven Data Driven Demand Driven

23 Control Driven zIn control driven execution it is assumed there exist a program consisting of sequence of instructions. zThe execution sequence implicitly given by the order of the instructions zExplicit control instructions can also be used to specify a departure from the implicit execution sequence.

24 Data Driven zIt is characterized by the fact that an operation is activated as soon as the data is available. zAlso, known as eager evaluation.

25 Demand Driven zThe operations will be activated only when their execution is needed to achieve the final result. zAlso known as lazy evaluation because the ‘delayed until needed ‘ philosophy is applied.

26 Relationships Between the Concepts of Computational Model, Programming Language and the Architecture Computational model Computer architecture Programming language Specification tool Implementation tool

27 Basic Computational Models zTuring zvon Neumann zdataflow zapplicative zobject based zpredicate logic based

28 Von Neumann Computational Model zBasic items of computation ydata is the basic item of computation ydata items are identified by names in order to distinguish between different data items used in the same computation. yThe named entities are known as variables in a programming language and in architectures yMultiple data assignments are allowed.

29 Von Neumann Computational Model zProblem description model yThe computational task is specified as a sequence of instructions (Procedural Model). zExecution model ythe computation is performed according to the given sequence of instructions. yInstruction execution follows a state transition semantics and the model behaves just like finite state machine. yEach instruction transfers the state of the machine to the present state to next one, in a definite way as specified by the semantics of the instruction.

30 Corresponding programming languages Corresponding architectures Computational Model

31

32 Key Concepts Related to Computational Model zGranularity yFrom computational model’s point of view granularity is interpreted as the complexity of the items computation. yFrom parallel architectures point of view granularity is interpreted as size of parallel computations that can be executed without any synchronization or communication.. yGranularity can be classified as fine grained and coarse grained.

33 Granularity Low High Language Class Conventional assembly language Conventional High language Granularity Example Fig 1.21 The interpretation of granularity for programming languages

34 Key Concepts Related to Computational Model zTyping ythe concept of typing is used at a higher level in connection with programming languages but from computational model’s point of view typing of languages and architecture is closely related. yIn typed languages there exist a concept of data type and the compiler or interpreter checks the consistency of the types used in function invocation, expressions etc. ythe language may be strongly typed or weakly typed. yStrongly typed languages are Pascal, Miranda, hope, C

35 Typing yWeekly type languages are LISP, FP. They are also know as untyped languages yTyped architectures are commonly known as tagged. yThey provide a mechanism for typing the data being stored or processed, by extending the data word by tag. yThe tag contain the type identification and usually 3- 5 bits long. yTagging bridge the gap between untyped architecture and weakly typed language


Download ppt "COMPUTATIONAL MODELS Chapter No. 1. What Is Computational Model? zThe common basis of programming language and computer architecture is known as computational."

Similar presentations


Ads by Google