-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[Runtime][PipelineExecutor] Tutorial of using pipeline executor. #11557
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 31 commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
8bf383e
[Runtime][PipelineExecutor] Tutorial of using pipeline executor.
huajsj 6332de0
fix ci issue
huajsj cb49f99
document change.
huajsj 226fc58
triger build
huajsj 031b3ad
fix doc issue
huajsj d046177
fix ci issue
huajsj 8d01a7f
doc issue
huajsj 86cfbe4
fix ci issue
huajsj 22788ba
fix ci issue.
huajsj 9a550fb
fix __file__ not found problem.
huajsj 1b53258
fix byoc with dnnl issue
huajsj 7757b1b
enable dnnl and pipeline executor
huajsj 15db48a
trigger build
huajsj 3b02c9a
trigger build
huajsj 0811b24
fix build issue
huajsj 53894ec
trigger build
huajsj fb4f821
oneflow cause crash, do test with change
huajsj e259798
add sphinx skip
huajsj b70a731
plint
huajsj 215a2bd
remove from_oneflow change test.
huajsj bc6e863
remove pipeline executor change for test
huajsj 7709974
plint
huajsj 745ec3b
enable DNNL and pipeline
huajsj e14d431
disable DNNL
huajsj 6640dd6
enable DNNL without pipeline
huajsj f5b61fd
remove dnnl and add cutlass
huajsj 50a7eb9
use cutlass with byoc
huajsj 0b30034
change into cutlass
huajsj 873e027
fix doc convention issue
huajsj 73656af
remove duplicate variable
huajsj e4d8360
fix plint issue.
huajsj cfd2af2
address review comments.
huajsj a1fc852
address review comments
huajsj 60c8953
fix bug.
huajsj 420e951
polish the document
huajsj b998f12
fix plint issue
huajsj 1a930af
address review comments.
huajsj 7449ff7
address review comments
huajsj 0dcc5bf
address review comments
huajsj File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
262 changes: 262 additions & 0 deletions
262
gallery/how_to/work_with_relay/using_with_pipeline_executor.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,262 @@ | ||
| # 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. | ||
| """ | ||
| Using Pipeline Executor in Relay | ||
| ================================= | ||
| **Author**: `Hua Jiang <https://https://github.com/huajsj>`_ | ||
|
|
||
| This is a short tutorial on how to use "Pipeline Executor" with Relay. | ||
| """ | ||
| import tvm | ||
| from tvm import te | ||
| import numpy as np | ||
| from tvm.contrib import graph_executor as runtime | ||
| from tvm.relay.op.contrib.cutlass import partition_for_cutlass | ||
| from tvm import relay | ||
| from tvm.relay import testing | ||
| import tvm.testing | ||
| import time | ||
| from tvm.contrib.cutlass import ( | ||
| has_cutlass, | ||
| num_cutlass_partitions, | ||
| finalize_modules, | ||
| finalize_modules_vm, | ||
| ) | ||
|
|
||
| img_size = 8 | ||
| ####################################################################### | ||
| # Create a simple network, this network can be a pre-trained model too. | ||
| # --------------------------------------------------------------------- | ||
| # Let's create a very simple network for demonstration. | ||
| # It consists of convolution, batch normalization, and ReLU activation. | ||
huajsj marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| def get_network(): | ||
| out_channels = 16 | ||
| batch_size = 1 | ||
| data = relay.var("data", relay.TensorType((batch_size, 3, img_size, img_size), "float16")) | ||
| dense_weight = relay.var( | ||
| "dweight", relay.TensorType((batch_size, 16 * img_size * img_size), "float16") | ||
| ) | ||
| weight = relay.var("weight") | ||
| second_weight = relay.var("second_weight") | ||
| bn_gamma = relay.var("bn_gamma") | ||
| bn_beta = relay.var("bn_beta") | ||
| bn_mmean = relay.var("bn_mean") | ||
| bn_mvar = relay.var("bn_var") | ||
| simple_net = relay.nn.conv2d( | ||
| data=data, weight=weight, kernel_size=(3, 3), channels=out_channels, padding=(1, 1) | ||
| ) | ||
| simple_net = relay.nn.batch_norm(simple_net, bn_gamma, bn_beta, bn_mmean, bn_mvar)[0] | ||
| simple_net = relay.nn.relu(simple_net) | ||
| simple_net = relay.nn.batch_flatten(simple_net) | ||
| simple_net = relay.nn.dense(simple_net, dense_weight) | ||
| simple_net = relay.Function(relay.analysis.free_vars(simple_net), simple_net) | ||
| data_shape = (batch_size, 3, img_size, img_size) | ||
| net, params = testing.create_workload(simple_net) | ||
| return net, params, data_shape | ||
|
|
||
|
|
||
| net, params, data_shape = get_network() | ||
| ########################################### | ||
| # Splitting the network into two subgraphs. | ||
| # ----------------------------------------- | ||
| # We use an testing linear graph splitting function as a example. User also can create their | ||
| # own splitting function logic. | ||
huajsj marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| import inspect | ||
| import os | ||
|
|
||
| test_path = os.path.dirname(inspect.getfile(lambda: None)) | ||
| os.sys.path.append(os.path.join(test_path, "../../../tests/python/relay")) | ||
| from test_pipeline_executor import graph_split | ||
|
|
||
| ########################################### | ||
| # Splitting the network into two subgraphs. | ||
| split_config = [{"op_name": "nn.relu", "op_index": 0}] | ||
| subgraphs = graph_split(net["main"], split_config, params) | ||
| ########################################################### | ||
| # The generated subgraphs should look something like below. | ||
|
|
||
| """ | ||
| #subgraphs[0]) | ||
|
|
||
| def @main(%data: Tensor[(1, 3, img_size, img_size), float16]) { | ||
| %0 = nn.conv2d(%data, meta[relay.Constant][0] /* ty=Tensor[(16, 3, 3, 3), float16] */, padding=[1, 1, 1, 1], channels=16, kernel_size=[3, 3]) /* ty=Tensor[(1, 16, img_size, img_size), float16] */; | ||
| %1 = nn.batch_norm(%0, meta[relay.Constant][1] /* ty=Tensor[(16), float16] */, meta[relay.Constant][2] /* ty=Tensor[(16), float16]*/, meta[relay.Constant][3] /* ty=Tensor[(16), float16] */, meta[relay.Constant][4] /* ty=Tensor[(16), float16] */) /* ty=(Tensor[(1,16, img_size, img_size), float16], Tensor[(16), float16], Tensor[(16), float16]) */; | ||
| %2 = %1.0; | ||
| nn.relu(%2) /* ty=Tensor[(1, 16, img_size, img_size), float16] */ | ||
| } | ||
|
|
||
| peline-tutorial | ||
huajsj marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| #subgraphs[1] | ||
|
|
||
| def @main(%data_n_0: Tensor[(1, 16, 8, 8), float16] /* ty=Tensor[(1, 16, 8, 8), float16] */) { | ||
| %0 = nn.batch_flatten(%data_n_0) /* ty=Tensor[(1, 1024), float16] */; | ||
| nn.dense(%0, meta[relay.Constant][0] /* ty=Tensor[(1, 1024), float16] */, units=None) /* ty=Tensor[(1, 1), float16] */ | ||
| } | ||
|
|
||
| """ | ||
|
|
||
| # sphinx_gallery_start_ignore | ||
| from tvm import testing | ||
|
|
||
| testing.utils.install_request_hook(depth=3) | ||
| # sphinx_gallery_end_ignore | ||
|
|
||
| ######################################### | ||
| # Build the subgraph with cutlass target. | ||
| # --------------------------------------- | ||
|
|
||
| cutlass = tvm.target.Target( | ||
| { | ||
| "kind": "cutlass", | ||
| "sm": int(tvm.target.Target("cuda").arch.split("_")[1]), | ||
| "use_3xtf32": True, | ||
| "split_k_slices": [1], | ||
| "profile_all_alignments": False, | ||
| "find_first_valid": True, | ||
| "use_multiprocessing": True, | ||
| "use_fast_math": False, | ||
| "tmp_dir": "./tmp", | ||
| }, | ||
| host=tvm.target.Target("llvm"), | ||
| ) | ||
|
|
||
|
|
||
| def cutlass_build(mod, target, params=None, target_host=None, mod_name="default"): | ||
| target = [target, cutlass] | ||
| lib = relay.build_module.build( | ||
| mod, target=target, params=params, target_host=target_host, mod_name=mod_name | ||
| ) | ||
| return lib | ||
|
|
||
|
|
||
| ########################################################### | ||
| # Run the two subgraphs in pipeline with pipeline executor. | ||
| # --------------------------------------------------------- | ||
| # Define a function to do all the codegen and pipeline executor works. | ||
huajsj marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| # To run pipeline executor with dnnl, USE_PIPELINE_EXECUTOR need to get set as ON. | ||
| # and the 'USE_CUTLASS' should set as ON in config.cmake. | ||
huajsj marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| from tvm.contrib import graph_executor, pipeline_executor, pipeline_executor_build | ||
|
|
||
| ######################################### | ||
| # Create subgraph pipeline configuration. | ||
| # Associate the subgraph module with a target. | ||
huajsj marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| # Using BYOC to set the codegen of the second subgraph module. | ||
huajsj marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| # To use cutlass the 'USE_CUTLASS' should set as ON. | ||
huajsj marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| mod0, mod1 = subgraphs[0], subgraphs[1] | ||
| # Use cutlass as the codegen. | ||
| mod1 = partition_for_cutlass(mod1) | ||
| ################################################# | ||
| # Get the pipeline executor configuration object. | ||
| pipe_config = pipeline_executor_build.PipelineConfig() | ||
| ########################################################################### | ||
| # Set the compile target of the second subgraph module for example as LLVM. | ||
huajsj marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| pipe_config[mod0].target = "llvm" | ||
| pipe_config[mod0].dev = tvm.cpu(0) | ||
| ############################################################################### | ||
| # Set the cpu afinity for control flow, for example using cpu 0 for control flow. | ||
| pipe_config[mod1].cpu_affinity = "0" | ||
| pipe_config[mod1].export_cc = None | ||
| ############################################################## | ||
| # Set the compile target of the second subgraph module as LLVM. | ||
huajsj marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| pipe_config[mod1].target = "cuda" | ||
| pipe_config[mod1].dev = tvm.device("cuda", 0) | ||
| pipe_config[mod1].build_func = cutlass_build | ||
| pipe_config[mod1].export_cc = "nvcc" | ||
| ################################################################################# | ||
| # Set the cpu afinity for control flow, for example using cpu 1 for control flow. | ||
| pipe_config[mod1].cpu_affinity = "1" | ||
| pipe_config["input"]["data"].connect(pipe_config[mod0]["input"]["data"]) | ||
| pipe_config[mod0]["output"][0].connect(pipe_config[mod1]["input"]["data_n_0"]) | ||
| pipe_config[mod1]["output"]["0"].connect(pipe_config["output"][0]) | ||
| ###################################### | ||
| # The pipeline configuration as below. | ||
| """ | ||
| print(pipe_config) | ||
| Inputs | ||
| |data: mod0:data | ||
|
|
||
| output | ||
| |output(0) : mod1.output(0) | ||
|
|
||
| connections | ||
| |mod0.output(0)-> mod1.data_n_0 | ||
| """ | ||
|
|
||
| # sphinx_gallery_start_ignore | ||
| from tvm import testing | ||
|
|
||
| # testing.utils.install_request_hook(depth=3) | ||
| # sphinx_gallery_end_ignore | ||
| ############################## | ||
| # Build the pipeline executor. | ||
| # ---------------------------- | ||
| with tvm.transform.PassContext(opt_level=3): | ||
| pipeline_mod_factory = pipeline_executor_build.build(pipe_config) | ||
| ############################################### | ||
| # Export the parameter configuration to a file. | ||
| directory_path = tvm.contrib.utils.tempdir().temp_dir | ||
| ############################################# | ||
| # If the directory does not exist, create it. | ||
| if not os.path.exists(directory_path): | ||
| os.makedirs(directory_path) | ||
huajsj marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| config_file_name = pipeline_mod_factory.export_library(directory_path) | ||
| ################################################################ | ||
| # Use the load function to create and initialize PipelineModule. | ||
| # -------------------------------------------------------------- | ||
| pipeline_module = pipeline_executor.PipelineModule.load_library(config_file_name) | ||
|
|
||
| ############################ | ||
| # Run the pipeline executor. | ||
| # -------------------------- | ||
| # Allocated a input data. | ||
huajsj marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| data = np.random.uniform(-1, 1, size=data_shape).astype("float16") | ||
| pipeline_module.set_input("data", tvm.nd.array(data)) | ||
| ########################################################################## | ||
| # Run the two subgraph in pipeline mode and get the output asynchronously. | ||
| pipeline_module.run() | ||
| outputs = [] | ||
| while not outputs: | ||
huajsj marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| outputs = pipeline_module.get_output() | ||
| time.sleep(0.001) | ||
huajsj marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ###################################### | ||
| # Use graph_executor for verification. | ||
| # ------------------------------------ | ||
| # Run these two subgraphs in sequence with graph_executor to get the output. | ||
| target = "llvm" | ||
| dev0 = tvm.device(target, 0) | ||
| lib0 = relay.build_module.build(mod0, target, params=params) | ||
| module0 = runtime.GraphModule(lib0["default"](dev0)) | ||
| cuda = tvm.target.Target("cuda", host=tvm.target.Target("llvm")) | ||
| lib1 = relay.build_module.build(mod1, [cuda, cutlass], params=params) | ||
| lib1 = finalize_modules(lib1, "compile.so", "./tmp") | ||
|
|
||
| dev1 = tvm.device("cuda", 0) | ||
|
|
||
| module1 = runtime.GraphModule(lib1["default"](dev1)) | ||
|
|
||
| module0.set_input("data", data) | ||
| module0.run() | ||
| out_shape = (1, 16, img_size, img_size) | ||
| out = module0.get_output(0, tvm.nd.empty(out_shape, "float16")) | ||
| module1.set_input("data_n_0", out) | ||
| module1.run() | ||
| out_shape = (1, 1) | ||
| out = module1.get_output(0, tvm.nd.empty(out_shape, "float16")) | ||
| #################### | ||
| # Verify the result. | ||
| tvm.testing.assert_allclose(outputs[0].numpy(), out.numpy()) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.