Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow access to logged timer data #3487

Merged
merged 35 commits into from
Oct 31, 2024
Merged

Allow access to logged timer data #3487

merged 35 commits into from
Oct 31, 2024

Conversation

garth-wells
Copy link
Member

No description provided.

@jorgensd
Copy link
Member

@garth-wells
Seems like the timing function is broken, as the following doesn't work on nightly

import dolfinx
import time

task = "test"
with dolfinx.common.Timer(task) as timer:
    time.sleep(0.1)

print(dolfinx.common.timing(task))

yielding

Traceback (most recent call last):
  File "/root/shared/debug.py", line 8, in <module>
    print(dolfinx.common.timing(task))
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/dolfinx-real/lib/python3.12/dist-packages/dolfinx/common.py", line 48, in timing
    return _cpp.common.timing(task)
           ^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: No timings registered for task "test".

Not sure how the tests passed with this.

@garth-wells garth-wells requested a review from jhale October 29, 2024 12:03
@garth-wells garth-wells added the enhancement New feature or request label Oct 29, 2024
@garth-wells
Copy link
Member Author

@garth-wells Seems like the timing function is broken, as the following doesn't work on nightly

import dolfinx
import time

task = "test"
with dolfinx.common.Timer(task) as timer:
    time.sleep(0.1)

print(dolfinx.common.timing(task))

yielding

Traceback (most recent call last):
  File "/root/shared/debug.py", line 8, in <module>
    print(dolfinx.common.timing(task))
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/dolfinx-real/lib/python3.12/dist-packages/dolfinx/common.py", line 48, in timing
    return _cpp.common.timing(task)
           ^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: No timings registered for task "test".

Not sure how the tests passed with this.

See #3488.

@jorgensd
Copy link
Member

Could we add docs to the timing routine regarding flush ? Currently the Python routine is undocumented.

@garth-wells garth-wells requested a review from jhale October 31, 2024 12:03
@garth-wells garth-wells added this pull request to the merge queue Oct 31, 2024
Merged via the queue into main with commit b84b638 Oct 31, 2024
27 checks passed
@garth-wells garth-wells deleted the garth/timer-data branch October 31, 2024 14:06
jorgensd added a commit to jorgensd/dolfinx_mpc that referenced this pull request Nov 17, 2024
jorgensd added a commit to jorgensd/dolfinx_mpc that referenced this pull request Nov 17, 2024
* Update CI versions and behavior

* Refactor timings, due to:
FEniCS/dolfinx#3487
FEniCS/dolfinx#3488

* API changes from:  FEniCS/dolfinx#3500

* Fix demo

* Install boost

* Set tag

* Only check docker on release branch

* Fixes for refernece value size

* More timing fixes

* Another round of timing changes

* Remove last old timing instance
schnellerhase added a commit to schnellerhase/fenics-dolfinx that referenced this pull request Dec 28, 2024
* Remove resume functionality
This is not used and is only available for non logging timers whcih makes it inconsistent.

* Move to chrono timings

* Return duration instead of scalar

* Remove boost timer dependency

* Switch to microseconds as default

* Fix with cast

* Addapt logging to new std::chrono clocks

* Remove missed boost timer dependencies

* Partially revert boost dependency removal

* Remove list_timings from python wrapper

* Readd elapsed for pyhton testing

* Ruff

* Ruff 2

* Doc

* Some simplifications

* Try removing cast

* Simplification

* Doc improvement

* Fixes for timer

* Dox updates

* Updates

* Various fixes

* Doc improvements

* Remove debug

* Return raw timer data

* Return timer data

* Merge fix

* Type fixes

* Doc improvements and add test

* Store time delta

* Test updates

---------

Co-authored-by: schnellerhase <56360279+schnellerhase@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants