Open samuela opened 2 years ago
@samuela Do you have latest nightly pytorch version ? I'd say you can skip coverage tests unless it is important for your work...
Those test are actually expected to fail, they are there to remind us that we need to sync our testing database with PyTorch's testing database :/. I should make this clearer somewhere and/or just remove these from the test directory
Thanks for clarifying @vfdev-5 and @zou3519! I'll just disable the failing tests for now.
@samuela Do you have latest nightly pytorch version ? I'd say you can skip coverage tests unless it is important for your work...
I'm using pytorch 1.11.0. I'm packaging functorch for Nixpkgs atm (https://github.com/NixOS/nixpkgs/pull/174248), and we don't have pytorch nightly packaged in Nixpkgs for better or worse. Is LLVM support only in nightly?
I'm using pytorch 1.11.0. I'm packaging functorch for Nixpkgs atm (https://github.com/NixOS/nixpkgs/pull/174248), and we don't have pytorch nightly packaged in Nixpkgs for better or worse. Is LLVM support only in nightly?
@samuela I do not know exactly how built pytorch binaries with respect to LLVM. Maybe, here you can find more info: https://github.com/pytorch/builder/blob/main/wheel/build_wheel.sh
I was checking if LLVM is enabled in 1.11 or nightly binaries and seems like it is enabled:
import torch
print(torch.__version__, torch._C._llvm_enabled())
# ('1.11.0', True)
# ('1.12.0.dev20220511+cu113', True)
By the way, functorch <-> pytorch compatibility is that : v0.1.1 <==> 1.11.0 and functorch source <==> pytorch nightly
Thanks for explaining @vfdev-5! I'm also building pytorch from source, so I'll have to dig into that some more to figure out what's going on...
I'm observing a number of test suite failures:
all fail with errors of the form
And
fails with
There are a handful of other errors regarding PyTorch not being compiled with LLVM support, but I suspect that those are due to my particular PyTorch package.
What do I need to do to get the test suite running successfully?