File kernel_tag.h File List > launch > kernel_tag.h Go to the documentation of this file #pragma once namespace muda { template <typename T> struct Tag { }; struct Default { }; using DefaultTag = Tag<Default>; } // namespace muda