We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e4428b commit d0edb05Copy full SHA for d0edb05
src/popsift/s_orientation.cu
@@ -204,10 +204,10 @@ void ori_par( const int octave,
204
refined_angle[bin] = predicate ? prev + newbin : -1;
205
yval[bin] = predicate ? -(num*num) / (4.0f * denB) + sm_hist[prev] : -INFINITY;
206
}
207
+ __syncthreads();
208
209
int2 best_index = make_int2( threadIdx.x, threadIdx.x + 32 );
210
- __syncthreads();
211
BitonicSort::Warp32<float> sorter( yval );
212
sorter.sort64( best_index );
213
__syncthreads();
0 commit comments