You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Canopy is picky about declarations. Currently it only parses a subset of all declarations from the CUDA C++ declarations. It will ignore declarations that are:
Private / Protected methods / attributes in a class
Declarations that are not in the specified list of paths to keep passed from API.
For 1), this is because Canopy currently should only parse declarations that CUDA C++ developers intend to expose to users. Extending this idea a bit, we should probably also extract namespace information and allow filtering by namespace (e.g. namespace detail) and function names (e.g. _internal_func).
The text was updated successfully, but these errors were encountered:
Canopy is picky about declarations. Currently it only parses a subset of all declarations from the CUDA C++ declarations. It will ignore declarations that are:
For 1), this is because Canopy currently should only parse declarations that CUDA C++ developers intend to expose to users. Extending this idea a bit, we should probably also extract namespace information and allow filtering by namespace (e.g.
namespace detail
) and function names (e.g._internal_func
).The text was updated successfully, but these errors were encountered: