Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/19/08 16:29:44 (16 years ago)
Author:
gkronber
Message:

improved RAM footprint of distributed-engine by serializing only the part of the scope-tree that contains the scope (including sub-scopes) on which a parallel operation 'operates' on. (ticket #153)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.DistributedEngine/JobManager.cs

    r265 r268  
    7777    }
    7878
    79     public WaitHandle BeginExecuteOperation(IOperatorGraph operatorGraph, IScope globalScope, AtomicOperation operation) {
    80       ProcessingEngine engine = new ProcessingEngine(operatorGraph, globalScope, operation); // OperatorGraph not needed?
     79    public WaitHandle BeginExecuteOperation(IScope globalScope, AtomicOperation operation) {
     80      ProcessingEngine engine = new ProcessingEngine(globalScope, operation);
    8181      byte[] zippedEngine = ZipEngine(engine);
    8282      Guid currentEngineGuid = Guid.Empty;
Note: See TracChangeset for help on using the changeset viewer.