We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d38dcf0 commit 61fa034Copy full SHA for 61fa034
src/Lower.cpp
@@ -331,6 +331,10 @@ void lower_impl(const vector<Function> &output_funcs,
331
debug(1) << "Selecting a GPU API for extern stages...\n";
332
s = select_gpu_api(s, t);
333
log("Lowering after selecting a GPU API for extern stages:", s);
334
+ } else {
335
+ debug(1) << "Injecting host-dirty marking...\n";
336
+ s = inject_host_dev_buffer_copies(s, t);
337
+ log("Lowering after injecting host-dirty marking:", s);
338
}
339
340
debug(1) << "Simplifying...\n";
0 commit comments