Giter Club home page Giter Club logo

Comments (8)

ysh329 avatar ysh329 commented on June 1, 2024

Check

$ wget -c https://dist.apache.org/repos/dist/dev/tvm/tvm-v0.16.0-rc0/apache-tvm-src-v0.16.0.rc0.tar.gz
$ wget -c https://dist.apache.org/repos/dist/dev/tvm/tvm-v0.16.0-rc0/apache-tvm-src-v0.16.0.rc0.tar.gz.sha512
$ wget -c https://dist.apache.org/repos/dist/dev/tvm/tvm-v0.16.0-rc0/apache-tvm-src-v0.16.0.rc0.tar.gz.asc

++ echo 'Downloading ...'
Downloading ...
++ wget -c https://dist.apache.org/repos/dist/dev/tvm/tvm-v0.16.0-rc0/apache-tvm-src-v0.16.0.rc0.tar.gz.sha512
--2024-04-21 21:37:22--  https://dist.apache.org/repos/dist/dev/tvm/tvm-v0.16.0-rc0/apache-tvm-src-v0.16.0.rc0.tar.gz.sha512
Resolving dist.apache.org (dist.apache.org)... 13.90.137.153
Connecting to dist.apache.org (dist.apache.org)|13.90.137.153|:443... connected.
HTTP request sent, awaiting response... 200 OK

    The file is already fully retrieved; nothing to do.

++ wget -c https://dist.apache.org/repos/dist/dev/tvm/tvm-v0.16.0-rc0/apache-tvm-src-v0.16.0.rc0.tar.gz.asc
--2024-04-21 21:37:23--  https://dist.apache.org/repos/dist/dev/tvm/tvm-v0.16.0-rc0/apache-tvm-src-v0.16.0.rc0.tar.gz.asc
Resolving dist.apache.org (dist.apache.org)... 13.90.137.153
Connecting to dist.apache.org (dist.apache.org)|13.90.137.153|:443... connected.
HTTP request sent, awaiting response... 200 OK

    The file is already fully retrieved; nothing to do.

++ wget -c https://dist.apache.org/repos/dist/dev/tvm/tvm-v0.16.0-rc0/apache-tvm-src-v0.16.0.rc0.tar.gz
--2024-04-21 21:37:25--  https://dist.apache.org/repos/dist/dev/tvm/tvm-v0.16.0-rc0/apache-tvm-src-v0.16.0.rc0.tar.gz
Resolving dist.apache.org (dist.apache.org)... 13.90.137.153
Connecting to dist.apache.org (dist.apache.org)|13.90.137.153|:443... connected.
HTTP request sent, awaiting response... 200 OK

    The file is already fully retrieved; nothing to do.

Check asc & sha512

$ gpg --verify ./apache-tvm-src-v0.16.0.rc0.tar.gz.asc ./apache-tvm-src-v0.16.0.rc0.tar.gz
++ gpg --verify ./apache-tvm-src-v0.16.0.rc0.tar.gz.asc ./apache-tvm-src-v0.16.0.rc0.tar.gz
gpg: WARNING: unsafe permissions on homedir '/home/stayua01/.gnupg'
gpg: Signature made Sun Apr 21 20:30:25 2024 CST
gpg:                using RSA key A4D9228E55761E665BF01CBB5CE869CB7DEC048C
gpg:                issuer "[email protected]"
gpg: Good signature from "Star Yuan (CODE SIGNING KEY) <[email protected]>" [ultimate]


$ sha512sum -c ./apache-tvm-src-v0.16.0.rc0.tar.gz.sha512
# ./apache-tvm-src-v0.16.0.rc0.tar.gz: OK

Check binary in source code

$ find ./apache-tvm-src-v0.16.0 -type f -exec file {} + | grep -w "ELF\|shared object"
# Passed with output nothing

Compile and Python Import on Linux

$ cd ./apache-tvm-src-v0.16.0.rc0
$ mkdir build
$ cd build
$ cp ../cmake/config.cmake .
$ cmake ..
$ make -j3

$ cd ..
$ export TVM_HOME=$(pwd)
$ export PYTHONPATH=$TVM_HOME/python:${PYTHONPATH}

$ python3 -c "import tvm; print(tvm.__path__)"

Mon Apr 22 09:56:44 CST 2024
[09:56:45] /home/stayua01/code/test/apache-tvm-src-v0.16.0.rc0/src/target/parsers/aprofile.cc:118: Warning: Cannot parse Arm(R)-based target features without LLVM support.
[09:56:45] /home/stayua01/code/test/apache-tvm-src-v0.16.0.rc0/src/target/parsers/aprofile.cc:118: Warning: Cannot parse Arm(R)-based target features without LLVM support.
[09:56:45] /home/stayua01/code/test/apache-tvm-src-v0.16.0.rc0/src/target/parsers/aprofile.cc:118: Warning: Cannot parse Arm(R)-based target features without LLVM support.
[09:56:45] /home/stayua01/code/test/apache-tvm-src-v0.16.0.rc0/src/target/parsers/aprofile.cc:118: Warning: Cannot parse Arm(R)-based target features without LLVM support.
[09:56:45] /home/stayua01/code/test/apache-tvm-src-v0.16.0.rc0/src/target/parsers/aprofile.cc:118: Warning: Cannot parse Arm(R)-based target features without LLVM support.
['/home/stayua01/code/test/apache-tvm-src-v0.16.0.rc0/python/tvm']

from tvm.

ysh329 avatar ysh329 commented on June 1, 2024

Hi all, please vote. cc @Lunderberg @Hzfengsy @vinx13 @junrushao @tqchen @Johnson9009

from tvm.

tqchen avatar tqchen commented on June 1, 2024

+1. I checked

  • signatures
  • code compiles and runs

from tvm.

Hzfengsy avatar Hzfengsy commented on June 1, 2024

+1

from tvm.

Lunderberg avatar Lunderberg commented on June 1, 2024

+1

from tvm.

vinx13 avatar vinx13 commented on June 1, 2024

+1

from tvm.

MasterJH5574 avatar MasterJH5574 commented on June 1, 2024

+1

Checked:

  • sha512
  • source code
  • code compilation

from tvm.

ysh329 avatar ysh329 commented on June 1, 2024

Thanks for voting, result'll show in #16946.

from tvm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.