[fix][win] fixed windows python wheel cudart link (#98)

* [fix][win] fixed windows python wheel cudart link

* remove un-need funcs

* format not found cuda dir warnings

* fix typos

* fix typos

* fix typos
This commit is contained in:
DefTruth
2022-08-11 17:35:53 +08:00
committed by GitHub
parent 0405f06051
commit 852fda571f
2 changed files with 67 additions and 2 deletions

View File

@@ -16,7 +16,10 @@ import logging
import os
import sys
from .c_lib_wrap import Frontend, Backend, FDDataType, TensorInfo, Device
from .c_lib_wrap import (Frontend, Backend, FDDataType, TensorInfo, Device,
is_built_with_gpu, is_built_with_ort,
is_built_with_paddle, is_built_with_trt,
get_default_cuda_directory)
from .runtime import Runtime, RuntimeOption
from .model import FastDeployModel
from . import c_lib_wrap as C