LSSTApplications  17.0+11,17.0+34,17.0+56,17.0+57,17.0+59,17.0+7,17.0-1-g377950a+33,17.0.1-1-g114240f+2,17.0.1-1-g4d4fbc4+28,17.0.1-1-g55520dc+49,17.0.1-1-g5f4ed7e+52,17.0.1-1-g6dd7d69+17,17.0.1-1-g8de6c91+11,17.0.1-1-gb9095d2+7,17.0.1-1-ge9fec5e+5,17.0.1-1-gf4e0155+55,17.0.1-1-gfc65f5f+50,17.0.1-1-gfc6fb1f+20,17.0.1-10-g87f9f3f+1,17.0.1-11-ge9de802+16,17.0.1-16-ga14f7d5c+4,17.0.1-17-gc79d625+1,17.0.1-17-gdae4c4a+8,17.0.1-2-g26618f5+29,17.0.1-2-g54f2ebc+9,17.0.1-2-gf403422+1,17.0.1-20-g2ca2f74+6,17.0.1-23-gf3eadeb7+1,17.0.1-3-g7e86b59+39,17.0.1-3-gb5ca14a,17.0.1-3-gd08d533+40,17.0.1-30-g596af8797,17.0.1-4-g59d126d+4,17.0.1-4-gc69c472+5,17.0.1-6-g5afd9b9+4,17.0.1-7-g35889ee+1,17.0.1-7-gc7c8782+18,17.0.1-9-gc4bbfb2+3,w.2019.22
LSSTDataManagementBasePackage
Functions
lsst.pipe.base.timer Namespace Reference

Functions

def logPairs (obj, pairs, logLevel=Log.DEBUG)
 
def logInfo (obj, prefix, logLevel=Log.DEBUG)
 
def timeMethod (func)
 

Function Documentation

◆ logInfo()

def lsst.pipe.base.timer.logInfo (   obj,
  prefix,
  logLevel = Log.DEBUG 
)
Log timer information to ``obj.metadata`` and ``obj.log``.

Parameters
----------
obj : `lsst.pipe.base.Task`-type
    A `~lsst.pipe.base.Task` or any other object with these two attributes:

    - ``metadata`` an instance of `lsst.daf.base.PropertyList`` (or other object with
      ``add(name, value)`` method).
    - ``log`` an instance of `lsst.log.Log`.

prefix
    Name prefix, the resulting entries are ``CpuTime``, etc.. For example timeMethod uses
    ``prefix = Start`` when the method begins and ``prefix = End`` when the method ends.
logLevel : optional
    Log level (an `lsst.log` level constant, such as `lsst.log.Log.DEBUG`).

Notes
-----
Logged items include:

- ``Utc``: UTC date in ISO format (only in metadata since log entries have timestamps).
- ``CpuTime``: System + User CPU time (seconds). This should only be used
    in differential measurements; the time reference point is undefined.
- ``MaxRss``: maximum resident set size.

All logged resource information is only for the current process; child processes are excluded.

Definition at line 62 of file timer.py.

62 def logInfo(obj, prefix, logLevel=Log.DEBUG):
63  """Log timer information to ``obj.metadata`` and ``obj.log``.
64 
65  Parameters
66  ----------
67  obj : `lsst.pipe.base.Task`-type
68  A `~lsst.pipe.base.Task` or any other object with these two attributes:
69 
70  - ``metadata`` an instance of `lsst.daf.base.PropertyList`` (or other object with
71  ``add(name, value)`` method).
72  - ``log`` an instance of `lsst.log.Log`.
73 
74  prefix
75  Name prefix, the resulting entries are ``CpuTime``, etc.. For example timeMethod uses
76  ``prefix = Start`` when the method begins and ``prefix = End`` when the method ends.
77  logLevel : optional
78  Log level (an `lsst.log` level constant, such as `lsst.log.Log.DEBUG`).
79 
80  Notes
81  -----
82  Logged items include:
83 
84  - ``Utc``: UTC date in ISO format (only in metadata since log entries have timestamps).
85  - ``CpuTime``: System + User CPU time (seconds). This should only be used
86  in differential measurements; the time reference point is undefined.
87  - ``MaxRss``: maximum resident set size.
88 
89  All logged resource information is only for the current process; child processes are excluded.
90  """
91  cpuTime = time.process_time()
92  utcStr = datetime.datetime.utcnow().isoformat()
93  res = resource.getrusage(resource.RUSAGE_SELF)
94  obj.metadata.add(name=prefix + "Utc", value=utcStr) # log messages already have timestamps
95  logPairs(obj=obj,
96  pairs=[
97  (prefix + "CpuTime", cpuTime),
98  (prefix + "UserTime", res.ru_utime),
99  (prefix + "SystemTime", res.ru_stime),
100  (prefix + "MaxResidentSetSize", int(res.ru_maxrss)),
101  (prefix + "MinorPageFaults", int(res.ru_minflt)),
102  (prefix + "MajorPageFaults", int(res.ru_majflt)),
103  (prefix + "BlockInputs", int(res.ru_inblock)),
104  (prefix + "BlockOutputs", int(res.ru_oublock)),
105  (prefix + "VoluntaryContextSwitches", int(res.ru_nvcsw)),
106  (prefix + "InvoluntaryContextSwitches", int(res.ru_nivcsw)),
107  ],
108  logLevel=logLevel,
109  )
110 
111 
def logInfo(obj, prefix, logLevel=Log.DEBUG)
Definition: timer.py:62
def logPairs(obj, pairs, logLevel=Log.DEBUG)
Definition: timer.py:34

◆ logPairs()

def lsst.pipe.base.timer.logPairs (   obj,
  pairs,
  logLevel = Log.DEBUG 
)
Log ``(name, value)`` pairs to ``obj.metadata`` and ``obj.log``

Parameters
----------
obj : `lsst.pipe.base.Task`-type
    A `~lsst.pipe.base.Task` or any other object with these two attributes:

    - ``metadata`` an instance of `lsst.daf.base.PropertyList`` (or other object with
      ``add(name, value)`` method).
    - ``log`` an instance of `lsst.log.Log`.

pairs : sequence
    A sequence of ``(name, value)`` pairs, with value typically numeric.
logLevel : optional
    Log level (an `lsst.log` level constant, such as `lsst.log.Log.DEBUG`).

Definition at line 34 of file timer.py.

34 def logPairs(obj, pairs, logLevel=Log.DEBUG):
35  """Log ``(name, value)`` pairs to ``obj.metadata`` and ``obj.log``
36 
37  Parameters
38  ----------
39  obj : `lsst.pipe.base.Task`-type
40  A `~lsst.pipe.base.Task` or any other object with these two attributes:
41 
42  - ``metadata`` an instance of `lsst.daf.base.PropertyList`` (or other object with
43  ``add(name, value)`` method).
44  - ``log`` an instance of `lsst.log.Log`.
45 
46  pairs : sequence
47  A sequence of ``(name, value)`` pairs, with value typically numeric.
48  logLevel : optional
49  Log level (an `lsst.log` level constant, such as `lsst.log.Log.DEBUG`).
50  """
51  strList = []
52  for name, value in pairs:
53  try:
54  # Use LongLong explicitly here in case an early value in the sequence is int-sized
55  obj.metadata.addLongLong(name, value)
56  except TypeError:
57  obj.metadata.add(name, value)
58  strList.append("%s=%s" % (name, value))
59  log(obj.log.getName(), logLevel, "; ".join(strList))
60 
61 
def logPairs(obj, pairs, logLevel=Log.DEBUG)
Definition: timer.py:34

◆ timeMethod()

def lsst.pipe.base.timer.timeMethod (   func)
Decorator to measure duration of a task method.

Parameters
----------
func
    The method to wrap.

Notes
-----
Writes various measures of time and possibly memory usage to the task's metadata; all items are prefixed
with the function name.

.. warning::

   This decorator only works with instance methods of Task, or any class with these attributes:

   - ``metadata``: an instance of `lsst.daf.base.PropertyList` (or other object with
     ``add(name, value)`` method).
   - ``log``: an instance of `lsst.log.Log`.

Examples
--------
To use::

    import lsst.pipe.base as pipeBase
    class FooTask(pipeBase.Task):
        pass

        @pipeBase.timeMethod
        def run(self, ...): # or any other instance method you want to time
            pass

Definition at line 112 of file timer.py.

112 def timeMethod(func):
113  """Decorator to measure duration of a task method.
114 
115  Parameters
116  ----------
117  func
118  The method to wrap.
119 
120  Notes
121  -----
122  Writes various measures of time and possibly memory usage to the task's metadata; all items are prefixed
123  with the function name.
124 
125  .. warning::
126 
127  This decorator only works with instance methods of Task, or any class with these attributes:
128 
129  - ``metadata``: an instance of `lsst.daf.base.PropertyList` (or other object with
130  ``add(name, value)`` method).
131  - ``log``: an instance of `lsst.log.Log`.
132 
133  Examples
134  --------
135  To use::
136 
137  import lsst.pipe.base as pipeBase
138  class FooTask(pipeBase.Task):
139  pass
140 
141  @pipeBase.timeMethod
142  def run(self, ...): # or any other instance method you want to time
143  pass
144  """
145 
146  @functools.wraps(func)
147  def wrapper(self, *args, **keyArgs):
148  logInfo(obj=self, prefix=func.__name__ + "Start")
149  try:
150  res = func(self, *args, **keyArgs)
151  finally:
152  logInfo(obj=self, prefix=func.__name__ + "End")
153  return res
154  return wrapper
155 
def logInfo(obj, prefix, logLevel=Log.DEBUG)
Definition: timer.py:62
def timeMethod(func)
Definition: timer.py:112