Skip to content

Commit

Permalink
remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
Ander Biguri committed Oct 18, 2022
1 parent a5b60c0 commit c0d30ec
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Python/tigre/utilities/cuda_interface/_Ax.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ def _Ax_ext(np.ndarray[np.float32_t, ndim=3] img, geometry, np.ndarray[np.float3
cdef c_Geometry* c_geometry = convert_to_c_geometry(geometry, total_projections)
if not c_geometry:
raise MemoryError("Error reading the geometry")
print(nDetectorPixels * total_projections* sizeof(float))
cdef float* c_projectionsNonPinned = <float*>malloc(nDetectorPixels * total_projections* sizeof(float))
if not c_projectionsNonPinned:
raise MemoryError("Error creating memory for projections")
Expand Down

0 comments on commit c0d30ec

Please sign in to comment.