We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92213e3 commit 6452a60Copy full SHA for 6452a60
pykokkos/core/cpp_setup.py
@@ -219,7 +219,9 @@ def generate_cmake(
219
# layout must also match the caller's views (GPU = LayoutLeft)
220
if is_host_execution_space(space):
221
default_space = km.get_default_space()
222
- view_layout_space = default_space if not is_host_execution_space(default_space) else space
+ view_layout_space = (
223
+ default_space if not is_host_execution_space(default_space) else space
224
+ )
225
else:
226
view_layout_space = space
227
view_layout: str = str(
0 commit comments