(self, ptr, x, y, z, pitch)
| 76 | allocated by cudaMalloc3D, pitch is the pitch as returned by cudaMalloc3D. |
| 77 | """ |
| 78 | def __init__(self, ptr, x, y, z, pitch): |
| 79 | self.ptr = ptr |
| 80 | self.x = x |
| 81 | self.y = y |
| 82 | self.z = z |
| 83 | self.pitch = pitch |
nothing calls this directly
no outgoing calls
no test coverage detected