-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate MLPerf inference unofficial results repo to MLCommons (#59)
* Use mlcommons repo for uploading unofficial results of nvidia/intel github actions * Fix format * Fix rgat download path, added libbz2 deps for draw-graph-from-json * Support windows for pull-git-repo * Fix libbz2-dev detect * Added separate installation options for libbz2-dev and bzip2 * Restrict libbz2-dev install only for ubuntu (install-python-src) * Update VERSION
- Loading branch information
1 parent
f399c2c
commit d2db3b4
Showing
13 changed files
with
117 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.6.14 | ||
0.6.15 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
@echo off | ||
setlocal enabledelayedexpansion | ||
|
||
REM Save the current directory | ||
set "CUR_DIR=%CD%" | ||
set "SCRIPT_DIR=%CM_TMP_CURRENT_SCRIPT_PATH%" | ||
|
||
REM Change to the specified path | ||
set "path=%CM_GIT_CHECKOUT_PATH%" | ||
echo cd %path% | ||
|
||
cd /d "%path%" | ||
if errorlevel 1 ( | ||
echo Failed to change directory to %path% | ||
exit /b %errorlevel% | ||
) | ||
|
||
REM Execute the Git pull command | ||
echo %CM_GIT_PULL_CMD% | ||
call %CM_GIT_PULL_CMD% | ||
REM Don't fail if there are local changes | ||
REM if errorlevel 1 exit /b %errorlevel% | ||
|
||
REM Return to the original directory | ||
cd /d "%CUR_DIR%" | ||
endlocal |