12
12
from blockops .block import BlockOperator , I
13
13
from blockops .run import PintRun
14
14
from blockops .taskPool import TaskPool
15
- from blockops .schedule import getSchedule
16
15
from blockops .utils .expr import getCoeffsFromFormula
17
16
from blockops .graph import PintGraph
17
+ from blockops .scheduler import getSchedule
18
18
19
19
20
20
# -----------------------------------------------------------------------------
@@ -202,36 +202,36 @@ def __call__(self, nIter, nBlocks=None, u0=None, initSol=False, predSol=None):
202
202
else :
203
203
return u [:, 1 :]
204
204
205
- def getRuntime (self , N , K , nProc , schedule_type = 'BLOCK-BY-BLOCK' ):
205
+ def getRuntime (self , N , K , nProc , schedulerType = 'BLOCK-BY-BLOCK' ):
206
206
K = self .checkK (N = N , K = K )
207
207
run = PintRun (blockIteration = self , nBlocks = N , kMax = K )
208
208
pool = TaskPool (run = run )
209
- schedule = getSchedule (taskPool = pool , nProc = nProc , nPoints = N + 1 , schedule_type = schedule_type )
209
+ schedule = getSchedule (taskPool = pool , nProc = nProc , nPoints = N + 1 , schedulerType = schedulerType )
210
210
return schedule .getRuntime ()
211
211
212
- def getPerformances (self , N , K , nProc = None , schedule_type = 'BLOCK-BY-BLOCK' , verbose = False ):
212
+ def getPerformances (self , N , K , nProc = None , schedulerType = 'BLOCK-BY-BLOCK' , verbose = False ):
213
213
214
214
seqPropCost = self .propagator .cost
215
215
if (seqPropCost is None ) or (seqPropCost == 0 ):
216
216
raise ValueError (
217
217
'no cost given for fine propagator,'
218
218
' cannot measure performances' )
219
- runtime_ts = seqPropCost * N
219
+ runtimeTs = seqPropCost * N
220
220
221
221
K = self .checkK (N = N , K = K )
222
- print (f' -- computing { schedule_type } cost for K={ K } ' )
222
+ print (f' -- computing { schedulerType } cost for K={ K } ' )
223
223
224
224
run = PintRun (blockIteration = self , nBlocks = N , kMax = K )
225
225
pool = TaskPool (run = run )
226
226
schedule = getSchedule (
227
227
taskPool = pool , nProc = nProc , nPoints = N + 1 ,
228
- schedule_type = schedule_type )
228
+ schedulerType = schedulerType )
229
229
runtime = schedule .getRuntime ()
230
230
nProc = schedule .nProc
231
231
232
232
if verbose :
233
233
graph = PintGraph (N , max (K ), pool )
234
- optimal_runtime = graph .longestPath ()
234
+ optimalRuntime = graph .longestPath ()
235
235
print ('=============================' )
236
236
if self .name is None :
237
237
print (f'Block iteration: { self .update } ' )
@@ -241,14 +241,14 @@ def getPerformances(self, N, K, nProc=None, schedule_type='BLOCK-BY-BLOCK', verb
241
241
print (f'Predictor: { self .predictor } ' )
242
242
print (f'N={ N } , K={ K } \n ' )
243
243
print (f'Runtime of schedule={ schedule .NAME } for nProc={ nProc } : { runtime } ' )
244
- print (f'Runtime time-stepping: { runtime_ts } (This is currently not the correct value)' )
245
- print (f'Speedup of schedule={ schedule .NAME } for nProc={ nProc } : { (runtime_ts / runtime ):.2f} \n ' )
246
- print (f'Theoretical lower runtime bound: { optimal_runtime } ' )
244
+ print (f'Runtime time-stepping: { runtimeTs } (This is currently not the correct value)' )
245
+ print (f'Speedup of schedule={ schedule .NAME } for nProc={ nProc } : { (runtimeTs / runtime ):.2f} \n ' )
246
+ print (f'Theoretical lower runtime bound: { optimalRuntime } ' )
247
247
print (
248
- f'Theoretical maximum speedup compared to time stepping: { (runtime_ts / optimal_runtime ):.2f} (This is currently not the correct value)' )
248
+ f'Theoretical maximum speedup compared to time stepping: { (runtimeTs / optimalRuntime ):.2f} (This is currently not the correct value)' )
249
249
print ('=============================' )
250
250
251
- speedup = runtime_ts / runtime
251
+ speedup = runtimeTs / runtime
252
252
efficiency = speedup / nProc
253
253
return speedup , efficiency , nProc
254
254
@@ -261,12 +261,12 @@ def plotGraph(self, N: int, K, figSize: tuple = (6.4, 4.8), saveFig: str = ""):
261
261
figSize = figSize , saveFig = saveFig )
262
262
return run , pool , pintGraph
263
263
264
- def plotSchedule (self , N : int , K , nProc : int , schedule_type : str = 'BLOCK-BY-BLOCK' , figSize : tuple = (8 , 4.8 ),
264
+ def plotSchedule (self , N : int , K , nProc : int , schedulerType : str = 'BLOCK-BY-BLOCK' , figSize : tuple = (8 , 4.8 ),
265
265
saveFig : str = "" ):
266
266
K = self .checkK (N = N , K = K )
267
267
run = PintRun (blockIteration = self , nBlocks = N , kMax = K )
268
268
pool = TaskPool (run = run )
269
- schedule = getSchedule (taskPool = pool , nProc = nProc , nPoints = N + 1 , schedule_type = schedule_type )
269
+ schedule = getSchedule (taskPool = pool , nProc = nProc , nPoints = N + 1 , schedulerType = schedulerType )
270
270
schedule .plot (figName = None if self .name is None else self .name + f' ({ schedule .NAME } schedule)' ,
271
271
figSize = figSize , saveFig = saveFig )
272
272
0 commit comments