Code Monkey home page Code Monkey logo

Comments (8)

nkolot avatar nkolot commented on August 14, 2024 1

It seems that I compiled PyTorch before the fix.

In [1]: import torch
In [2]: torch.__version__
Out[2]: '0.4.0a0+200fb22'
In [3]: from torch.utils.cpp_extension import BuildExtension
In [4]: import inspect
In [5]: print(inspect.getsource(BuildExtension._define_torch_extension_name))
    def _define_torch_extension_name(self, extension):
        define = '-DTORCH_EXTENSION_NAME={}'.format(extension.name)
        if isinstance(extension.extra_compile_args, dict):
            for args in extension.extra_compile_args.values():
                args.append(define)
        else:
            extension.extra_compile_args.append(define)

from extension-cpp.

nkolot avatar nkolot commented on August 14, 2024

I actually found a workaround for now. If you want to name your module "foo.bar" you can use the top-level module name foo as the extension name and put the submodule names in the module def(), as shown here:

PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) {
    m.def("bar.myfunction", &myfunction_cuda, "MY_FUNCTION");
}

from extension-cpp.

soumith avatar soumith commented on August 14, 2024

cc: @goldsborough

from extension-cpp.

goldsborough avatar goldsborough commented on August 14, 2024

Hi @nkolot, this is a known issue with PYBIND11_MODULE. I thought this was fixed by @fmassa in pytorch/pytorch#6986, where we fixed/hacked it by only making the last part of the dotted extension the actual extension name. I believe setuptools creates the directory structure to still make the extension importable with the full path. Maybe change TORCH_EXTENSION_NAME to just bar? Could you try that? @fmassa do you know why this doesn't work after your fix?

from extension-cpp.

fmassa avatar fmassa commented on August 14, 2024

@nkolot are you sure you installed PyTorch from source? The fix @goldsborough mentioned is not present in pytorch 0.4 (which is what we have for the binaries)
Also, can you check that your installation has the fix that @goldsborough mentioned?

from extension-cpp.

nkolot avatar nkolot commented on August 14, 2024

Yes, PyTorch is compiled from source.
I can confirm that the fix @goldsborough is working.
So in my setup.py file I have

ext_modules = [CUDAExtension('foo.bar', ['bar_cuda.cpp', 'bar_cuda_kernel.cu']),]

and in bar_cuda.cpp

PYBIND11_MODULE(bar, m) {
    m.def("myfunc", &my_func, "MY_FUNC");
}

It even works with deeper nesting, i.e. foo.bar.foobar, as long as I put the last part in PYBIND.

from extension-cpp.

goldsborough avatar goldsborough commented on August 14, 2024

Great, thanks for confirming. Think we can close this then.

from extension-cpp.

fmassa avatar fmassa commented on August 14, 2024

@nkolot I still didn't quite understand... is pytorch/pytorch#6986 present in your installation? That patch is supposed to be doing what @goldsborough mentioned.

from extension-cpp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.