Package es.ull.pcg.hpc.fancyjcl
Class RunConfiguration
java.lang.Object
es.ull.pcg.hpc.fancyjcl.RunConfiguration
Defines how a Stage is executed. It controls the size of each dimension of the execution, its
parallelization factor per dimension and vectorization factor per dimension (not implemented
yet).
-
Constructor Summary
ConstructorsConstructorDescriptionRunConfiguration
(long[] dimensions, long[] parallelization) Instantiates a new Run configuration. -
Method Summary
-
Constructor Details
-
RunConfiguration
public RunConfiguration(long[] dimensions, long[] parallelization) Instantiates a new Run configuration. It defines how theStage
will be executed in terms of execution size, parallelization size and vectorization size (not implemented yet).- Parameters:
dimensions
- The size of the dimensions of the execution. It doesn't need to coincide with the size of the output parameters.parallelization
- The parallelization factor per dimension.
-