diff options
| author | Amruth <[email protected]> | 2018-04-04 13:44:10 -0700 |
|---|---|---|
| committer | Amruth <[email protected]> | 2018-04-04 13:44:10 -0700 |
| commit | 31ad7674de6dc4b25ba862bcd00b660fdb1a5cff (patch) | |
| tree | e333b3e60839a91b9049edf150c80935e71b7d49 /libcuda | |
| parent | f9c42bd10a37b2e7556f006641eff11090762e7e (diff) | |
adding missing ptxas flags for cdp support
Diffstat (limited to 'libcuda')
| -rw-r--r-- | libcuda/cuda_runtime_api.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcuda/cuda_runtime_api.cc b/libcuda/cuda_runtime_api.cc index ded1aee..c103244 100644 --- a/libcuda/cuda_runtime_api.cc +++ b/libcuda/cuda_runtime_api.cc @@ -1085,8 +1085,8 @@ __host__ cudaError_t CUDARTAPI cudaDeviceGetStreamPriorityRange(int* leastPriori return cudaSuccess; } -__host__ __device__ cudaError_t CUDARTAPI cudaStreamCreateWithFlags(cudaStream_t *pStream, unsigned int flags) { - return cudaStreamCreate(pStream); +__host__ __device__ cudaError_t CUDARTAPI cudaStreamCreateWithFlags(cudaStream_t *stream, unsigned int flags) { + return cudaStreamCreate(stream); } __host__ cudaError_t CUDARTAPI cudaStreamDestroy(cudaStream_t stream) |
