forked from apache/tvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TRANSFORM] Fix virtual device annotation issue with BYOC subgraphs (a…
…pache#13325) * [TRANSFORM] Fix virtual device anaotation issue with BYOC subgraphs Heterogeneous module partitioned by BYOC has functions nodes without any VirtualDevice definition (having FullyUnconstrained device). Ignoring the device here causes expr_virtual_devices_ being empty when PopVirtualDevice is called assuming above PushVirtualDevice is succeeded. PushVirtualDevice and PopVirtualDevice occurs as pairs across function body, hence it's better to insert the The Virtual Device for Uncontrained and Pop it subsequently. * * Test case Co-authored-by: Siva Rama Krishna Reddy B <sivb@blr-ubuntu-ripper.qualcomm.com>
- Loading branch information
1 parent
8427852
commit c798ed1
Showing
2 changed files
with
42 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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 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,42 @@ | ||
# 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. | ||
"""CLML compiler tests.""" | ||
|
||
import tvm | ||
import numpy as np | ||
from tvm import relay | ||
from tvm.relay import testing | ||
from tvm.relay.op.contrib import clml | ||
import pytest | ||
|
||
|
||
@tvm.testing.requires_openclml | ||
def test_device_annotation(): | ||
mod, params = relay.testing.mobilenet.get_workload(batch_size=1) | ||
mod = clml.partition_for_clml(mod, params) | ||
with tvm.transform.PassContext(opt_level=3): | ||
relay.backend.te_compiler.get().clear() | ||
lib = relay.build( | ||
mod, | ||
target="opencl -device=adreno", | ||
target_host="llvm -mtriple=aarch64-linux-gnu", | ||
params=params, | ||
) | ||
|
||
|
||
if __name__ == "__main__": | ||
tvm.testing.main() |