Skip to content

Commit 2e76f35

Browse files
authored
Merge pull request #18 from Qinka/patch-1
fix a error, there should be a ' '
2 parents 3a17abe + c1c2b94 commit 2e76f35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core_gpu/include/octnet/gpu/split.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ extern "C" {
3232

3333
void octree_split_by_prob_gpu(const octree* in, const octree* prob, const ot_data_t thr, bool check, octree* out);
3434
void octree_split_full_gpu(const octree* in, octree* out);
35-
void octree_split_reconstruction_surface_gpu(const octree* in, const octree* rec, ot_data_t rec_thr_from, ot_data_trec_thr_to, octree* out);
35+
void octree_split_reconstruction_surface_gpu(const octree* in, const octree* rec, ot_data_t rec_thr_from, ot_data_t rec_thr_to, octree* out);
3636

3737
void octree_split_bwd_gpu(const octree* in, const octree* grad_out, octree* grad_in);
3838

3939

40-
void octree_split_dense_reconstruction_surface_gpu(const ot_data_t* features, const ot_data_t* reconstruction, int dense_depth, int dense_height, int dense_width, int feature_size, ot_data_t rec_thr_from, ot_data_t rec_thr_to, int structure_type, octree* out);
40+
void octree_split_dense_reconstruction_surface_gpu(const ot_data_t* features, const ot_data_t* reconstruction, int n, int dense_depth, int dense_height, int dense_width, int feature_size, ot_data_t rec_thr_from, ot_data_t rec_thr_to, int structure_type, octree* out);
4141
void octree_split_dense_reconstruction_surface_bwd_gpu(const octree* grad_out, ot_data_t* grad_in);
4242

4343

0 commit comments

Comments
 (0)