Skip to content

Commit 98de736

Browse files
authored
AIKit 2023.1, fixes to Jenkinsfile (#67)
1 parent 2a81920 commit 98de736

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/list_components.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ env:
1818
LINUX_BASEKIT_URL: https://registrationcenter-download.intel.com/akdlm/irc_nas/19079/l_BaseKit_p_2023.0.0.25537.sh
1919
LINUX_HPCKIT_URL: https://registrationcenter-download.intel.com/akdlm/irc_nas/19084/l_HPCKit_p_2023.0.0.25400.sh
2020
LINUX_IOTKIT_URL: https://registrationcenter-download.intel.com/akdlm/irc_nas/19082/l_IoTKit_p_2023.0.0.25397.sh
21-
LINUX_AIKIT_URL: https://registrationcenter-download.intel.com/akdlm/irc_nas/19090/l_AIKit_p_2023.0.0.26100.sh
21+
LINUX_AIKIT_URL: https://registrationcenter-download.intel.com/akdlm/irc_nas/19202/l_AIKit_p_2023.1.0.31760.sh
2222
LINUX_DLFDKIT_URL: https://registrationcenter-download.intel.com/akdlm/irc_nas/19081/l_DLFDKit_p_2023.0.0.25405.sh
2323
LINUX_RENDERKIT_URL: https://registrationcenter-download.intel.com/akdlm/irc_nas/19087/l_RenderKit_p_2023.0.0.25403.sh
2424
MACOS_BASEKIT_URL: https://registrationcenter-download.intel.com/akdlm/irc_nas/19080/m_BaseKit_p_2023.0.0.25441.dmg

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// SPDX-License-Identifier: MIT
44

55
def SAMPLES_REPO = "https://github.com/oneapi-src/oneAPI-samples.git"
6-
def SAMPLES_TAG = "2022.3.0"
6+
def SAMPLES_TAG = "2023.0.0"
77

88
pipeline {
99
agent { docker { image 'intel/oneapi-hpckit' } }
@@ -23,7 +23,7 @@ pipeline {
2323
stage('build DPC++') {
2424
steps {
2525
dir ("oneAPI-samples/DirectProgramming/DPC++/DenseLinearAlgebra/vector-add") {
26-
sh "make all && make run"
26+
sh "mkdir build && cd build && cmake .. && make cpu-gpu && ./vector-add-buffers"
2727
}
2828
}
2929
}

0 commit comments

Comments
 (0)