Package eu.stratosphere.compiler.postpass

Examples of eu.stratosphere.compiler.postpass.OptimizerPostPass


   *         situation during the compilation process.
   */
  public OptimizedPlan compile(Plan program) throws CompilerException {
    // -------------------- try to get the connection to the job manager ----------------------
    // --------------------------to obtain instance information --------------------------------
    final OptimizerPostPass postPasser = getPostPassFromPlan(program);
    return compile(program, getInstanceTypeInfo(), postPasser);
  }
View Full Code Here


    final OptimizerPostPass postPasser = getPostPassFromPlan(program);
    return compile(program, getInstanceTypeInfo(), postPasser);
  }
 
  public OptimizedPlan compile(Plan program, InstanceTypeDescription type) throws CompilerException {
    final OptimizerPostPass postPasser = getPostPassFromPlan(program);
    return compile(program, type, postPasser);
  }
View Full Code Here

TOP

Related Classes of eu.stratosphere.compiler.postpass.OptimizerPostPass

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.