Skip to content

Commit

Permalink
Upgrade canary to 0.25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
frankfliu committed Nov 5, 2023
1 parent ed712aa commit d934a49
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/canary-gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
rm -rf /root/.djl.ai/
# not support lower version of CUDA since 0.22.0, fallback to CPU
DJL_ENGINE=pytorch-native-cu117 ./gradlew clean run
DJL_ENGINE=pytorch-native-cu118 ./gradlew clean run
rm -rf /root/.djl.ai/
DJL_ENGINE=pytorch-native-cu113 PT_VERSION=1.11.0 ./gradlew clean run
rm -rf /root/.djl.ai/
Expand All @@ -106,7 +106,7 @@ jobs:
rm -rf /root/.djl.ai/
DJL_ENGINE=pytorch-native-cu118 PT_VERSION=2.0.1 ./gradlew clean run
rm -rf /root/.djl.ai/
DJL_ENGINE=pytorch-native-cu117-precxx11 ./gradlew clean run
DJL_ENGINE=pytorch-native-cu118-precxx11 ./gradlew clean run
rm -rf /root/.djl.ai/
DJL_ENGINE=pytorch-native-cu113-precxx11 PT_VERSION=1.11.0 ./gradlew clean run
rm -rf /root/.djl.ai/
Expand Down Expand Up @@ -272,7 +272,7 @@ jobs:
rm -rf /root/.djl.ai/
DJL_ENGINE=pytorch-native-cpu-precxx11 ./gradlew clean run
rm -rf /root/.djl.ai/
DJL_ENGINE=pytorch-native-cu117 ./gradlew clean run
DJL_ENGINE=pytorch-native-cu118 ./gradlew clean run
rm -rf /root/.djl.ai/
DJL_ENGINE=pytorch-native-cu113 PT_VERSION=1.11.0 ./gradlew clean run
rm -rf /root/.djl.ai/
Expand All @@ -282,7 +282,7 @@ jobs:
rm -rf /root/.djl.ai/
DJL_ENGINE=pytorch-native-cu118 PT_VERSION=2.0.1 ./gradlew clean run
rm -rf /root/.djl.ai/
DJL_ENGINE=pytorch-native-cu117-precxx11 ./gradlew clean run
DJL_ENGINE=pytorch-native-cu118-precxx11 ./gradlew clean run
rm -rf /root/.djl.ai/
DJL_ENGINE=pytorch-native-cu113-precxx11 PT_VERSION=1.11.0 ./gradlew clean run
rm -rf /root/.djl.ai/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/canary-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
working-directory: canary
run: |
set -x
if [[ $(./gradlew -b bom.gradle --configuration runtimeClassPath | grep FAILED | wc -l) -gt 0 ]]; then false; fi
if [[ $(./gradlew -b bom.gradle dep --configuration runtimeClassPath | grep FAILED | wc -l) -gt 0 ]]; then false; fi
- name: Test MXNet
working-directory: canary
run: |
Expand Down
2 changes: 1 addition & 1 deletion canary/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def engine = getEnv("DJL_ENGINE", "pytorch-native-auto")
def os = getOsName()
def arch = System.getProperty("os.arch") == "amd64" ? "x86_64" : System.getProperty("os.arch")
def stagingRepo = getEnv("DJL_STAGING", null)
def ptVersion = getEnv("PT_VERSION", "1.13.1")
def ptVersion = getEnv("PT_VERSION", "2.0.1")

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ systemProp.org.gradle.internal.http.connectionTimeout=60000
# FIXME: Workaround gradle publish issue: https://github.com/gradle/gradle/issues/11308
systemProp.org.gradle.internal.publish.checksums.insecure=true

djl_version=0.24.0
djl_version=0.25.0
commons_cli_version=1.5.0
log4j_slf4j_version=2.19.0
slf4j_simple_version=1.7.36
Expand Down

0 comments on commit d934a49

Please sign in to comment.