kernel drm hdmi 学习资料

kernel 通过 drm 向 hdmi 设备进行显示,资料可以参考: https://zhuanlan.zhihu.com/p/59784377 https://zhuanlan.zhihu.com/p/60504398 https://dri.freedesktop.org/docs/dr...

深度学习资料收集

最全资料:https://github.com/Mikoto10032/DeepLearning https://github.com/zhanggyb/nndl CNN学习资料: https://ujjwalkarn.me/2016/08/09/quick-intro-neural-netw...

[转] C++之 iterator_traits

转自: https://blog.csdn.net/GUI1259802368/article/details/72737331?utm_medium=distribute.pc_relevant_t0.none-task-blog-2%7Edefault%7EBlogCommendFromM...

[转] bind1st bind2nd的使用

转自: https://blog.csdn.net/simahao/article/details/405455?utm_medium=distribute.pc_relevant_t0.none-task-blog-2%7Edefault%7EBlogCommendFromMachineLe...

softmax 函数功能和 c++ 实现

pytorch 中的 softmax 函数功能和具体的 c++ 实现如下:

xtensor 学习笔记

类似于 python 的 numpy 库的 c++ 实现 xtensor 学习记录。

xtensor 安装和使用

安装 安装 xtensor 之前需要先安装依赖 xtl, https://github.com/xtensor-stack/xtl https://github.com/xtensor-stack/xtensor 进入 xtl 源码目录运行命令: cmake -DCMAKE_INSTALL_P...

c++ 版本类似于 numpy 的库

最近需要把一些 python 版本的程序转为 c++ 的程序。 python 中使用了很多 numpy 的调用,于是就再找 c++ 的实现。 找了一圈下来,发现最适合的可能就是 xtensor。 github: https://github.com/xtensor-stack/xtensor ...

torch 学习笔记

1. torch.Tensor 生成一个 tensor 类型。 >>> import torch >>> x=torch.Tensor([[1,2,3],[4,5,6]]) >>> x tensor([[1., 2., 3.], ...

numpy 学习笔记

1. np.array([127, 127, 127]) 生成一个一维数组 [127, 127, 127]。 参考: https://numpy.org/doc/stable/reference/generated/numpy.array.html 2. a = np.reshape(list...