python3Packages.causal-conv1d: fix inverted broken condition (#480740)
This commit is contained in:
@@ -87,6 +87,6 @@ buildPythonPackage rec {
|
||||
|
||||
# The package requires either CUDA or ROCm.
|
||||
# It doesn't work without either, nor with both.
|
||||
broken = cudaSupport != rocmSupport;
|
||||
broken = cudaSupport == rocmSupport;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user