    Skip to content

      Navigation Menu

            Sign in Appearance settings
                * Platform
                        + AI CODE CREATION
                            o GitHub Copilot Write better code with AI
                            o GitHub Copilot app Direct agents from issue to merge
                            o MCP Registry Integrate external tools
                        + DEVELOPER WORKFLOWS
                            o Actions Automate any workflow
                            o Codespaces Instant dev environments
                            o Issues Plan and track work
                            o Code Review Manage code changes
                            o Code Quality Enforce quality at merge
                        + APPLICATION SECURITY
                            o GitHub Advanced Security Find and fix vulnerabilities
                            o Code security Secure your code as you build
                            o Secret protection Stop leaks before they start
                        + EXPLORE
                            o Why GitHub
                            o Documentation
                            o Blog
                            o Changelog
                            o Marketplace
                      View all features
                * Solutions
                        + BY COMPANY SIZE
                            o Enterprises
                            o Small and medium teams
                            o Startups
                            o Nonprofits
                        + BY USE CASE
                            o App Modernization
                            o DevSecOps
                            o DevOps
                            o CI/CD
                            o View all use cases
                        + BY INDUSTRY
                            o Healthcare
                            o Financial services
                            o Manufacturing
                            o Government
                            o View all industries
                      View all solutions
                * Resources
                        + EXPLORE BY TOPIC
                            o AI
                            o Software Development
                            o DevOps
                            o Security
                            o View all topics
                        + EXPLORE BY TYPE
                            o Customer stories
                            o Events & webinars
                            o Ebooks & reports
                            o Business insights
                            o GitHub Skills
                        + SUPPORT & SERVICES
                            o Documentation
                            o Customer support
                            o Community forum
                            o Trust center
                            o Partners
                      View all resources
                * Open Source
                        + COMMUNITY
                            o GitHub Sponsors Fund open source developers
                        + PROGRAMS
                            o Security Lab
                            o Maintainer Community
                            o Accelerator
                            o GitHub Stars
                            o Archive Program
                        + REPOSITORIES
                            o Topics
                            o Trending
                            o Collections
                * Enterprise
                        + ENTERPRISE SOLUTIONS
                            o Enterprise platform AI-powered developer platform
                        + AVAILABLE ADD-ONS
                            o GitHub Advanced Security Enterprise-grade security features
                            o Copilot for Business Enterprise-grade AI features
                            o Premium Support Enterprise-grade 24/7 support
              * Pricing
                Type / to search
                Sign in
              Sign up Appearance settings
      You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

              Uh oh!

              There was an error while loading. Please reload this page.

              apache / tvm Public
              * Notifications You must be signed in to change notification settings
              * Fork 3.9k
                * Star 13.7k
          * Code
          * Issues 148
          * Pull requests 68
          * Actions
          * Projects
          * Security and quality 0
          * Insights
          Additional navigation options
                  * Code
                  * Issues
                  * Pull requests
                  * Actions
                  * Projects
                  * Security and quality
                  * Insights
                                              main
                                          Branches Tags
                                            Go to file
                                        Code
                                          Open more actions menu

                                        Folders and files

                                          Name                             Name                               Last commit message    Last commit date
                                            Latest commit                
                                                                         
                                                History                  
                                                                         
                                                14,191 Commits           
                                                  14,191 Commits         
                                                  .agents                          .agents                                                           
                                                  .github                          .github                                                           
                                                  3rdparty                         3rdparty                                                          
                                                  apps                             apps                                                              
                                                  ci                               ci                                                                
                                                  cmake                            cmake                                                             
                                                  docker                           docker                                                            
                                                  docs                             docs                                                              
                                                  include/ tvm                     include/ tvm                                                      
                                                  jvm                              jvm                                                               
                                                  licenses                         licenses                                                          
                                                  python                           python                                                            
                                                  src                              src                                                               
                                                  tests                            tests                                                             
                                                  web                              web                                                               
                                                  .asf.yaml                        .asf.yaml                                                         
                                                  .clang-format                    .clang-format                                                     
                                                  .gitattributes                   .gitattributes                                                    
                                                  .gitignore                       .gitignore                                                        
                                                  .gitmodules                      .gitmodules                                                       
                                                  .markdownlint-cli2.yaml          .markdownlint-cli2.yaml                                           
                                                  .pre-commit-config.yaml          .pre-commit-config.yaml                                           
                                                  .yamllint.yaml                   .yamllint.yaml                                                    
                                                  AGENTS.md                        AGENTS.md                                                         
                                                  CMakeLists.txt                   CMakeLists.txt                                                    
                                                  CONTRIBUTORS.md                  CONTRIBUTORS.md                                                   
                                                  KEYS                             KEYS                                                              
                                                  LICENSE                          LICENSE                                                           
                                                  NOTICE                           NOTICE                                                            
                                                  README.md                        README.md                                                         
                                                  pyproject.toml                   pyproject.toml                                                    
                                            View all files               
                                          

                                              Repository files navigation

                                                * 
                                                * README
                                                * Code of conduct
                                                * Apache-2.0 license
                                                * Security
                                                More items

                                                Open Machine Learning Compiler Framework

                                              Documentation | Contributors | Community | Release Notes

                                              Apache TVM is an open machine learning compilation framework, following the following principles:

                                                * Python-first development that enables quick customization of machine learning compiler pipelines.
                                                * Universal deployment to bring models into minimum deployable modules.

                                                License

                                              TVM is licensed under the Apache-2.0 license.

                                                Getting Started

                                              Check out the TVM Documentation site for installation instructions, tutorials, examples, and more. The Getting Started with TVM tutorial is a great place to start.

                                                Contribute to TVM

                                              TVM adopts the Apache committer model. We aim to create an open-source project maintained and owned by the community. Check out the Contributor Guide.

                                                History and Acknowledgement

                                              TVM started as a research project for deep learning compilation. The first version of the project benefited a lot from the following projects:

                                                * Halide: Part of TVM's TIR and arithmetic simplification module originates from Halide. We also learned and adapted some parts of the lowering pipeline from Halide.
                                                * Loopy: use of integer set analysis and its loop transformation primitives.
                                                * Theano: the design inspiration of symbolic scan operator for recurrence.

                                              Since then, the project has gone through several rounds of redesigns. The current design is also drastically different from the initial design, following the development trend of the ML compiler community.

                                              The most recent version focuses on a cross-level design with TensorIR as the tensor-level representation and Relax as the graph-level representation and Python-first transformations. The project's current design goal is to make the ML compiler accessible by enabling most transformations to be customizable in Python and bringing a cross-level representation that can jointly optimize computational graphs, tensor programs, and libraries. The project is also a foundation infra for building Python-first vertical compilers for domains, such as LLMs.

                                        About

                                        Open Machine Learning Compiler Framework

                                          tvm.apache.org/

                                        Topics

                                          compilerdeep-learninggpujavascriptmachine-learningmetalopenclperformancerocmspirvtensortvmvulkan

                                        Resources

                                          Readme
                                          Apache-2.0 license

                                        Code of conduct

                                          Code of conduct

                                        Security policy

                                          Security policy
                                          Activity
                                          Custom properties

                                        Stars

                                          13.7k stars

                                        Watchers

                                          365 watching

                                        Forks

                                          3.9k forks
                                          Report repository

                                        Releases

                                        Packages

                                        Used by

                                        Contributors

                                        Languages

    Footer

        © 2026 GitHub, Inc.

      Footer navigation

        * Terms
        * Privacy
        * Security
        * Status
        * Community
        * Docs
        * Contact
        * Manage cookies
        * Do not share my personal information
      You can’t perform that action at this time.