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

Method operator==

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

Various comparison operators for comparing versions.

Source from the content-addressed store, hash-verified

42
43 /// Various comparison operators for comparing versions.
44 bool operator==(const BytecodeVersion &other) const {
45 return verMajor == other.verMajor && verMinor == other.verMinor &&
46 verTag == other.verTag;
47 }
48 bool operator!=(const BytecodeVersion &other) const {
49 return !(*this == other);
50 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected