Mentions légales du service

Skip to content
Snippets Groups Projects
Commit b225f012 authored by ANDRADE-BARROSO Guillermo's avatar ANDRADE-BARROSO Guillermo
Browse files

fix for python3 int division tp_reverse.py

parent 9b2eff62
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ size_data=100
# number of threads in a block
block_size=32
# number of blocks of thread
num_blocks=(size_data+block_size-1)/block_size
num_blocks=(size_data+block_size-1)//block_size
source = numpy.arange(0,size_data,1).astype(numpy.float32)
destination = numpy.zeros_like(source)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment