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
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
from .parser import find_causal_files
import plotly.graph_objects as go


file_timestamp = 0
global_data = pd.DataFrame()
global_samples = pd.DataFrame()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
from .libpyrocprofsys.profiler import profiler_init as _profiler_init
from .libpyrocprofsys.profiler import profiler_finalize as _profiler_fini


__all__ = ["exec_", "_file", "_get_argv", "_initialize", "_finalize"]


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
from .common import _initialize
from .common import _file


__all__ = [
"region",
"Region",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
import argparse
from collections import OrderedDict


num_stddev = 1.0


Expand Down
6 changes: 2 additions & 4 deletions projects/rocprofiler-systems/tests/validate-rocpd.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ def get_table_identifier(self):

def print_help():
"""Print out the help message"""
print(
f"""
print(f"""
ROCPD Database Validation Tool

DESCRIPTION:
Expand Down Expand Up @@ -115,8 +114,7 @@ def print_help():
64 - Invalid command line arguments (EX_USAGE)
65 - Validation failures detected (EX_DATAERR)
1 - General error (database connection, file not found, etc.)
"""
)
""")


def validate_table(cursor, rule, tables) -> bool:
Expand Down