Skip to content

[BUG] conda environment doesn't solve on arm64 #167

@trxcllnt

Description

@trxcllnt

Attempting to solve the conda environment on arm64 machines fails with this error:

PackagesNotFoundError: The following packages are not available from current channels:
  - dgl

I don't see any aarch64 files in dglteam on anaconda.org, so I'm curious how the aarch64 conda packages are working? Should the dependencies.yaml pins be updated to match dgl >=2.4.0.th24.cu* used in the conda recipe?

Alternatively, we can restrict this dependency to x86_64:

--- a/dependencies.yaml
+++ b/dependencies.yaml
@@ -479,13 +479,13 @@ dependencies:
     specific:
       - output_types: [conda]
         matrices:
-          - matrix: {cuda: "12.*"}
+          - matrix: {arch: x86_64, cuda: "12.*"}
             packages:
               - "dglteam/label/th24_cu124::dgl"
-          - matrix: {cuda: "11.*"}
+          - matrix: {arch: x86_64, cuda: "11.*"}
             packages:
               - "dglteam/label/th24_cu118::dgl"
-          - {matrix: null, packages: ["dglteam/label/th24_cu124::dgl"]}
+          - {matrix: null, packages: null}
 
   depends_on_pyg:
     common:

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions