-
Notifications
You must be signed in to change notification settings - Fork 8
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
Mismatch between dataset path in env of docker run and the benchmark run command #91
Comments
Upon further examining, found out that the env variable is properly modified(visible in docker run command)
|
the docker run -it --entrypoint '' --group-add $(id -g $USER) --gpus=all --shm-size=32gb --dns 8.8.8.8 --dns 8.8.4.4 --cap-add SYS_ADMIN --cap-add SYS_TIME --security-opt apparmor=unconfined --security-opt seccomp=unconfined -v /home/anandhu/runstest:/cm-mount/home/anandhu/runstest -v /home/anandhu/CM/repos/local/cache/b6bd72defb5c4bc3:/home/cmuser/CM/repos/local/cache/b6bd72defb5c4bc3 -v "/data/common/anandhu/igbh":/cm-mount/data/common/anandhu/igbh local/cm-script-app-mlperf-inference-generic--reference--rgat--pytorch--cuda--test--r5.0-dev-default--offline:nvcr.io-nvidia-pytorch-24.03-py3-latest bash -c '(cm pull repo && cm run script --tags=app,mlperf,inference,generic,_reference,_rgat,_pytorch,_cuda,_test,_r5.0-dev_default,_offline --quiet=true --env.CM_DATASET_IGBH_PATH=/data/common/anandhu/igbh/ --env.CM_ACTIVATE_RGAT_IN_MEMORY=yes --env.CM_QUIET=yes --env.CM_MLPERF_IMPLEMENTATION=reference --env.CM_MLPERF_MODEL=rgat --env.CM_MLPERF_RUN_STYLE=test --env.CM_MLPERF_SKIP_SUBMISSION_GENERATION=False --env.CM_DOCKER_PRIVILEGED_MODE=True --env.CM_MLPERF_LOADGEN_MAX_BATCHSIZE=256 --env.CM_MLPERF_SUBMISSION_SYSTEM_TYPE=edge --env.CM_MLPERF_DEVICE=cuda --env.CM_MLPERF_USE_DOCKER=True --env.CM_MLPERF_BACKEND=pytorch --env.CM_RERUN=True --env.CM_MLPERF_LOADGEN_SCENARIO=Offline --env.CM_TEST_QUERY_COUNT=10000 --env.CM_NUM_THREADS=2 --env.CM_MLPERF_FIND_PERFORMANCE_MODE=yes --env.CM_MLPERF_LOADGEN_ALL_MODES=no --env.CM_MLPERF_LOADGEN_MODE=performance --env.CM_MLPERF_RESULT_PUSH_TO_GITHUB=False --env.CM_MLPERF_SUBMISSION_GENERATION_STYLE=full --env.CM_MLPERF_INFERENCE_VERSION=4.1-dev --env.CM_RUN_MLPERF_INFERENCE_APP_DEFAULTS=r5.0-dev_default --env.CM_MLPERF_SUBMISSION_CHECKER_VERSION=v5.0 --env.CM_MLPERF_INFERENCE_SOURCE_VERSION=5.0.2 --env.CM_MLPERF_LAST_RELEASE=v4.1 --env.CM_TMP_CURRENT_PATH=/home/anandhu/runstest --env.CM_TMP_PIP_VERSION_STRING= --env.CM_MODEL=rgat --env.CM_MLPERF_LOADGEN_COMPLIANCE=no --env.CM_MLPERF_LOADGEN_EXTRA_OPTIONS= --env.CM_MLPERF_LOADGEN_SCENARIOS,=Offline --env.CM_MLPERF_LOADGEN_MODES,=performance --env.OUTPUT_BASE_DIR=/home/anandhu/runstest --env.CM_OUTPUT_FOLDER_NAME=test_results --add_deps_recursive.coco2014-original.tags=_full --add_deps_recursive.coco2014-preprocessed.tags=_full --add_deps_recursive.imagenet-original.tags=_full --add_deps_recursive.imagenet-preprocessed.tags=_full --add_deps_recursive.openimages-original.tags=_full --add_deps_recursive.openimages-preprocessed.tags=_full --add_deps_recursive.openorca-original.tags=_full --add_deps_recursive.openorca-preprocessed.tags=_full --add_deps_recursive.coco2014-dataset.tags=_full --add_deps_recursive.igbh-dataset.tags=_full --add_deps_recursive.get-mlperf-inference-results-dir.tags=_version.r5.0-dev --add_deps_recursive.get-mlperf-inference-submission-dir.tags=_version.r5.0-dev --add_deps_recursive.mlperf-inference-nvidia-scratch-space.tags=_version.r5.0-dev --add_deps_recursive.mlperf-inference-implementation.tags=_batch_size.256 --v=False --print_env=False --print_deps=False --dump_version_info=True --env.OUTPUT_BASE_DIR=/cm-mount/home/anandhu/runstest --env.CM_MLPERF_INFERENCE_SUBMISSION_DIR=/home/cmuser/CM/repos/local/cache/b6bd72defb5c4bc3/mlperf-inference-submission --env.CM_DATASET_IGBH_PATH=/cm-mount/data/common/anandhu/igbh && bash ) || bash' |
@anandhu-eng It should be resolved in this PR |
run cmd:
output:
ideally it should be modified from
/data/common/anandhu/igbh/
to/cm-mount/data/common/anandhu/igbh
Note: in docker run command, it is correctly being mounted:
-v "/data/common/anandhu/igbh":/cm-mount/data/common/anandhu/igbh
The text was updated successfully, but these errors were encountered: