示例#1
0
 def __init__(self):
     Kernel.__init__(
         self,
         KernelSpec(
             "min",
             "Minimum",
             "Computes the minimun of the array elements along the given axes.",
             reduceOp="min"))
示例#2
0
 def __init__(self):
     Kernel.__init__(
         self,
         KernelSpec("zaDemo",
                    "ZonalAverageDemo",
                    "Zonal average from -90 to 90",
                    handlesInput=True))
     self._debug = False
示例#3
0
 def __init__(self):
     Kernel.__init__(
         self,
         KernelSpec(
             "sum",
             "Sum",
             "Computes the sum of the array elements along the given axes.",
             reduceOp="sum"))
示例#4
0
 def __init__(self):
     Kernel.__init__(
         self,
         KernelSpec(
             "maxCustRed",
             "Maximum (Serial)",
             "Computes the maximun of the array elements along the given axes without parallelization (for testing).",
             reduceOp="custom"))
示例#5
0
 def __init__(self):
     Kernel.__init__(
         self,
         KernelSpec(
             "maxSer",
             "Maximum (Serial)",
             "Computes the maximun of the array elements along the given axes without parallelization (for testing).",
             parallelize=False))
示例#6
0
 def __init__(self):
     Kernel.__init__(
         self,
         KernelSpec(
             "var",
             "Variance",
             "Computes the variance of the array elements along the given axes.",
             parallelize=False))
示例#7
0
 def __init__(self):
     Kernel.__init__(
         self,
         KernelSpec(
             "ptp",
             "Peak to Peak",
             "Computes the peak to peak (maximum - minimum) value the along given axes.",
             parallelize=False))
示例#8
0
 def __init__(self):
     Kernel.__init__(
         self,
         KernelSpec(
             "ensembleStats",
             "EnsembleWorkflow",
             "Ensemble Ave/Stdev Workflow as defined by Jerry Potter",
             handlesInput=True))
     self._debug = False
示例#9
0
 def __init__(self):
     Kernel.__init__(
         self,
         KernelSpec(
             "ave",
             "Average",
             "Averages the inputs using UVCDAT with area weighting  by default",
             handlesInput=True))
     self._debug = False
示例#10
0
 def __init__(self):
     Kernel.__init__(
         self,
         KernelSpec(
             "std",
             "Standard Deviation",
             "Computes the standard deviation of the array elements along the given axes.",
             parallelize=False)
     )  # Temporarily forcing some python kernels to run in serial mode
示例#11
0
 def __init__(self):
     Kernel.__init__(
         self,
         KernelSpec(
             "avew",
             "Weighted Average Kernel",
             "Computes the weighted average of the array elements along the given axes.",
             reduceOp="avew",
             weights="cosine"))
示例#12
0
 def __init__(self):
     Kernel.__init__(
         self,
         KernelSpec(
             "ave",
             "Average Kernel",
             "Computes the average of the array elements along the given axes.",
             reduceOp="sumw",
             postOp="normw",
             nOutputsPerInput=2))