Parasail

成立时间:October 17, 2014

Project Parasail is a novel approach to parallelizing a large class of seemingly sequential applications wherein dependencies are, at runtime, treated as symbolic values. The efficiency of parallelization, then, depends on the efficiency of the symbolic computation, an active area of research in static analysis, verification, and partial evaluation. This is exciting as advances in these fields can translate to novel parallel algorithms for sequential computation.

Here’s an example of how it works. Imagine an algorithm that has three components, F, G, and H. F takes some data as input and generates a result. That result is used by G, possibly along with some other data, to compute its result. Then H uses G’s result (and again, possibly some other data) to compute the final result.

sequential

Because of these dependencies, G cannot start executing until F has finished. Likewise, H cannot start executing until G has finished. How can we possibly execute this algorithm in parallel? We do that by starting G (and H) at the same time as F. F executes using the real input data, but G and H are given a symbolic input, x. They are then executed in a symbolic manner which generates a summary: g(x) for G and h(x) for H. A summary is itself a function that, given a concrete input, generates a concrete (i.e., not symbolic) output. So once F has computed its output, that is used by g(x) to compute the output that is then used as input by h(x).

parallel

The final, concrete, result is the same as that computed by the sequential algorithm. In order for this to be efficient, it must be possible to do two things:

  1. The summary of a component must be “small”: i.e., it must be concise enough so that it can be communicated easily in a parallel implementation to the process that will execute it on concrete input.
  2. The execution of a summary must be efficient (which is related to its size): if it takes as long to execute the summary as it does to execute the original component, then the parallel implementation will be no faster than the sequential algorithm.

人员

Microsoft

Madan Musuvathi的肖像

Madan Musuvathi

Partner Research Manager

Jacob Nelson的肖像

Jacob Nelson

Senior Research Software Development Engineer

Olli Saarikivi的肖像

Olli Saarikivi

Senior Researcher

Interns

Zixian Cai的肖像

Zixian Cai

Research Intern

Australian National University

Roshan Dathathri的肖像

Roshan Dathathri

Research Intern

University of Texas at Austin

Gurbinder Gill的肖像

Gurbinder Gill

Research Intern

University of Texas at Austin

Abhinav Jangda的肖像

Abhinav Jangda

Research Intern

University of Massachusetts Amherst

Amir Hossein Nodehi Sabet的肖像

Amir Hossein Nodehi Sabet

Research Intern

University of California, Riverside

Zhengyang Liu的肖像

Zhengyang Liu

Research Intern

University of Utah