NullCodex

Results 19 comments of NullCodex

I don't understand why this is closed. The instructions are from the linked website and I am running into the same issue as well running the suggested `pip install --pre...

@junrushao I am running it on a macbook air m2. Here are the list of steps that I took: 1. `conda create -n mlc python=3.8` 2. `conda activate mlc` 3....

@junrushao ``` which python which pip python --version pip --version /Users/username/miniconda3/envs/mlc/bin/python /Users/username/miniconda3/envs/mlc/bin/pip Python 3.8.17 pip 23.1.2 from /Users/username/miniconda3/envs/mlc/lib/python3.8/site-packages/pip (python 3.8) ```

@junrushao i got the following: ``` pip install mlc_ai_nightly-0.12.dev1300-cp38-cp38-macosx_13_0_arm64.whl ERROR: mlc_ai_nightly-0.12.dev1300-cp38-cp38-macosx_13_0_arm64.whl is not a supported wheel on this platform. ``` Are m2 chips not supported?

@junrushao Input: `conda info | grep platform` Output: ``` platform : osx-arm64 ```

@junrushao unfortunately, it didn't provide any new information. ``` ERROR: Could not find a version that satisfies the requirement mlc-ai-nightly (from versions: none) ERROR: No matching distribution found for mlc-ai-nightly...

@junrushao i will try it out with building from source. I am not sure what issues are preventing me from using option 1.

@junrushao are there hardware requirements for the Mac? I am following the steps to building from source but I keep failing because I am running out of application memory. I...

@junrushao it's only one command to to build TVM which from the linked website is `cmake .. && cmake --build . --parallel $(nproc)` this command after 2 hours will cause...

@junrushao am i missing anything else? ``` # clone from GitHub git clone --recursive [email protected]:mlc-ai/relax.git tvm-unity && cd tvm-unity # create the build directory rm -rf build && mkdir build...