minor fix

This commit is contained in:
Vladislav Vinogradov
2010-11-16 07:40:37 +00:00
parent cc6a87fc9d
commit be54f1237a
2 changed files with 3 additions and 3 deletions

View File

@@ -64,8 +64,8 @@ namespace cv
}
template<class T> static inline void uploadConstant(const char* name, const T& value, cudaStream_t stream)
{
cudaSafeCall( cudaMemcpyToSymbolAsyc(name, &value, sizeof(T), 0, cudaMemcpyHostToDevice, stream) );
{
cudaSafeCall( cudaMemcpyToSymbolAsync(name, &value, sizeof(T), 0, cudaMemcpyHostToDevice, stream) );
}
template<class T> static inline void bindTexture(const char* name, const DevMem2D_<T>& img/*, bool normalized = false,