Explorar o código

StarPU: Use character _ instead of - in filenames

Nathalie Furmento %!s(int64=15) %!d(string=hai) anos
pai
achega
0d2f72b8bc

+ 4 - 4
tests/experiments/bandwidth-cuda/Makefile

@@ -28,11 +28,11 @@ LDFLAGS+= $(ATLASDIR)/lib/$(BLASARCH)/libatlas.a
 CFLAGS+= -g #-pg
 #LDFLAGS+= -pg
 
-all:  cuda-bandwidth
+all:  cuda_bandwidth
 
-cuda-bandwidth:  cuda-bandwidth.o
-	$(CC)  cuda-bandwidth.o -o  cuda-bandwidth $(LDFLAGS)
+cuda_bandwidth:  cuda_bandwidth.o
+	$(CC)  cuda_bandwidth.o -o  cuda_bandwidth $(LDFLAGS)
 
 clean:
-	rm -f cuda-bandwidth
+	rm -f cuda_bandwidth
 	rm -f *.o

+ 1 - 1
tests/experiments/bandwidth-cuda/bench-bandwidth.gp

@@ -18,7 +18,7 @@
 
 
 set term postscript eps enhanced color
-set output "bench-bandwidth.eps"
+set output "bench_bandwidth.eps"
 set title "CUDA Bandwidth"
 set logscale x
 set xlabel "Size (Bytes)"

+ 5 - 5
tests/experiments/bandwidth-cuda/bench-bandwidth.sh

@@ -27,7 +27,7 @@ echo "H -> D"
 for log in `seq 1 13`
 do
 	size=$((2**$log))
-	echo "$size	`./cuda-bandwidth -pin -HtoD -size $size -cpu-ld $size -gpu-ld $size -iter 50`" >> .results/htod-pin.data 
+	echo "$size	`./cuda_bandwidth -pin -HtoD -size $size -cpu-ld $size -gpu-ld $size -iter 50`" >> .results/htod-pin.data 
 done
 
 echo "D -> H"
@@ -35,10 +35,10 @@ echo "D -> H"
 for log in `seq 1 13`
 do
 	size=$((2**$log))
-	echo "$size	`./cuda-bandwidth -pin -size $size -cpu-ld $size -gpu-ld $size -iter 50`" >> .results/dtoh-pin.data 
+	echo "$size	`./cuda_bandwidth -pin -size $size -cpu-ld $size -gpu-ld $size -iter 50`" >> .results/dtoh-pin.data 
 done
 
-./bench-bandwidth.gp
+./bench_bandwidth.gp
 
 echo "STRIDED H -> D"
 
@@ -50,7 +50,7 @@ do
 	for log in `seq 1 $stridelog`
 	do
 		size=$((2**$log))
-		echo "$size	`./cuda-bandwidth -pin -HtoD -size $size -cpu-ld $stridesize -gpu-ld $stridesize -iter 50`" >> .results/htod-pin.$stridesize.data 
+		echo "$size	`./cuda_bandwidth -pin -HtoD -size $size -cpu-ld $stridesize -gpu-ld $stridesize -iter 50`" >> .results/htod-pin.$stridesize.data 
 	done
 done
 
@@ -64,6 +64,6 @@ do
 	for log in `seq 1 $stridelog`
 	do
 		size=$((2**$log))
-		echo "$size	`./cuda-bandwidth -pin -size $size -cpu-ld $stridesize -gpu-ld $stridesize -iter 50`" >> .results/dtoh-pin.$stridesize.data 
+		echo "$size	`./cuda_bandwidth -pin -size $size -cpu-ld $stridesize -gpu-ld $stridesize -iter 50`" >> .results/dtoh-pin.$stridesize.data 
 	done
 done

+ 1 - 1
tests/experiments/bandwidth-cuda/bench-bandwidth-strided.gp

@@ -18,7 +18,7 @@
 
 
 set term postscript eps enhanced color
-set output "bench-bandwidth-strided.eps"
+set output "bench_bandwidth_strided.eps"
 set title "CUDA Bandwidth"
 set logscale x
 set xlabel "Size (Bytes/4)"

tests/experiments/bandwidth-cuda/cuda-bandwidth.c → tests/experiments/bandwidth-cuda/cuda_bandwidth.c


tests/perf-models/error-model.gp → tests/perf-models/error_model.gp


+ 1 - 1
tests/perf-models/error-model.sh

@@ -105,4 +105,4 @@ do
 	echo "$cpu_ntasks $avgcpu $gpu_ntasks $avgcuda $avggflops" >> gnuplot.data
 done
 
-./error-model.gp
+./error_model.gp