-
Notifications
You must be signed in to change notification settings - Fork 13
/
Jenkinsfile
237 lines (218 loc) · 8.33 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
#!groovy
/*
* Copyright (c) 2016-2017 Haggai Eran, Gabi Malka, Lior Zeno, Maroun Tork
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation and/or
* other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
def ikernels=['passthrough', 'threshold', 'cms', 'pktgen', 'echo', 'memcached', 'coap']
// shorter builds in coap - we are in a hurry
if (env.BRANCH_NAME in ['coap', 'coap-timing-constraint']) {
// threshold for sanity
ikernels=['coap', 'threshold']
}
// For which ikernels to disable RTL/C co-sim
def ikernels_disable_cosim = ikernels
// projects that require a large amount of memory should
// build serially to avoid thrashing
def serial_ikernels = ['memcached']
def parallel_ikernels = ikernels.minus(serial_ikernels)
properties ([parameters([
choice(name: 'VIVADO_VERSION',
description: 'The version of Vivado HLS to use for the build',
choices: ['2018.2', '2016.2', '2018.1', '2017.2', '2016.4'].join('\n')),
string(name: 'MEMCACHED_CACHE_SIZE', defaultValue: '4096', description: 'Memcached cache size in entries'),
string(name: 'MEMCACHED_KEY_SIZE', defaultValue: '16', description: 'Memcached key size in bytes'),
string(name: 'MEMCACHED_VALUE_SIZE', defaultValue: '16', description: 'Memcached value size in bytes'),
string(name: 'NUM_TC', defaultValue: '4', description: 'Number of traffic classes'),
])])
def build_hls_project(build_dir, project, simulation) {
def target = simulation ? "${project}-sim" : "${project}-hls"
if (simulation) {
echo "Running HLS RTL/C cosimulation for project ${project}."
} else {
echo "Running HLS synthesis for project ${project}."
}
dir("nica/$build_dir") {
sh vivadoEnv() + """
make ${target}
"""
}
if (simulation) {
archiveArtifacts "nica/$build_dir/${project}-sim/40Gbps/syn/report/*"
archiveArtifacts "nica/$build_dir/${project}-sim/40Gbps/sim/report/*"
archiveArtifacts "nica/$build_dir/${project}-sim/40Gbps/sim/verilog/*.v"
} else {
archiveArtifacts "nica/$build_dir/${project}/40Gbps/syn/report/*"
archiveArtifacts "nica/$build_dir/${project}/40Gbps/impl/ip/**/*"
}
archiveArtifacts "nica/$build_dir/${project}/40Gbps/40Gbps.log"
if (!simulation) {
// Fail if we have performance degredation due to dependency constraints
sh '! grep "SCHED-68" nica/$build_dir/$project/40Gbps/40Gbps.log > /dev/null'
}
}
def hls(build_dir, project, cosim) {
try {
build_hls_project(build_dir, project, false)
if (cosim) {
build_hls_project(build_dir, project, true)
}
} catch (Exception err) {
echo "Error: Exception ${err}"
currentBuild.result = 'FAILURE'
}
}
def findCmake() {
if (fileExists('/usr/bin/cmake3'))
return '/usr/bin/cmake3'
return 'cmake'
}
def vivadoEnv() {
return ". /opt/Xilinx/Vivado/${params.VIVADO_VERSION}/settings64.sh ;"
}
node {
def GTEST_ROOT=pwd() + '/googletest/googletest'
def CMAKE=findCmake()
stage('Preparation') {
// Fetch our code
dir('nica') {
// the HLS project
// This credential allows read-only to haggai's bitbucket
// Pull request build
checkout scm
// Update ntl
sh 'git submodule update --init'
}
dir ('googletest') {
// Google test for the HLS ikernel tests and NICA tests
git url: 'https://github.com/google/googletest', branch: 'v1.8.x'
// Build googletest (without googlemock)
sh """$CMAKE -DBUILD_GMOCK=OFF . ;
make -j"""
}
dir('nica/build') {
// Build the HLS repository (host part only)
// One ikernel
sh """
rm -f CMakeCache.txt
$CMAKE \
-DGTEST_ROOT=${GTEST_ROOT} \
-DXILINX_VIVADO_VERSION=${params.VIVADO_VERSION} \
-DNUM_IKERNELS=1 \
-DMEMCACHED_CACHE_SIZE=${params.MEMCACHED_CACHE_SIZE} \
-DMEMCACHED_KEY_SIZE=${params.MEMCACHED_KEY_SIZE} \
-DMEMCACHED_VALUE_SIZE=${params.MEMCACHED_VALUE_SIZE} \
-DNUM_TC=${params.NUM_TC} \
..
make -j
"""
}
//dir('nica/build-2') {
// // Build the HLS repository (host part only)
// // Two ikernels
// sh """
// $CMAKE \
// -DGTEST_ROOT=${GTEST_ROOT} \
// -DNUM_IKERNELS=2 \
// ..
// make -j
// """
//}
}
stage('Tests') {
dir('nica/build') {
// Run HLS unit tests (C simulation)
sh '''
make -j check
'''
}
}
def branches = [
serial: {
stage('NICA NUM_KERNELS=1') {
hls('build/nica', 'nica', false)
}
for (ikernel in serial_ikernels) {
stage(ikernel) {
hls('build/ikernels', ikernel,
!(ikernel in ikernels_disable_cosim))
}
}
},
parallel: {
for (ikernel in parallel_ikernels) {
stage(ikernel) {
hls('build/ikernels', ikernel,
!(ikernel in ikernels_disable_cosim))
}
}
}
]
currentBuild.result = 'SUCCESS'
parallel branches
// cleanup
dir('nica/build') {
sh "find -maxdepth 4 -name .autopilot -exec rm -r '{}' ';'"
}
}
// Choose the ikernel to build based on the branch name
@NonCPS
def getBuildIkernel(branchName) {
def buildIkernel = [
'pktgen': 'pktgen',
'memcached-cr': 'memcached',
'memcached-ddr': 'memcached',
'async-memory': 'memcached',
'echo': 'echo',
'coap': 'coap',
'coap-timing-constraint': 'coap',
].withDefault { key -> 'threshold' }
return buildIkernel[branchName]
}
def simulationBranch = [
'master': 'master',
'memcached-cr': 'memcached-ddr',
'memcached-ddr': 'memcached-ddr',
'coap-timing-constraint': 'coap-timing-constraint',
]
if (env.BRANCH_NAME in simulationBranch && currentBuild.result == 'SUCCESS') {
build job: "netperf-verilog/${simulationBranch[env.BRANCH_NAME]}", parameters: [
string(name: 'BUILD_NUM', value: env.BUILD_NUMBER),
string(name: 'NETPERF_HW_BRANCH', value: env.BRANCH_NAME),
string(name: 'IKERNEL0', value: getBuildIkernel(env.BRANCH_NAME))
], wait: false
}
if (currentBuild.result == 'SUCCESS') {
build job: "nica-implementation/${env.BRANCH_NAME}", parameters: [
string(name: 'BUILD_NUM', value: env.BUILD_NUMBER),
string(name: 'NETPERF_HW_BRANCH', value: env.BRANCH_NAME),
string(name: 'IKERNEL0', value: getBuildIkernel(env.BRANCH_NAME))
], wait: false
}
try {
color = 'warning'
if (currentBuild.result == 'SUCCESS')
color = 'good'
slackSend color: color, message: "Build ${env.JOB_NAME} ${env.BUILD_NUMBER} (<${env.BUILD_URL}|${env.BUILD_NUMBER}> completed: result = ${currentBuild.result})"
} catch (Exception err) {
echo "Error: Exception ${err}"
}