From 4f4ef523e4557072bfce9e988925e906b7b6e541 Mon Sep 17 00:00:00 2001 From: Yi Xu Date: Wed, 3 Aug 2022 10:48:11 +0800 Subject: [PATCH] [type] Rename module quantized_types to quant --- python/taichi/types/__init__.py | 4 ++-- python/taichi/types/{quantized_types.py => quant.py} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename python/taichi/types/{quantized_types.py => quant.py} (100%) diff --git a/python/taichi/types/__init__.py b/python/taichi/types/__init__.py index 851690d7aaebd..9590746233d09 100644 --- a/python/taichi/types/__init__.py +++ b/python/taichi/types/__init__.py @@ -5,9 +5,9 @@ - compound: matrix, vector, struct. - template: for reference types. - ndarray: for arbitrary arrays. -- quantized: for quantized types, see "https://yuanming.taichi.graphics/publication/2021-quantaichi/quantaichi.pdf" +- quant: for quantized types, see "https://yuanming.taichi.graphics/publication/2021-quantaichi/quantaichi.pdf" """ -from taichi.types import quantized_types as quant +from taichi.types import quant from taichi.types.annotations import * from taichi.types.compound_types import * from taichi.types.ndarray_type import * diff --git a/python/taichi/types/quantized_types.py b/python/taichi/types/quant.py similarity index 100% rename from python/taichi/types/quantized_types.py rename to python/taichi/types/quant.py