Matthias Fey

Results 1035 comments of Matthias Fey

Thanks for reporting. Can you do me a favor and test if the same issues persists for you on `torch-geometric==1.7.2`? Simply running ``` pip install --upgrade torch-geometric==1.7.2 ``` and removing...

Thanks for confirming. I will try to look into this.

Hi @DesmonDay, this is really great. Thank you so much! I appreciate the efforts of converting GNNAutoScale to PGL. Let me know if you need any advice in implementing the...

This has nothing to do with PyTorch or `torch-sparse`. Are you sure you installed the PyGAS library (there should exist some `*.so` files inside `torch_geometric_autoscale`. Otherwise, please run ``` pip...

Mmh, in case the *.so files exist, importlib should find them as well (in which case find_spec should not return None). Can you do some manual debugging on why these...

It seems there is a problem compiling the CUDA code. What's the output of running ``` pyton setup.py clean && rm -rf build && python setup.py install ```

Is there a specific error happening during `python setup.py install` or are those just warnings? Building on Windows will generate a lot of warnings (coming from PyTorch), which is out...

I see. It looks like `cuda` binaries are not built at all, which suggests that `WITH_CUDA` in [`setup.py`](https://github.com/rusty1s/pyg_autoscale/blob/master/setup.py#L12) will be set to `False`. Can you verify if that's the case?...

Thanks for reporting. Does [this](https://github.com/rusty1s/pyg_autoscale/issues/4#issuecomment-906117574) help?

Can you try to run a fresh install? What's the output log of `python setup.py develop`? Note that I just added better support for this in master. You can now...