"...composable_kernel_rocm.git" did not exist on "f52109531b539a9dc8f7f744a104e10558288946"
Commit 07194297 authored by comfyanonymous's avatar comfyanonymous
Browse files

Python 3.7 support.

parent aa57136d
...@@ -4,7 +4,10 @@ ...@@ -4,7 +4,10 @@
from __future__ import annotations from __future__ import annotations
from collections import OrderedDict from collections import OrderedDict
from typing import Literal try:
from typing import Literal
except ImportError:
from typing_extensions import Literal
import torch import torch
import torch.nn as nn import torch.nn as nn
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment