Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
PatriceVignola committed Apr 23, 2024
1 parent 410a1ea commit 6a6254b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python/python.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,15 +250,15 @@ PYBIND11_MODULE(onnxruntime_genai, m) {
#if USE_CUDA
return true;
#else
return false;
return false;
#endif
});

m.def("is_dml_available", []() {
#if USE_DML
return true;
#else
return false;
return false;
#endif
});

Expand Down

0 comments on commit 6a6254b

Please sign in to comment.