Skip to content

Commit ec0d5bf

Browse files
committed
cudakde: Fix restrict keyword order
1 parent cec93c7 commit ec0d5bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cuda_kde_depth_packet_processor.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ void phaseUnWrapper3(float t0, float t1,float t2, float* phase_first, float* pha
695695
}
696696

697697
static __global__
698-
void processPixelStage2_phase3(const float4 __restrict__ *a_in, const float4 __restrict__ *b_in, float *phase_1, float *phase_2, float *phase_3, float *conf1, float *conf2, float *conf3)
698+
void processPixelStage2_phase3(const float4* __restrict__ a_in, const float4* __restrict__ b_in, float *phase_1, float *phase_2, float *phase_3, float *conf1, float *conf2, float *conf3)
699699
{
700700
const uint i = get_global_id(0);
701701

0 commit comments

Comments
 (0)