Metadata-Version: 2.1
Name: recorder-viz
Version: 0.0.3
Summary: Utilities for processing Recorder traces
Home-page: https://github.com/wangvsa/recorder-viz
Author: Chen Wang
Author-email: wangvsa@gmail.com
License: UNKNOWN
Description: recorder-viz
        =============
        
        This is a python package which contains tools for processing [Recorder](https://github.com/uiuc-hpc/Recorder) traces.
        
        Usage
        --------
        
        Install it using pip: `pip install recorder-viz`
        
        
        Below is a simple code snippet shows how to use the provided class `RecorderReader`. 
        
        Copy it to test.py and `run python test.py [path/to/Recorder traces folder]`
        
        ```python
        
        #!/usr/bin/env python
        # encoding: utf-8
        
        import sys
        from recorder_viz import RecorderReader
        
        reader = RecorderReader(sys.argv[1])
        
        for rank in range(reader.GM.total_ranks):
            LM = reader.LMs[rank]
            print("Rank: %d, Number of trace records: %d" %(rank, LM.total_records))
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: University of Illinois/NCSA Open Source License
Classifier: Operating System :: OS Independent
Requires-Python: >=2.7
Description-Content-Type: text/markdown
