Skip to content

Commit

Permalink
Fix name of mem_attach_flags.SINGLE
Browse files Browse the repository at this point in the history
  • Loading branch information
seibert committed Feb 18, 2014
1 parent 817928c commit 0b1cc3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wrapper/wrap_cudadrv.cpp
Expand Up @@ -857,7 +857,7 @@ BOOST_PYTHON_MODULE(_driver)
py::enum_<CUmemAttach_flags>("mem_attach_flags")
.value("GLOBAL", CU_MEM_ATTACH_GLOBAL)
.value("HOST", CU_MEM_ATTACH_HOST)
.value("STREAM", CU_MEM_ATTACH_SINGLE)
.value("SINGLE", CU_MEM_ATTACH_SINGLE)
;
#endif

Expand Down

0 comments on commit 0b1cc3c

Please sign in to comment.