The student project investigates the performance and memory handling of Python bindings for CUDA C++ code created with pybind11.
GNU General Public License v3.0
1
stars
0
forks
source link
Replace C cast with C++ cast #6
Closed
SimeonEhrig closed 3 years ago
Please replace the C casts (e.g.
(int)x
) with C++ casts (e.g.static_cast<int>(x)
)