Skip to content

Commit

Permalink
[Relax] Initial setup of relax backend pipeline
Browse files Browse the repository at this point in the history
This PR sets up the initial relax backend pipeline, as per thread
in https://discuss.tvm.apache.org/t/relax-target-default-pipeline.

Particularly, we organized default list of passes in the default
pipeline into four stages:
* library dispatch passes,
* legalize passes,
* dataflow lower passes,
* finalize passes.

The expectation is to have the default pipeline work out of the box,
while users can still choose to customize the pipeline by importing
these lists and combining them together, with customized passes
inserted at proper locations.

In this PR, we set up the initial pipelines for CUDA and LLVM backends.
The pipelines for both backends will be enhanced and completed in the
near future, and meanwhile the default pipeline for more backends
(e.g., generic GPUs) will be added.

The existing pipeline registry system in python/tvm/relax/pipeline.py
will be gradually deprecated after the establishment of the new
relax backend pipeline.
  • Loading branch information
MasterJH5574 authored and tqchen committed Feb 8, 2025
1 parent fcd0eda commit 4fdf4ae
Show file tree
Hide file tree
Showing 6 changed files with 236 additions and 6 deletions.
19 changes: 19 additions & 0 deletions python/tvm/relax/backend/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,26 @@
# under the License.
"""Relax backends"""

from tvm.target import Target

from . import contrib
from .dispatch_sampling import DispatchSampling
from .dispatch_sort_scan import DispatchSortScan
from .pattern_registry import get_pattern, get_patterns_with_prefix


def get_default_pipeline(target: Target):
"""Get the default Relax compilation pipeline for the given target."""
if target.kind.name == "cuda":
from . import cuda # pylint: disable=import-outside-toplevel

return cuda.get_default_pipeline(target)
if target.kind.name == "llvm":
from . import cpu_generic # pylint: disable=import-outside-toplevel

return cpu_generic.get_default_pipeline(target)
# Todo(tvm-team): support gpu-generic
raise ValueError(
f"Target {target} is not yet supported by default pipeline. "
"Please lower and build the IRModule manually."
)
23 changes: 23 additions & 0 deletions python/tvm/relax/backend/cpu_generic/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
"""The Relax CPU backend compilation pipeline and other passes."""
from .pipeline import (
finalize_passes,
get_default_pipeline,
legalize_passes,
library_dispatch_passes,
)
76 changes: 76 additions & 0 deletions python/tvm/relax/backend/cpu_generic/pipeline.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
"""The Relax CPU backend compilation pipeline and other passes."""
import tvm
from tvm import relax


def library_dispatch_passes(target: tvm.target.Target): # pylint: disable=unused-argument
"""The default library dispatch passes for CPU backend."""
return []


def legalize_passes(target: tvm.target.Target): # pylint: disable=unused-argument
"""The default legalization passes for CPU backend."""
return [
tvm.relax.transform.LegalizeOps(),
tvm.relax.transform.AnnotateTIROpPattern(),
tvm.relax.transform.FoldConstant(),
tvm.relax.transform.FuseOps(),
tvm.relax.transform.FuseTIR(),
]


def dataflow_lower_passes(target: tvm.target.Target): # pylint: disable=unused-argument
"""The default dataflow lowering passes for CPU backend."""
return [
relax.transform.RewriteDataflowReshape(),
relax.transform.ToNonDataflow(),
relax.transform.RemovePurityChecking(),
relax.transform.CallTIRRewrite(),
]


def finalize_passes(target: tvm.target.Target): # pylint: disable=unused-argument
"""The default finalization passes for CPU backend."""
return [
relax.transform.StaticPlanBlockMemory(),
relax.transform.LowerAllocTensor(),
relax.transform.KillAfterLastUse(),
relax.transform.LowerRuntimeBuiltin(),
relax.transform.ComputePrimValue(),
relax.transform.VMShapeLower(),
relax.transform.AttachGlobalSymbol(),
]


def get_default_pipeline(target: tvm.target.Target):
"""Return the default compilation pipeline for CPU."""

@tvm.transform.module_pass(opt_level=0)
def _pipeline(mod: tvm.ir.IRModule, _ctx: tvm.transform.PassContext):
with target:
seq = tvm.transform.Sequential(
library_dispatch_passes(target)
+ legalize_passes(target)
+ dataflow_lower_passes(target)
+ finalize_passes(target)
)
mod = seq(mod)
return mod

return _pipeline
23 changes: 23 additions & 0 deletions python/tvm/relax/backend/cuda/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
"""The Relax CUDA backend compilation pipeline and other passes."""
from .pipeline import (
finalize_passes,
get_default_pipeline,
legalize_passes,
library_dispatch_passes,
)
88 changes: 88 additions & 0 deletions python/tvm/relax/backend/cuda/pipeline.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
"""The Relax CUDA backend compilation pipeline and other passes."""
import tvm
from tvm import dlight as dl
from tvm import relax


def library_dispatch_passes(target: tvm.target.Target): # pylint: disable=unused-argument
"""The default library dispatch passes for CUDA backend."""
return [
relax.backend.DispatchSampling(),
relax.backend.DispatchSortScan(),
]


def legalize_passes(target: tvm.target.Target): # pylint: disable=unused-argument
"""The default legalization passes for CUDA backend."""
return [
tvm.relax.transform.LegalizeOps(),
tvm.relax.transform.AnnotateTIROpPattern(),
tvm.relax.transform.FoldConstant(),
tvm.relax.transform.FuseOps(),
tvm.relax.transform.FuseTIR(),
dl.ApplyDefaultSchedule(
dl.gpu.Matmul(),
dl.gpu.GEMV(),
dl.gpu.Reduction(),
dl.gpu.GeneralReduction(),
dl.gpu.Fallback(),
),
]


def dataflow_lower_passes(target: tvm.target.Target): # pylint: disable=unused-argument
"""The default dataflow lowering passes for CUDA backend."""
return [
relax.transform.RewriteDataflowReshape(),
relax.transform.ToNonDataflow(),
relax.transform.RemovePurityChecking(),
relax.transform.CallTIRRewrite(),
]


def finalize_passes(target: tvm.target.Target): # pylint: disable=unused-argument
"""The default finalization passes for CUDA backend."""
return [
relax.transform.StaticPlanBlockMemory(),
relax.transform.RewriteCUDAGraph(),
relax.transform.LowerAllocTensor(),
relax.transform.KillAfterLastUse(),
relax.transform.LowerRuntimeBuiltin(),
relax.transform.ComputePrimValue(),
relax.transform.VMShapeLower(),
relax.transform.AttachGlobalSymbol(),
]


def get_default_pipeline(target: tvm.target.Target):
"""Return the default compilation pipeline for CUDA."""

@tvm.transform.module_pass(opt_level=0)
def _pipeline(mod: tvm.ir.IRModule, _ctx: tvm.transform.PassContext):
with target:
seq = tvm.transform.Sequential(
library_dispatch_passes(target)
+ legalize_passes(target)
+ dataflow_lower_passes(target)
+ finalize_passes(target)
)
mod = seq(mod)
return mod

return _pipeline
13 changes: 7 additions & 6 deletions tests/python/relax/test_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,17 @@
# specific language governing permissions and limitations
# under the License.
import numpy as np

import tvm
import tvm.testing
from tvm import relax
from tvm.script import relax as R, tir as T
from tvm.script import relax as R
from tvm.script import tir as T


def test_pipeline_compile():
pipeline = relax.get_pipeline()
target = tvm.target.Target("llvm", host="llvm")
pipeline = relax.backend.get_default_pipeline(target)

@tvm.script.ir_module
class Mod:
Expand All @@ -33,7 +36,6 @@ def main(x: R.Tensor((3, 4), "float32"), y: R.Tensor((3, 4), "float32")):

mod = Mod
mod = pipeline(mod)
target = tvm.target.Target("llvm", host="llvm")

ex = relax.build(mod, target)
x_np = np.random.rand(3, 4).astype(np.float32)
Expand All @@ -48,7 +50,8 @@ def main(x: R.Tensor((3, 4), "float32"), y: R.Tensor((3, 4), "float32")):

def test_pipeline_with_kv_cache():
"""A dummy pipline that simulates KV update."""
pipeline = relax.get_pipeline()
target = tvm.target.Target("llvm", host="llvm")
pipeline = relax.backend.get_default_pipeline(target)

@tvm.script.ir_module
class Mod:
Expand Down Expand Up @@ -92,8 +95,6 @@ def main(
mod = Mod
mod = pipeline(mod)

target = tvm.target.Target("llvm", host="llvm")

ex = relax.build(mod, target)

num_steps = 8
Expand Down

0 comments on commit 4fdf4ae

Please sign in to comment.