blob: f26012257d6ea25fc082a5aafd807866b6612a60 [file] [log] [blame]
#ifdef NAMEDTENSOR_ENABLED
#include <ATen/NamedTensor.h>
namespace at {
bool NamedTensorMeta::has_names() const {
return !std::all_of(
names.begin(), names.end(), [](const Dimname& n) {
return n.type() == NameType::WILDCARD;
});
}
}
#endif