CUB bundle missing in GitHub's tarball
See original GitHub issueI am trying to build a conda package for v8.0.0rc1 locally, and notice that cupy/core/include/cupy/cub/
is empty in https://github.com/cupy/cupy/archive/v8.0.0rc1.tar.gz. So, attempting to build CuPy would get this error message (that we deliberately set up):
The folder cupy/core/include/cupy/cub/ is a git submodule but is
currently empty. Please use the command
git submodule update --init
to populate the folder before building from source.
The current workaround I have is to download and move CUB 1.8.0 to the include path, but I don’t think this is expected behavior.
Issue Analytics
- State:
- Created 3 years ago
- Comments:8 (8 by maintainers)
Top Results From Across the Web
containerd can't pull image from Github Docker Package ...
Using the new github docker registry containerd kubernetes can't pull image but using docker engine based k8s works fine.
Read more >some package's package.json is missing in tarball ... - GitHub
I'm opening this issue because: npm is producing an incorrect install. What's going wrong? Expect that installation will succeed.
Read more >Releases · pytorch/pytorch - GitHub
This release is meant to fix the following issues (regressions / silent correctness):. RuntimeError by torch.nn.modules.activation.
Read more >Cannot build from tarball due to lack of .git directory #6304
But if i try to build a specific version (such 1.2.5), that do not have the .git directory insede of the tarball that...
Read more >How do I download a tarball from GitHub using cURL?
Now I get the certificate problem: ruby -e "$(curl -fsSL raw.github.com/mxcl/homebrew/go)" curl: (60) SSL certificate problem: unable to get ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I think so, although it’s probably not a big deal. We can inject a file containing the CUB version string to
cupy_package_data
(added in #3879) and instruct setup.py to look it up during build time.The GitHub tarball is auto-generated by Github from the git tag, so we can’t do anything. (Maybe we can improve the message if
cupy/core/include/cupy/cub/.git
is absent, though)