Updates docs for hipHcc* functions, move to header

This commit is contained in:
Ben Sander
2016-09-17 08:40:47 -05:00
parent 50b78439af
commit 83140f8423
3 changed files with 5 additions and 6 deletions
+4
View File
@@ -7,11 +7,15 @@
#include <hc.hpp>
/**
* @brief Return hc::accelerator associated with the specified deviceId
* @return #hipSuccess, #hipErrorInvalidDevice
*/
hipError_t hipHccGetAccelerator(int deviceId, hc::accelerator *acc);
/**
* @brief Return hc::accelerator_view associated with the specified stream
*
* If stream is 0, the accelerator_view for the default stream is returned.
* @return #hipSuccess
*/
hipError_t hipHccGetAcceleratorView(hipStream_t stream, hc::accelerator_view **av);
#endif