1 / 21

Lecture 21

Lecture 21. Exception Handling and Parallel Programming. Richard Gesick. An exception is an indication of a problem that occurs during a program’s execution. Exception handling enables applications to resolve exceptions.

adanna
Télécharger la présentation

Lecture 21

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Lecture 21 Exception Handling and Parallel Programming Richard Gesick

  2. An exception is an indication of a problem that occurs during a program’s execution. Exception handling enables applications to resolve exceptions. Exception handling enables clear, robust and more fault-tolerant programs. Exception handling helps improve a program’sfault tolerance. Exception Handling

  3. Exception Handling

  4. Consider the following pseudocode: Perform a task If the preceding task did not execute correctly Perform error processingPerform next task If the preceding task did not execute correctly Perform error processing… In this pseudocode, we begin by performing a task; then we test whether that task executed correctly. If not, we perform error processing. Exception Handling

  5. int SafeDivision(int x, int y) { try { return (x / y); } catch (System.DivideByZeroException dbz) { System.Console.WriteLine("Division by zero attempted!"); return 0; } } Exception Handling

  6. Exception handling enables programmers to remove error-handling code from the “main line” of the program’s execution. Programmers can decide to handle all exceptions, all exceptions of a certain type or all exceptions of related types. Such flexibility reduces the likelihood that errors will be overlooked. Exception Handling

  7. A try block encloses code that might throw exceptions and code that is skipped when an exception occurs. try{  open file  perform work on file  close file} try Block

  8. When an exception occurs in a try block, a corresponding catchblock catches the exception and handles it. At least one catch block must immediately follow a try block. A catch block specifies an exception parameter representing the exception that the catch block can handle. Optionally, you can include a catch block that does not specify an exception type to catch all exception types. Catch Block

  9. catch(IO.FileNotFoundException fnfe){  handle file not found (using fnfe object)}catch(Exception e){  handle other type of exception (using e object)  close file} Catch Block

  10. When a method called in a program or the CLR detects a problem, the method or the CLR throws an exception. The point at which an exception occurs is called the throw point If an exception occurs in a try block, program control immediately transfers to the first catch block matching the type of the thrown exception. After the exception is handled, program control resumes after the last catch block. Exception Handling- Termination Model

  11. Programs frequently request and release resources dynamically. Operating systems typically prevent more than one program from manipulating a file. Therefore, the program should close the file(i.e., release the resource) so other programs can use it. If the file is not closed, a resource leak occurs. The finally block is guaranteed to execute regardless of whether an exception occurs. finally Block

  12. Local variables in a try block cannot be accessed in the corresponding finally block, so variables that must be accessed in both should be declared before the try block. finally Block

  13. Do not place try blocks around every statement that might throw an exception. It’s better to place one try block around a significant portion of code, and follow this try block with catch blocks that handle each possible exception. Then follow the catch blocks with a single finally block. Separate try blocks should be used when it is important to distinguish between multiple statements that can throw the same exception type. Reminder

  14. Parallel computing is a form of computation in which many operations are carried out simultaneously. Many personal computers and workstations have two or four cores which enable them to execute multiple threads simultaneously. Computers in the near future are expected to have significantly more cores. Parallel Computing

  15. To take advantage of the hardware of today and tomorrow, software developers can parallelize their code to distribute work across multiple processors. In the past, parallelization required low-level manipulation of threads and locks. Parallel Computing

  16. The Task Parallel Library (TPL) is a set of public types and APIs in the System.Threading namespace in the .NET Framework. This relies on a task scheduler that is integrated with the .NET ThreadPool. The purpose of the TPL is to make developers more productive by simplifying the process of adding parallelism and concurrency to applications. . Task Parallel Library

  17. The TPL scales the degree of concurrency dynamically to most efficiently use all the processors that are available. Parallel code that is based on the TPL not only works on dual-core and quad-core computers. It will also automatically scale, without recompilation, to many-core computers. Task Parallel Library

  18. When you use the TPL, writing a multithreaded for loop closely resembles writing a sequential for loop. The following code automatically partitions the work into tasks, based on the number of processors on the computer. Task Parallel Library

  19. Parallel.For(startIndex, endIndex, (currentIndex) => DoSomeWork(currentIndex)); // Sequential version foreach (var item in sourceCollection) { Process(item); } // Parallel equivalent Parallel.ForEach(sourceCollection, item => Process(item)); The Parallel for and foreach loops

  20. Use .Net Parallel Extensions (Task Parallel Library) and then see the sample/tutorial on how to get this working in the VS IDE. The following example uses lambda expressions, but you can assume this is "magic syntax" for now.  You could also use delegates syntax if you'd like. Code segments

  21. You should see increased performance (reduced time to complete) relative to the number of processors/cores you have on the machine. The final example below is using a shared "results" collection, so there is significant blocking and reduced performance.  How might we solve this? Code segments

More Related