let python version to be 3.8 as minimal

This commit is contained in:
carlushuang
2024-03-29 17:07:23 +00:00
parent f236a13d1b
commit 076da565dd
2 changed files with 3 additions and 3 deletions

View File

@@ -5,7 +5,7 @@
import argparse
import itertools
from pathlib import Path
from typing import List, Optional
from typing import List, Optional, Tuple
from dataclasses import dataclass
import copy
import fnmatch
@@ -403,7 +403,7 @@ def get_fmha_fwd_tile_dict_from_dtype(direction : str, dtype : str) -> Optional[
else:
return None
def get_blobs(kernel_filter : Optional[str]) -> tuple[FmhaFwdApiPool, List[FmhaFwdKernel]]:
def get_blobs(kernel_filter : Optional[str]) -> Tuple[FmhaFwdApiPool, List[FmhaFwdKernel]]:
# TODO: we don't support tuning yet, so pick up one value for vlayout/pipeline/pad
# support this in future
def get_pipelines(dtype, hdim) -> List[FmhaFwdPipeline]: