You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wrote a custom function and was trying to estimate the number of flops during execution
from pypapi import papi_high
from pypapi import events as papi_events
papi_high.start_counters([papi_events.PAPI_FP_OPS])
foo
x1 = papi_high.stop_counters()
print(x1)
However, i encountered the following error:
Traceback (most recent call last):
File "/mnt/c/Users/Pavan/Projects/PBM_Schemes/Python/2D/Case1/time.py", line 18, in <module>
papi_high.start_counters([papi_events.PAPI_FP_OPS,])
File "/home/pavan/miniconda3/envs/pyclaw/lib/python3.10/site-packages/pypapi/exceptions.py", line 170, in papi_error_wrapper
raise object_()
pypapi.exceptions.PapiComponentError: Not supported by component. (PAPI_ECMP, PAPI_ESBSTR)
Would appreciate any help here! Thanks!
The text was updated successfully, but these errors were encountered:
Hi! Cool package!
I wrote a custom function and was trying to estimate the number of flops during execution
However, i encountered the following error:
Would appreciate any help here! Thanks!
The text was updated successfully, but these errors were encountered: