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
+1 -1
View File
@@ -34,7 +34,7 @@ def test_validate_counter_collection_plus_tracing(input_dir: pd.DataFrame):
with open(file_path, "r") as file:
df = pd.read_csv(file)
# check if either kernel-name/FUNCTION is present
assert "kernel-name" in df.columns or "FUNCTION" in df.columns
assert "Kernel-Name" in df.columns or "Function" in df.columns
if __name__ == "__main__":