-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[HugeCTR]Add a new base for hugectr (#1098)
* Add ctr base image and install ctr components in merlin-hugectr * Use same version for pytorch base image * Correct torch python folder name for new version * Add merlin and test script for ctr-base * upate test script for new ctr-base and merlin-hugectr * Fix typo * Remove some packages hugectr maynot use * Add back keras since SOK uses it * Refactor dockerfiles * Correct relative path * Upgrade upstream image to 24.03 * Remove libboost which not in triton container * Add libhdf5-dev * Add execution privilege for test scripts * Remove unused test script * correct for base version
- Loading branch information
1 parent
c0f43d6
commit c4eb92d
Showing
4 changed files
with
424 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash | ||
|
||
container=$1 | ||
devices=$2 | ||
|
||
echo "##############" | ||
echo "# Unit tests #" | ||
echo "##############" | ||
|
||
exit_code=0 | ||
|
||
## Test HugeCTR | ||
if [ "$container" == "merlin-hugectr" ]; then | ||
echo "Run unit tests for HugeCTR" | ||
/hugectr/ci/test_unit.sh $container $devices || exit_code=1 | ||
echo "Run unit tests for merlin-sok" | ||
/hugectr/ci/test_unit.sh "merlin-tensorflow" $devices || exit_code=1 | ||
fi | ||
|
||
exit $exit_code |
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
Oops, something went wrong.