KiRorY
Involution的基本实现方式(学习记录)

Involution的基本实现方式(学习记录)

Involution是由Li等人于2021年提出的新型神经网络算子。该算子基于卷积(Convolution)设计而来,具有与卷积相反的基本特征,故得名,也常被称作内卷、合卷。本文统一称为 Involution。

本文记录笔者在本科毕业设计中对 Involution 的学习与实现过程,包括基础原理梳理、结构改造思路,以及并行化尝试与性能相关思考。

Involution is a neural network operator proposed by Li et al. in 2021. It is designed with characteristics opposite to standard convolution, and is often referred to as an inverse-style convolutional operator.

This post records my study and implementation notes from undergraduate thesis work, including core ideas, structural modifications, and early parallelization attempts for acceleration.

STM32G0系OTA开发相关问题的解决方案

STM32G0系OTA开发相关问题的解决方案

实习过程中对STM32G0系开发板OTA功能开发时遇到的一些问题和解决办法,主要涉及Bootloader程序的跳转和APP分区思路问题。

  • Bootloader 跳转到APP区后发生卡死的情况。
  • 双APP分区时只能跳转到其中某一个分区,无法跳转到另一分区的情况。

During internship OTA development on an STM32G0 board, I ran into several issues and summarized the fixes, mainly around Bootloader jump logic and APP partition strategy.

  • The system hangs after Bootloader jumps to the APP region.
  • With dual APP partitions, Bootloader can jump to only one partition instead of both.
Days In UCSB

Days In UCSB

KDE桌面下解决Kitty终端模拟器中文输入法问题

KDE桌面下解决Kitty终端模拟器中文输入法问题

ZeroTier内网穿透+终端模拟器构建远程移动生产力工具

ZeroTier内网穿透+终端模拟器构建远程移动生产力工具

使用 ZeroTier 虚拟组网,配合移动端终端模拟器,实现远程连接与开发,让平板或手机也能作为轻量生产力终端。

A practical guide to using ZeroTier virtual networking with terminal emulators on mobile devices, so tablets and phones can be used as remote productivity terminals.

Windows Docker 安装及存储转移方法

Windows Docker 安装及存储转移方法

Docker Desktop 是 Docker 在 Windows 上常用的图形客户端,但默认安装与存储路径设置并不直观。

本文整理了 Docker Desktop 安装目录修改、WSL 目录迁移,以及 Docker 容器存储位置调整的方法,尽量避免系统盘被持续占满。

Docker Desktop is the common GUI client for Docker on Windows, but its installation and storage settings are not very transparent by default.

This post summarizes practical steps to change the Docker Desktop install path, migrate WSL distributions, and move Docker data storage to reduce C drive pressure.

算法分析笔记:贪心算法

算法分析笔记:贪心算法

算法分析笔记:动态规划

算法分析笔记:动态规划

算法分析笔记:递归与分治策略

算法分析笔记:递归与分治策略

算法分析笔记:复杂度分析与NP完全性理论

算法分析笔记:复杂度分析与NP完全性理论

12