Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SYCL][Graph] Implement Dynamic Local Accessors #16573

Draft
wants to merge 10 commits into
base: sycl
Choose a base branch
from
Prev Previous commit
Next Next commit
Fix build issue
  • Loading branch information
fabiomestre committed Jan 15, 2025
commit c848b8019620b94c792a92fe1ca0caaf0612cb5b
2 changes: 1 addition & 1 deletion sycl/include/sycl/ext/oneapi/experimental/graph.hpp
Original file line number Diff line number Diff line change
@@ -499,7 +499,7 @@ class dynamic_parameter : public detail::dynamic_parameter_base {
/// @param Param A reference value for this parameter used for CTAD.
dynamic_parameter(experimental::command_graph<graph_state::modifiable> Graph,
const ValueT &Param)
: detail::dynamic_parameter_base(Graph, sizeof(ValueT), &Param) {}
: detail::dynamic_parameter_base(Graph, sizeof(ValueT), &Param, {}) {}

/// Updates this dynamic parameter and all registered nodes with a new value.
/// @param NewValue The new value for the parameter.