35d71b1211
* [TVMSCRIPT] add float type support in script function * [TVMSCRIPT] add more type support in script function parameter Co-authored-by: honghua.cao <honghua.cao@streamcomputing.com>
76 lines
2.5 KiB
Python
76 lines
2.5 KiB
Python
# 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.
|
|
"""TVM Script Parser Typing Class
|
|
|
|
This module provides typing class for TVM script type annotation usage, it can be viewed as
|
|
a wrapper for uniform Type system in IR
|
|
"""
|
|
# pylint: disable=invalid-name
|
|
import tvm
|
|
|
|
|
|
class TypeGeneric: # pylint: disable=too-few-public-methods
|
|
"""Base class for all the TVM script typing class"""
|
|
|
|
def evaluate(self):
|
|
"""Return an actual ir.Type Object that this Generic class wraps"""
|
|
raise TypeError("Cannot get tvm.Type from a generic type")
|
|
|
|
|
|
class ConcreteType(TypeGeneric): # pylint: disable=too-few-public-methods
|
|
"""TVM script typing class for uniform Type objects"""
|
|
|
|
def __init__(self, vtype):
|
|
self.type = vtype
|
|
|
|
def evaluate(self):
|
|
return tvm.ir.PrimType(self.type)
|
|
|
|
|
|
class GenericPtrType(TypeGeneric):
|
|
"""TVM script typing class generator for PtrType
|
|
|
|
[] operator is overloaded, accepts a ConcreteType and returns a ConcreteType wrapping PtrType
|
|
"""
|
|
|
|
def __getitem__(self, vtype):
|
|
return ConcreteType(tvm.ir.PointerType(vtype.evaluate()))
|
|
|
|
|
|
class GenericTupleType(TypeGeneric):
|
|
"""TVM script typing class generator for TupleType
|
|
|
|
[] operator is overloaded, accepts a list of ConcreteType and returns a ConcreteType
|
|
wrapping TupleType
|
|
"""
|
|
|
|
def __getitem__(self, vtypes):
|
|
return ConcreteType(tvm.ir.TupleType([vtype.evaluate() for vtype in vtypes]))
|
|
|
|
|
|
int8 = ConcreteType("int8")
|
|
int16 = ConcreteType("int16")
|
|
int32 = ConcreteType("int32")
|
|
int64 = ConcreteType("int64")
|
|
float16 = ConcreteType("float16")
|
|
float32 = ConcreteType("float32")
|
|
float64 = ConcreteType("float64")
|
|
boolean = ConcreteType("bool")
|
|
handle = ConcreteType("handle")
|
|
Ptr = GenericPtrType()
|
|
Tuple = GenericTupleType()
|