Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion conda/recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ outputs:
- psutil
- scipy
- typing_extensions
- attrs
- ml_dtypes
- tornado
- cloudpickle
Expand Down
1 change: 0 additions & 1 deletion docker/install/ubuntu2004_install_python_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ set -o pipefail
# install libraries for python package on ubuntu
pip3 install --upgrade \
"Pygments>=2.4.0" \
attrs \
cloudpickle \
cython \
decorator \
Expand Down
1 change: 0 additions & 1 deletion docker/install/ubuntu_install_python_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ set -o pipefail
# install libraries for python package on ubuntu
pip3 install --upgrade \
"Pygments>=2.4.0" \
attrs \
cloudpickle \
cython \
decorator \
Expand Down
2 changes: 1 addition & 1 deletion docs/install/from_source.rst
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ The following commands can be used to install the extra Python dependencies:

.. code:: bash

pip3 install numpy decorator attrs
pip3 install numpy decorator

* If you want to use RPC Tracker

Expand Down
2 changes: 0 additions & 2 deletions python/gen_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@
(
"Base requirements needed to install tvm",
[
"attrs",
"cloudpickle",
"decorator",
"ml_dtypes",
Expand Down Expand Up @@ -236,7 +235,6 @@
# here. Include a comment linking to context or explaining why the constraint is in place.
CONSTRAINTS = [
("astroid", None),
("attrs", None),
("autodocsumm", None),
("black", "==20.8b1"),
("cloudpickle", None),
Expand Down
4 changes: 2 additions & 2 deletions python/tvm/relay/transform/memory_plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""
from typing import Optional, Dict, List, Tuple
from collections import defaultdict
import attr
from dataclasses import dataclass

from ..expr_functor import ExprMutator
from .. import op, expr
Expand All @@ -41,7 +41,7 @@ def is_primitive(call):
)


@attr.s(auto_attribs=True)
@dataclass
class Region:
"""
Represents a control-free allocation region.
Expand Down