Metadata-Version: 2.1
Name: PyNVTX
Version: 0.0.3
Summary: A thin python wrapper for the nvToolsExt (NVTX) library, using pybind11
Home-page: https://github.com/JBlaschke/PyNVTX
Author: Johannes Blaschke
Author-email: johannes@blaschke.science
License: UNKNOWN
Description: # PyNVTX
        
        A thin python wrapper for the nvToolsExt (NVTX) library, using pybind11. This
        wrapper is meant to be as thin as possible -- so only provides minimal support.
        Currently supported features are:
        1. NVTX markers: `nvtxRangePushA` and `nvtxRangePop`
        
        
        ## NVTX Markers (`nvtxRangePushA` / `nvtxRangePop`)
        
        ```python
        import PyNVTX as nvtx
        
        nvtx.RangePushA("Generating Random Data")
        
        giant_data = np.random.rand(1024**3)
        
        nvtx.RangePop()
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
