-
Notifications
You must be signed in to change notification settings - Fork 1
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
Initial changes for supporting Nvidia implementations #3
Initial changes for supporting Nvidia implementations #3
Conversation
closed/NVIDIA/Makefile.build
Outdated
@@ -297,8 +297,8 @@ else | |||
@if [ ! -e $(FT_BUILD_DIR) ]; then \ | |||
mkdir $(FT_BUILD_DIR); \ | |||
fi | |||
sudo update-alternatives --set gcc /usr/bin/gcc-9 | |||
sudo update-alternatives --set g++ /usr/bin/g++-9 | |||
sudo update-alternatives --set gcc /usr/bin/gcc-9 || sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 100 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this change be removed?
closed/NVIDIA/Makefile.build
Outdated
@@ -384,4 +384,6 @@ apply_jetson_oc_limit: | |||
ifeq ($(IS_SOC), 1) | |||
@sudo cp ./scripts/nvpower_r353_maxp.sh /etc/systemd/nvpower.sh | |||
@echo "Apply Jetson OC Limit Success." | |||
else | |||
@echo "" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not needed?
closed/NVIDIA/Makefile.docker
Outdated
@@ -15,7 +15,7 @@ | |||
# This Makefile includes all the variables and targets used to set up NVIDIA's MLPerf Inference docker environment | |||
include $(CURDIR)/Makefile.const | |||
|
|||
ENV ?= release | |||
ENV = release |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not needed?
No description provided.