Skip to content

Commit

Permalink
Fixing agglomeration .so import name.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cooper committed Apr 15, 2023
1 parent 6ce0348 commit fe9e7f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion torch_quadconv/utils/agglomeration.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def agglomerate(points, elements, levels, factor):
bd_point_ind_ptr = bd_point_ind.astype(np.int32).ctypes.data_as(POINTER(c_int))

#call C function
lib_path = os.path.join(os.path.dirname(__file__), "opossum_agglom.so")
lib_path = os.path.join(os.path.dirname(__file__), "libopossum_agglom.so")
lib = CDLL(lib_path)
lib.agglomerate(activity_ptr, points_ptr, element_pos_ptr, element_ind_ptr, bd_point_ind_ptr, spatial_dim, num_points, num_elements, num_bd_points, levels, factor)

Expand Down

0 comments on commit fe9e7f7

Please sign in to comment.