Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion drishti/handlers/handle_darshan.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ def handler():

detected_files = pd.DataFrame(df['counters'].groupby('id')[['INSIGHTS_POSIX_SMALL_READ', 'INSIGHTS_POSIX_SMALL_WRITE']].sum()).reset_index()
detected_files.columns = ['id', 'total_reads', 'total_writes']
detected_files.loc[:, 'id'] = detected_files.loc[:, 'id'].astype(str)
detected_files['id'] = detected_files['id'].astype(str)

check_small_operation(total_reads, total_reads_small, total_writes, total_writes_small, detected_files, modules, file_map, dxt_posix, dxt_posix_read_data, dxt_posix_write_data)

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
darshan>=3.4
darshan
pandas>=2
rich>=12.5.1
recorder-utils
recorder-utils
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
setup(
name="drishti-io",
keywords="drishti",
version="0.7.2",
version="0.7",
author="Jean Luca Bez, Suren Byna",
author_email="jlbez@lbl.gov, sbyna@lbl.gov",
description="",
Expand All @@ -18,7 +18,7 @@
url="https://github.com/hpc-io/drishti",
install_requires=[
'pandas>=2',
'darshan>=3.4',
'darshan',
'rich>=12.5.1',
'recorder-utils',
],
Expand Down
Loading