Dear Mr. Maze, "Mr. Maze" <[email protected]> writes: > I am currently working on an application where I need to retrieve the index > of the max value. > Is there a way to get the index along with the max of a gpuarray? > > At the moment I am returning the array back to the host just to locate > where the max value is.
you should be able to adapt this code here: https://github.com/inducer/pycuda/blob/master/test/test_gpuarray.py#L780 to not collect min and max but max and max-index. HTH, Andreas _______________________________________________ PyCUDA mailing list [email protected] http://lists.tiker.net/listinfo/pycuda
