Posts with the tag M1 Mac:

How Fast Can M1 Chip Run Tensorflow

Having heard of the amazing computing power of M1-chip long before, I can’t miss a chance to try on my M1 Mac (2020 Mbp with M1 Chip) in excitement. Because of my little experience on Tensorflow, I compared using some example codes and didn’t carry out large-scale benchmarks. Install Tensorflow on M1 Mac As a friend of bugs who fought with Python for hundreds of times, I still stepped into trouble during my installation.

How to Deploy Mininet on M1 Mac

On M1 Mac, we can’t walkthrough Mininet’s official tutorial because it used Virtualbox, which is not supported on M1 Mac and have no recent announcement on this work. So we’ll try Qemu. First download Mininet Image from this link And we can directly use the following command: qemu-system-x86_64 \ -m 8192 \ mininet-vm-x86_64.vmdk \ -net nic,model=virtio \ -net user,net=192.168.18.0/24,hostfwd=tcp::8022-:22 Some explanation: -m 8192 means to set the memory to 8192MiB .