Skip to content

Commit

Permalink
[BUG] Fix bug in cast in quantization (#481)
Browse files Browse the repository at this point in the history
  • Loading branch information
vadiklyutiy authored Dec 21, 2024
1 parent 04332b7 commit c0525b7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/hidet/graph/ops/quant/symmetric.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
# limitations under the License.
from typing import Union, List
from hidet import ir
from hidet.ir.type import DataType, int32
from hidet.ir.type import DataType
from hidet.ir.dtypes import int32
from hidet.ir.expr import cast, if_then_else
from hidet.ir.compute.primitives import TensorNode, compute
from hidet.ir import primitives as prim
Expand Down

0 comments on commit c0525b7

Please sign in to comment.