本文简要介绍 python 语言中 scipy.linalg.blas.find_best_blas_type
的用法。
用法:
scipy.linalg.blas.find_best_blas_type(arrays=(), dtype=None)#
找到best-matching BLAS/LAPACK 类型。
数组用于确定 BLAS 例程的最佳前缀。
- arrays: ndarrays 序列,可选
可以给出数组来确定 BLAS 例程的最佳前缀。如果没有给出,将使用双精度例程,否则将使用数组中最通用的类型。
- dtype: str 或 dtype,可选
数据类型说明符。如果数组非空,则不使用。
- prefix: str
BLAS/LAPACK 前缀字符。
- dtype: 类型
推断的 Numpy 数据类型。
- prefer_fortran: bool
是否更喜欢 Fortran 顺序例程而不是 C 顺序。
参数 ::
返回 ::
例子:
>>> import numpy as np >>> import scipy.linalg.blas as bla >>> rng = np.random.default_rng() >>> a = rng.random((10,15)) >>> b = np.asfortranarray(a) # Change the memory layout order >>> bla.find_best_blas_type((a,)) ('d', dtype('float64'), False) >>> bla.find_best_blas_type((a*1j,)) ('z', dtype('complex128'), False) >>> bla.find_best_blas_type((b,)) ('d', dtype('float64'), True)
相关用法
- Python SciPy blas.get_blas_funcs用法及代码示例
- Python SciPy bsr_array.nonzero用法及代码示例
- Python SciPy bsr_matrix.dot用法及代码示例
- Python SciPy bsr_array.diagonal用法及代码示例
- Python SciPy bsr_matrix.diagonal用法及代码示例
- Python SciPy bsr_array.dot用法及代码示例
- Python SciPy bsr_matrix.nonzero用法及代码示例
- Python SciPy interpolate.make_interp_spline用法及代码示例
- Python SciPy stats.anderson用法及代码示例
- Python SciPy ClusterNode.pre_order用法及代码示例
- Python SciPy stats.iqr用法及代码示例
- Python SciPy FortranFile.read_record用法及代码示例
- Python SciPy ndimage.correlate用法及代码示例
- Python SciPy special.exp1用法及代码示例
- Python SciPy special.expn用法及代码示例
- Python SciPy signal.czt_points用法及代码示例
- Python SciPy interpolate.krogh_interpolate用法及代码示例
- Python SciPy ndimage.morphological_gradient用法及代码示例
- Python SciPy distance.sokalmichener用法及代码示例
- Python SciPy linalg.eigvalsh_tridiagonal用法及代码示例
- Python SciPy linalg.cdf2rdf用法及代码示例
- Python SciPy csc_array.diagonal用法及代码示例
- Python SciPy fft.idctn用法及代码示例
- Python SciPy linalg.LaplacianNd用法及代码示例
- Python SciPy linalg.solve_circulant用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.linalg.blas.find_best_blas_type。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。