1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
/*
* Ray -- Parallel genome assemblies for parallel DNA sequencing
* Copyright (C) 2013 Sébastien Boisvert
*
* http://DeNovoAssembler.SourceForge.Net/
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You have received a copy of the GNU General Public License
* along with this program (gpl-3.0.txt).
* see <http://www.gnu.org/licenses/>
*/
#include "SeedFilteringWorkflow.h"
#include "AnnihilationWorker.h"
/*
* Methods to implement for the TaskCreator interface.
*
* The TaskCreator stack is used in the handler
* RAY_SLAVE_MODE_FILTER_SEEDS.
*/
/** initialize the whole thing */
void SeedFilteringWorkflow::initializeMethod(){
m_seedIndex=0;
m_states.resize(m_seeds->size());
for(int i=0;i<(int)m_states.size(); i++)
m_states[i] = true;
#ifdef CONFIG_ASSERT
assert(m_states.size() == m_seeds->size());
#endif
m_finished = 0 ;
}
/** finalize the whole thing */
void SeedFilteringWorkflow::finalizeMethod(){
vector<GraphPath> newPaths;
for(int i=0;i< (int) m_seeds->size() ; i++){
if(!m_states[i])
continue;
newPaths.push_back(m_seeds->at(i));
}
(*m_seeds) = newPaths;
m_core->getSwitchMan()->closeSlaveModeLocally(m_core->getOutbox(),m_core->getRank());
}
/** has an unassigned task left to compute */
bool SeedFilteringWorkflow::hasUnassignedTask(){
return m_seedIndex < (int) m_seeds->size () ;
}
/** assign the next task to a worker and return this worker */
Worker*SeedFilteringWorkflow::assignNextTask(){
#ifdef CONFIG_ASSERT
assert(m_seedIndex < (int)m_seeds->size());
#endif
if(m_seedIndex % m_period == 0)
cout<<"Rank "<<m_rank<< " assignNextTask "<<m_seedIndex<< "/" << m_seeds->size()<<endl;
AnnihilationWorker*worker=new AnnihilationWorker();
worker->initialize(m_seedIndex, &((*m_seeds)[m_seedIndex]), m_parameters,
m_virtualCommunicator,
m_core->getOutboxAllocator(),
RAY_MPI_TAG_GET_VERTEX_EDGES_COMPACT,
RAY_MPI_TAG_ASK_VERTEX_PATHS_SIZE,
RAY_MPI_TAG_ASK_VERTEX_PATH
);
m_seedIndex++;
return worker;
}
/** get the result of a worker */
void SeedFilteringWorkflow::processWorkerResult(Worker*worker){
bool result = ((AnnihilationWorker*)worker)->isValid();
int seedIndex = worker->getWorkerIdentifier();
m_states[seedIndex] = result;
if(m_finished % m_period == 0){
cout<<"Rank " << m_rank << " processWorkerResult "<<m_finished<<"/" <<m_seeds->size()<<endl;
}
m_finished++;
}
/** destroy a worker */
void SeedFilteringWorkflow::destroyWorker(Worker*worker){
delete worker;
worker = NULL;
}
void SeedFilteringWorkflow::initialize(vector<GraphPath>*seeds, VirtualCommunicator*virtualCommunicator,
VirtualProcessor * virtualProcessor,ComputeCore * core, Parameters * parameters,
MessageTag RAY_MPI_TAG_GET_VERTEX_EDGES_COMPACT,
MessageTag RAY_MPI_TAG_ASK_VERTEX_PATHS_SIZE,
MessageTag RAY_MPI_TAG_ASK_VERTEX_PATH){
m_rank = core->getRank();
m_seeds = seeds;
m_virtualCommunicator = virtualCommunicator;
m_virtualProcessor = virtualProcessor;
m_core = core;
m_parameters = parameters;
this->RAY_MPI_TAG_GET_VERTEX_EDGES_COMPACT = RAY_MPI_TAG_GET_VERTEX_EDGES_COMPACT;
this->RAY_MPI_TAG_ASK_VERTEX_PATHS_SIZE = RAY_MPI_TAG_ASK_VERTEX_PATHS_SIZE;
this->RAY_MPI_TAG_ASK_VERTEX_PATH = RAY_MPI_TAG_ASK_VERTEX_PATH;
m_period = 100;
}
|