LSST Applications  22.0.1,22.0.1+01bcf6a671,22.0.1+046ee49490,22.0.1+05c7de27da,22.0.1+0c6914dbf6,22.0.1+1220d50b50,22.0.1+12fd109e95,22.0.1+1a1dd69893,22.0.1+1c910dc348,22.0.1+1ef34551f5,22.0.1+30170c3d08,22.0.1+39153823fd,22.0.1+611137eacc,22.0.1+771eb1e3e8,22.0.1+94e66cc9ed,22.0.1+9a075d06e2,22.0.1+a5ff6e246e,22.0.1+a7db719c1a,22.0.1+ba0d97e778,22.0.1+bfe1ee9056,22.0.1+c4e1e0358a,22.0.1+cc34b8281e,22.0.1+d640e2c0fa,22.0.1+d72a2e677a,22.0.1+d9a6b571bd,22.0.1+e485e9761b,22.0.1+ebe8d3385e
LSST Data Management Base Package
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 63 of file timer.py.

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

◆ 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
43  object with ``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
55  # sequence is int-sized
56  obj.metadata.addLongLong(name, value)
57  except TypeError:
58  obj.metadata.add(name, value)
59  strList.append(f"{name}={value}")
60  log("timer." + obj.log.getName(), logLevel, "; ".join(strList))
61 
62 

◆ 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:

.. code-block:: python

    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 116 of file timer.py.

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