主页

Blas

openblas是一个矩阵乘法加速的开源库,在cpu运行环境中,对不同数据类型的矩阵乘法提供加速.

虽然在服务器领域,cuda库具有压倒性的优势,但是对于深度学习的初学者和嵌入式领域,openblas依然能发挥巨大的作用.

阅读更多

python基础语法

动机

曾学python于廖雪峰,合力建django站.

久不用,全忘.

归峰复学,恐再忘,记于此,易寻.

且记基础.

阅读更多

Median_of_two_sorted_arrays

变种二分 边界处理

Description

There are two sorted arrays nums1 and nums2 of size m and n respectively.

Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).

阅读更多