Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove pandas deps for app-mlperf-inference #158

Merged
merged 2 commits into from
Aug 14, 2024
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
5 changes: 5 additions & 0 deletions script/app-mlperf-inference/_cm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,11 @@ deps:

- tags: get,mlperf,inference,utils

- tags: install,pip-package,for-cmind-python,_package.pandas
enable_if_env:
CM_PROFILE_NVIDIA_POWER:
- on

posthook_deps:
- tags: get,mlperf,sut,description #populate system meta information like framework

Expand Down
2 changes: 1 addition & 1 deletion script/app-mlperf-inference/customize.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import platform
import sys
import mlperf_utils
import pandas as pd
import re
from datetime import datetime,timezone

Expand Down Expand Up @@ -449,6 +448,7 @@ def postprocess(i):
# portion of the code where the avg utilisation and system informations are extracted
# NOTE: The section is under development and print statements are added for further debugging
if env.get('CM_PROFILE_NVIDIA_POWER', '') == "on":
import pandas as pd
system_utilisation_info_dump = {}
logs_dir = output_dir
# logs_dir = env.get('CM_LOGS_DIR', env['CM_RUN_DIR'])
Expand Down
Loading