
    -i                     @    d Z ddlmZ e G d d             Z e       Zy)a  
Centralized, process-local flags with a minimal interface (no environment variables).

Usage:
    from triton.profiler.flags import flags

    # Toggle
    flags.profiling_on = True
    flags.instrumentation_on = False

    # Check
    if flags.command_line:
            ...
    )	dataclassc                   8    e Zd ZU dZeed<   dZeed<   dZeed<   y)ProfilerFlagsFprofiling_oninstrumentation_oncommand_lineN)__name__
__module____qualname__r   bool__annotations__r   r        _/home/obispo/Crisostomo_bridge/mision_env/lib/python3.12/site-packages/triton/profiler/flags.pyr   r      s#     L$$$L$r   r   N)__doc__dataclassesr   r   flagsr   r   r   <module>r      s1    "    	r   