Skip to content

Commit

Permalink
ON
Browse files Browse the repository at this point in the history
  • Loading branch information
vuule committed Oct 8, 2024
1 parent b97bcd6 commit 3ea1e35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/io/utilities/datasource.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ class memory_mapped_source : public file_source {

auto const policy = getenv_or("LIBCUDF_MMAP_REGISTER_ENABLED", std::string{"AUTO"});

if (policy == "ALWAYS") { return true; }
if (policy == "ON") { return true; }
if (policy == "AUTO") { return pageableMemoryAccessUsesHostPageTables(); }
if (policy == "OFF") { return false; }

Expand Down

0 comments on commit 3ea1e35

Please sign in to comment.