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 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
|
nvcc_PROBE() {
if [ -z "$REAL_NVCC" ]; then
echo "nvcc is not available"
elif ! command -v cuobjdump >/dev/null; then
echo "cuobjdump is not available"
fi
}
nvcc_SETUP() {
# Test code using only c++ (option --x c++). Faster than compiling cuda.
cat <<EOF > test_cpp.cu
#ifndef NUM
#define NUM 10000
#endif
void caller() {
for (int i = 0; i < NUM; ++i);
}
EOF
# Option files to modify the define.
cat <<EOF >test1.optf
-DNUM=1
EOF
cat <<EOF >test2.optf
-DNUM=2
EOF
# Test code using cuda.
cat <<EOF >test_cuda.cu
#ifndef NUM
#define NUM 10000
#endif
__global__
void add(int *a, int *b) {
int i = blockIdx.x;
if (i < NUM) {
b[i] = 2 * a[i];
}
}
void caller() {
add<<<NUM, 1>>>(NULL,NULL);
}
EOF
}
nvcc_tests() {
# Reference file testing was not successful due to different "fatbin" data.
# Another source of differences are the temporary files created by nvcc;
# that can be avoided by using the options "--keep --keep-dir ./keep". So
# instead of comparing the binary object files, we compare the dumps of
# "cuobjdump -all -elf -symbols -ptx -sass test1.o".
nvcc_opts_cpp="-Wno-deprecated-gpu-targets -c --x c++"
nvcc_opts_cuda="-Wno-deprecated-gpu-targets -c -x cu"
nvcc_opts_gpu1="--generate-code arch=compute_50,code=compute_50"
nvcc_opts_gpu2="--generate-code arch=compute_52,code=sm_52"
ccache_nvcc_cpp="$CCACHE $REAL_NVCC $nvcc_opts_cpp"
ccache_nvcc_cuda="$CCACHE $REAL_NVCC $nvcc_opts_cuda"
cuobjdump="cuobjdump -all -elf -symbols -ptx -sass"
# -------------------------------------------------------------------------
TEST "Simple mode"
$REAL_NVCC $nvcc_opts_cpp -o reference_test1.o test_cpp.cu
# First compile.
$ccache_nvcc_cpp test_cpp.cu
expect_stat preprocessed_cache_hit 0
expect_stat cache_miss 1
expect_stat files_in_cache 1
expect_equal_content reference_test1.o test_cpp.o
$ccache_nvcc_cpp test_cpp.cu
expect_stat preprocessed_cache_hit 1
expect_stat cache_miss 1
expect_stat files_in_cache 1
expect_equal_content reference_test1.o test_cpp.o
# -------------------------------------------------------------------------
TEST "Different GPU architectures"
$REAL_NVCC $nvcc_opts_cuda -o reference_test1.o test_cuda.cu
$REAL_NVCC $nvcc_opts_cuda $nvcc_opts_gpu1 -o reference_test2.o test_cuda.cu
$REAL_NVCC $nvcc_opts_cuda $nvcc_opts_gpu2 -o reference_test3.o test_cuda.cu
$cuobjdump reference_test1.o > reference_test1.dump
$cuobjdump reference_test2.o > reference_test2.dump
$cuobjdump reference_test3.o > reference_test3.dump
expect_different_content reference_test1.dump reference_test2.dump
expect_different_content reference_test1.dump reference_test3.dump
expect_different_content reference_test2.dump reference_test3.dump
$ccache_nvcc_cuda test_cuda.cu
expect_stat preprocessed_cache_hit 0
expect_stat cache_miss 1
expect_stat files_in_cache 1
$cuobjdump test_cuda.o > test1.dump
expect_equal_content reference_test1.dump test1.dump
# Other GPU.
$ccache_nvcc_cuda $nvcc_opts_gpu1 test_cuda.cu
expect_stat preprocessed_cache_hit 0
expect_stat cache_miss 2
expect_stat files_in_cache 2
$cuobjdump test_cuda.o > test1.dump
expect_equal_content reference_test2.dump test1.dump
$ccache_nvcc_cuda $nvcc_opts_gpu1 test_cuda.cu
expect_stat preprocessed_cache_hit 1
expect_stat cache_miss 2
expect_stat files_in_cache 2
$cuobjdump test_cuda.o > test1.dump
expect_equal_content reference_test2.dump test1.dump
# Another GPU.
$ccache_nvcc_cuda $nvcc_opts_gpu2 test_cuda.cu
expect_stat preprocessed_cache_hit 1
expect_stat cache_miss 3
expect_stat files_in_cache 3
$cuobjdump test_cuda.o > test1.dump
expect_equal_content reference_test3.dump test1.dump
$ccache_nvcc_cuda $nvcc_opts_gpu2 test_cuda.cu
expect_stat preprocessed_cache_hit 2
expect_stat cache_miss 3
expect_stat files_in_cache 3
$cuobjdump test_cuda.o > test1.dump
expect_equal_content reference_test3.dump test1.dump
# -------------------------------------------------------------------------
TEST "Option -dc"
$REAL_NVCC $nvcc_opts_cuda -dc -o reference_test4.o test_cuda.cu
$cuobjdump reference_test4.o > reference_test4.dump
$ccache_nvcc_cuda -dc -o test_cuda.o test_cuda.cu
expect_stat preprocessed_cache_hit 0
expect_stat cache_miss 1
expect_stat files_in_cache 1
$cuobjdump test_cuda.o > test4.dump
expect_equal_content test4.dump reference_test4.dump
$ccache_nvcc_cuda -dc -o test_cuda.o test_cuda.cu
expect_stat preprocessed_cache_hit 1
expect_stat cache_miss 1
expect_stat files_in_cache 1
$cuobjdump test_cuda.o > test4.dump
expect_equal_content test4.dump reference_test4.dump
# -------------------------------------------------------------------------
TEST "Different defines"
$REAL_NVCC $nvcc_opts_cpp -o reference_test1.o test_cpp.cu
$REAL_NVCC $nvcc_opts_cpp -DNUM=10 -o reference_test2.o test_cpp.cu
expect_different_content reference_test1.o reference_test2.o
$ccache_nvcc_cpp test_cpp.cu
expect_stat preprocessed_cache_hit 0
expect_stat cache_miss 1
expect_stat files_in_cache 1
expect_equal_content reference_test1.o test_cpp.o
# Specified define, but unused. Can only be found by preprocessed mode.
$ccache_nvcc_cpp -DDUMMYENV=1 test_cpp.cu
expect_stat preprocessed_cache_hit 1
expect_stat cache_miss 1
expect_stat files_in_cache 1
expect_equal_content reference_test1.o test_cpp.o
# Specified used define.
$ccache_nvcc_cpp -DNUM=10 test_cpp.cu
expect_stat preprocessed_cache_hit 1
expect_stat cache_miss 2
expect_stat files_in_cache 2
expect_equal_content reference_test2.o test_cpp.o
$ccache_nvcc_cpp -DNUM=10 test_cpp.cu
expect_stat preprocessed_cache_hit 2
expect_stat cache_miss 2
expect_stat files_in_cache 2
expect_equal_content reference_test2.o test_cpp.o
# -------------------------------------------------------------------------
TEST "Option file"
$REAL_NVCC $nvcc_opts_cpp -optf test1.optf -o reference_test1.o test_cpp.cu
$REAL_NVCC $nvcc_opts_cpp -optf test2.optf -o reference_test2.o test_cpp.cu
expect_different_content reference_test1.o reference_test2.o
$ccache_nvcc_cpp -optf test1.optf test_cpp.cu
expect_stat preprocessed_cache_hit 0
expect_stat cache_miss 1
expect_stat files_in_cache 1
expect_equal_content reference_test1.o test_cpp.o
$ccache_nvcc_cpp -optf test1.optf test_cpp.cu
expect_stat preprocessed_cache_hit 1
expect_stat cache_miss 1
expect_stat files_in_cache 1
expect_equal_content reference_test1.o test_cpp.o
$ccache_nvcc_cpp -optf test2.optf test_cpp.cu
expect_stat preprocessed_cache_hit 1
expect_stat cache_miss 2
expect_stat files_in_cache 2
expect_equal_content reference_test2.o test_cpp.o
$ccache_nvcc_cpp -optf test2.optf test_cpp.cu
expect_stat preprocessed_cache_hit 2
expect_stat cache_miss 2
expect_stat files_in_cache 2
expect_equal_content reference_test2.o test_cpp.o
# -------------------------------------------------------------------------
TEST "Option --compiler-bindir"
$REAL_NVCC $nvcc_opts_cpp --compiler-bindir $COMPILER_BIN \
-o reference_test1.o test_cpp.cu
# First compile.
$ccache_nvcc_cpp --compiler-bindir $COMPILER_BIN test_cpp.cu
expect_stat preprocessed_cache_hit 0
expect_stat cache_miss 1
expect_stat files_in_cache 1
expect_equal_content reference_test1.o test_cpp.o
$ccache_nvcc_cpp --compiler-bindir $COMPILER_BIN test_cpp.cu
expect_stat preprocessed_cache_hit 1
expect_stat cache_miss 1
expect_stat files_in_cache 1
expect_equal_content reference_test1.o test_cpp.o
# -------------------------------------------------------------------------
TEST "Option -ccbin"
$REAL_NVCC $nvcc_opts_cpp -ccbin $COMPILER_BIN \
-o reference_test1.o test_cpp.cu
# First compile.
$ccache_nvcc_cpp -ccbin $COMPILER_BIN test_cpp.cu
expect_stat preprocessed_cache_hit 0
expect_stat cache_miss 1
expect_stat files_in_cache 1
expect_equal_content reference_test1.o test_cpp.o
$ccache_nvcc_cpp -ccbin $COMPILER_BIN test_cpp.cu
expect_stat preprocessed_cache_hit 1
expect_stat cache_miss 1
expect_stat files_in_cache 1
expect_equal_content reference_test1.o test_cpp.o
# -------------------------------------------------------------------------
TEST "Option --output-directory"
$REAL_NVCC $nvcc_opts_cpp --output-directory . \
-o reference_test1.o test_cpp.cu
# First compile.
$ccache_nvcc_cpp --output-directory . test_cpp.cu
expect_stat preprocessed_cache_hit 0
expect_stat cache_miss 1
expect_stat files_in_cache 1
expect_equal_content reference_test1.o test_cpp.o
$ccache_nvcc_cpp --output-directory . test_cpp.cu
expect_stat preprocessed_cache_hit 1
expect_stat cache_miss 1
expect_stat files_in_cache 1
expect_equal_content reference_test1.o test_cpp.o
# -------------------------------------------------------------------------
TEST "Option -odir"
$REAL_NVCC $nvcc_opts_cpp -odir . -o reference_test1.o test_cpp.cu
# First compile.
$ccache_nvcc_cpp -odir . test_cpp.cu
expect_stat preprocessed_cache_hit 0
expect_stat cache_miss 1
expect_stat files_in_cache 1
expect_equal_content reference_test1.o test_cpp.o
$ccache_nvcc_cpp -odir . test_cpp.cu
expect_stat preprocessed_cache_hit 1
expect_stat cache_miss 1
expect_stat files_in_cache 1
expect_equal_content reference_test1.o test_cpp.o
# -------------------------------------------------------------------------
TEST "Option -Werror"
$ccache_nvcc_cpp -Werror cross-execution-space-call test_cpp.cu
expect_stat preprocessed_cache_hit 0
expect_stat cache_miss 1
expect_stat files_in_cache 1
$ccache_nvcc_cpp -Werror cross-execution-space-call test_cpp.cu
expect_stat preprocessed_cache_hit 1
expect_stat cache_miss 1
expect_stat files_in_cache 1
}
SUITE_nvcc_PROBE() {
nvcc_PROBE
}
SUITE_nvcc_SETUP() {
nvcc_SETUP
}
SUITE_nvcc() {
nvcc_tests
}
|