Skip to content

[NFC][SYCL] Fix comment. #2541

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

Merged
merged 2 commits into from
Sep 30, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions sycl/source/detail/scheduler/commands.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -493,10 +493,10 @@ class ExecCGCommand : public Command {

detail::CG &getCG() const { return *MCommandGroup; }

// MEmptyCmd one is only employed if this command refers to host-task.
// MEmptyCmd due to unreliable mechanism of lookup for single EmptyCommand
// amongst users of host-task-representing command. This unreliability roots
// in cleanup process.
// MEmptyCmd is only employed if this command refers to host-task.
// The mechanism of lookup for single EmptyCommand amongst users of
// host-task-representing command is unreliable. This unreliability roots in
// the cleanup process.
EmptyCommand *MEmptyCmd = nullptr;

private:
Expand Down