Skip to content

Commit

Permalink
cudakde: Fix restrict keyword order
Browse files Browse the repository at this point in the history
  • Loading branch information
xlz committed Feb 20, 2017
1 parent cec93c7 commit ec0d5bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cuda_kde_depth_packet_processor.cu
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ void phaseUnWrapper3(float t0, float t1,float t2, float* phase_first, float* pha
}

static __global__
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)
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)
{
const uint i = get_global_id(0);

Expand Down

0 comments on commit ec0d5bf

Please sign in to comment.