Purchase Solution

Directed acyclic graph (DAG) of a code

Not what you're looking for?

Ask Custom Question

Explain, how to draw a DAG for following loop:

do i=1, 10, 1
x(i)=a(i)-b(i)
y(i)=a(i)+b(i)
d(i)=x(i)/(1+y(i))
end do

Purchase this Solution

Solution Summary

The response elaborates the process, so as to guide the reader to draw a DAG not just for the given "do ... end do" loop, but similar code as well.

Solution Preview

Following response aims at guiding you to draw a DAG not just for the given loop, but similar code as well.
Notation "A --> B" indicates that B waits for the completion of A.

For each of the 10 different values of i, loop bodies (Li) can be executed in parallel, because Li steps are a function of just "i", i.e. Li blocks executions are not ...

Purchase this Solution


Free BrainMass Quizzes
Inserting and deleting in a linked list

This quiz tests your understanding of how to insert and delete elements in a linked list. Understanding of the use of linked lists, and the related performance aspects, is an important fundamental skill of computer science data structures.

Basic Computer Terms

We use many basic terms like bit, pixel in our usual conversations about computers. Are we aware of what these mean? This little quiz is an attempt towards discovering that.

Basic UNIX commands

Use this quiz to check your knowledge of a few common UNIX commands. The quiz covers some of the most essential UNIX commands and their basic usage. If you can pass this quiz then you are clearly on your way to becoming an effective UNIX command line user.

Word 2010: Tables

Have you never worked with Tables in Word 2010? Maybe it has been a while since you have used a Table in Word and you need to brush up on your skills. Several keywords and popular options are discussed as you go through this quiz.

C# variables and classes

This quiz contains questions about C# classes and variables.