Skip to content

Commit

Permalink
Fix bug in level zero detection of derived TT
Browse files Browse the repository at this point in the history
Signed-off-by: Joseph Schuchart <[email protected]>
  • Loading branch information
devreal committed Nov 16, 2023
1 parent bfa3fde commit 68e4825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ttg/ttg/parsec/ttg.h
Original file line number Diff line number Diff line change
Expand Up @@ -1114,7 +1114,7 @@ namespace ttg_parsec {
using have_hip_op_non_type_t = decltype(T::have_hip_op);

template <typename T>
using have_level_zero_op_non_type_t = decltype(T::have_hip_op);
using have_level_zero_op_non_type_t = decltype(T::have_level_zero_op);

bool alive = true;

Expand Down

0 comments on commit 68e4825

Please sign in to comment.