Projects such as ComfyUI, bitsandbytes use torch.version.hip to judge if ROCm ABI version 7.2.x or else. But lately TheRock build bumped it to 7.13.x in torch/version.py:
hip: Optional[str] = '7.13.x'
rocm: Optional[str] = '7.14.0'
IMO it's better to leave torch.version.hip to indicate the ABI version and only use torch.version.rocm to indicate TheRock ROCm version.
Projects such as ComfyUI, bitsandbytes use
torch.version.hipto judge if ROCm ABI version 7.2.x or else. But lately TheRock build bumped it to 7.13.x in torch/version.py:IMO it's better to leave
torch.version.hipto indicate the ABI version and only usetorch.version.rocmto indicate TheRock ROCm version.