MCPcopy Create free account
hub / github.com/NVIDIA/cuda-tile / operator<

Method operator<

include/cuda_tile/Bytecode/Common/Version.h:51–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49 return !(*this == other);
50 }
51 bool operator<(const BytecodeVersion &other) const {
52 if (verMajor != other.verMajor)
53 return verMajor < other.verMajor;
54 if (verMinor != other.verMinor)
55 return verMinor < other.verMinor;
56 return verTag < other.verTag;
57 }
58 bool operator<=(const BytecodeVersion &other) const {
59 return *this < other || *this == other;
60 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected