Package org.trifort.rootbeer.generate.bytecode

Examples of org.trifort.rootbeer.generate.bytecode.GenerateForKernel


   
    SootClass soot_class1 = Scene.v().getSootClass(cls);
    SootMethod method = soot_class1.getMethod("void gpuMethod()");
   
    String uuid = getUuid();
    GenerateForKernel generator = new GenerateForKernel(method, uuid);
    try {
      generator.makeClass();
    } catch(Exception ex){
      ex.printStackTrace();
      OpenCLScene.releaseV();
      return;
    }
View Full Code Here

TOP

Related Classes of org.trifort.rootbeer.generate.bytecode.GenerateForKernel

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.