MCPcopy Create free account
hub / github.com/NVIDIA/cutlass / argument_names

Method argument_names

tools/profiler/src/problem_space.cpp:726–738  ·  view source on GitHub ↗

Gets all argument names as an ordered vector

Source from the content-addressed store, hash-verified

724
725/// Gets all argument names as an ordered vector
726std::vector<std::string> ProblemSpace::argument_names() const {
727
728 Problem problem = this->begin().at();
729
730 std::vector<std::string> names;
731 names.reserve(problem.size());
732
733 for (auto const & arg : problem) {
734 names.push_back(arg->argument->description->aliases.front());
735 }
736
737 return names;
738}
739
740/////////////////////////////////////////////////////////////////////////////////////////////////
741

Callers

nothing calls this directly

Calls 5

atMethod · 0.45
beginMethod · 0.45
reserveMethod · 0.45
sizeMethod · 0.45
frontMethod · 0.45

Tested by

no test coverage detected