From 11b308e7363e937966b035b4891db32b4eece3bf Mon Sep 17 00:00:00 2001 From: Tor Aamodt Date: Fri, 1 Oct 2010 08:55:28 -0800 Subject: integrating recent changes from fermi-test into fermi (i'll use "fermi" for more disruptive changes to the pipeline model such as updating the MSHRs and getting rid of the warp tracker, ripping out DWF, etc...) [git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 7805] --- benchmarks/CUDA/WP/util4.cu | 46 --------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 benchmarks/CUDA/WP/util4.cu (limited to 'benchmarks/CUDA/WP/util4.cu') diff --git a/benchmarks/CUDA/WP/util4.cu b/benchmarks/CUDA/WP/util4.cu deleted file mode 100644 index 4b629d4..0000000 --- a/benchmarks/CUDA/WP/util4.cu +++ /dev/null @@ -1,46 +0,0 @@ -#ifndef PREPASS -#include -#include -#include -#include "cublas.h" -#endif - -__device__ float4 max4 ( const float4 a , const float4 b ) -{ - float4 c ; - c.x = (a.x>b.x)?a.x:b.x; - c.y = (a.y>b.y)?a.y:b.y; - c.z = (a.z>b.z)?a.z:b.z; - c.w = (a.w>b.w)?a.w:b.w; - return(c) ; -} -__device__ float4 min4 ( const float4 a , const float4 b ) -{ - float4 c ; - c.x = (a.x