Jiazhen Wang
Jiazhen Wang
My env is gfx906, ROCm 4.0.0, PyTorch 1.8.0. `pytest tests/test_ops/` gives me `Aborted (core dumped)`.
Hi @sleep3r , is there any progress?
It looks strange. Could you provide some codes that are easy to reproduce?
I tried a simple case ``` class MyModule1(nn.Module): def __init__(self): super().__init__() self.model = nn.Sequential(*list(resnet50().children())[:-2]) @auto_fp16(apply_to=('img'), out_fp32=True) def extract_img_feat(self, img, img_metas): return self.model(img) def forward(self, img, img_metas): with torch.no_grad(): feat1 =...
Thank you for your suggestion. We will consider it.
What are your compilation commands?
It seems a bug of ROCm, still exists in mmcv master branch. After `.cu` files convert to `.hip` files, the files writen in `mmcv_full.egg-info/SOURCES.txt` become abspaths. If you just want...
Probably no. These filenames written in `mmcv_full.egg-info/SOURCES.txt` are from `op_files` of setup.
It seems that there is no way to get access to the cfg object from `WandbLoggerHook`. Maybe you can modify cfg object in `train.py` like this ``` for h in...
> I am trying to achieve the same thing. While investigating, I realized that the `WandbLoggerHook` methods have access to the `runner` object. However, the `runner` has no `cfg` class...