Fixing counter collection in tools and enabling tests (#436)

* Fixing coutner colleciton in tools and enabling tests

* fixing tests

* improving coverage on test

* Adding vector operations app

* Fixing tools bug for counter collection

* removing roctx linking
This commit is contained in:
Gopesh Bhardwaj
2024-02-06 23:25:07 +05:30
committed by GitHub
parent f6198f226a
commit 8a25b239bc
12 changed files with 358 additions and 43 deletions
@@ -34,9 +34,9 @@ def test_validate_counter_collection_pmc2(input_dir: pd.DataFrame):
with open(file_path, "r") as file:
df = pd.read_csv(file)
# check if kernel-name is present
assert len(df["kernel-name"]) > 0
assert len(df["Kernel-Name"]) > 0
# check if counter value is positive
assert len(df["counter_value"]) > 0
assert len(df["Counter_Value"]) > 0
if __name__ == "__main__":