This document tracks all manual patches applied to vendored/installed packages to make the OCR pipeline work on an older macOS Intel machine.
Re-apply the relevant section(s) after upgrading any of the patched packages.
This document tracks all manual patches applied to vendored/installed packages to make the OCR pipeline work on an older macOS Intel machine.
Re-apply the relevant section(s) after upgrading any of the patched packages.
For my reference in the future I will record here the steps that I had to follow in order to install Openwrt on the tp-link router EX220. This was done using a Windows 11 machine.
Disclaimer: Use this tutorial at your own risk. We are not responsible for any damage/harms done to your device using the information from this tutorial.
These are the steps provided at the official https://openwrt.org/toh/tp-link/ex220_v1 page:
Disclaimer: I am not a Windows Admin and I'm not even that good with PowerShell.
I wanted to be able to SSH into my Windows laptop directly into Linux. I also wanted to disable password authentication and only allow public key (RSA in my case) authentication.
Scott Hanselman wrote a blog post on how to make your default WSL2 distro your default shell for SSH. Windows OS Hub published an article on using public key
| unsafe fn run_with_scratch_space_parallel( | |
| &self, | |
| m: usize, | |
| n: usize, | |
| non_linear: &[FusedSpec], | |
| ) -> anyhow::Result<()> { | |
| let mr = K::mr(); | |
| let nr = K::nr(); | |
| let mut rows: Vec<usize> = (0..n / nr).collect(); |
| unsafe fn run_with_scratch_space_parallel( | |
| &self, | |
| m: usize, | |
| n: usize, | |
| t: usize, | |
| non_linear: &[FusedSpec], | |
| ) -> anyhow::Result<()> { | |
| let mr = K::mr(); | |
| let nr = K::nr(); | |
| let cols: Vec<usize> = (0..m / mr).collect(); |
| // onnx/src/ops/d2s.rs | |
| use crate::model::{OnnxOpRegister, ParsingContext}; | |
| use crate::pb::NodeProto; | |
| use tract_hir::internal::*; | |
| pub fn register_all_ops(reg: &mut OnnxOpRegister) { | |
| reg.insert("DepthToSpace", depth_to_space); | |
| } | |
| pub fn depth_to_space( |