Here is easy steps to try Windows 10 on ARM or Ubuntu for ARM64 on your Apple Silicon Mac. Enjoy!
NOTE: that this is current, 10/1/2021 state.
- Install Xcode from App Store or install Command Line Tools on your Mac
Here is easy steps to try Windows 10 on ARM or Ubuntu for ARM64 on your Apple Silicon Mac. Enjoy!
NOTE: that this is current, 10/1/2021 state.
diff --git a/hw/ppc/pnv.c b/hw/ppc/pnv.c | |
index c9cb6fa3..c1f43310 100644 | |
--- a/hw/ppc/pnv.c | |
+++ b/hw/ppc/pnv.c | |
@@ -23,16 +23,17 @@ | |
#include "qapi/error.h" | |
#include "sysemu/sysemu.h" | |
#include "sysemu/numa.h" | |
#include "sysemu/reset.h" | |
#include "sysemu/runstate.h" |
Researched by Robert Quattlebaum darco@deepdarc.com.
Last updated 2020-02-03.
Modern OpenSSH has native support for FIDO Authentication. Its much simpler and should also be more stable with less moving parts. OpenSSH also now has support for signing arbitary files witch can be used as replacement of gnupg. Git also supports signing commits/tags with ssh keys.
ssh
, ssh-add
and ssh-keygen
on most computersOn your gitlab server run gitlab-rails console production
Find your user via user = User.find_by(email: "youroldemail@example.com")
Optionally change the user's email with user.email = "yournewemail@example.com"
Then run user.save!
Get the user's token with user.confirmation_token
https://PutYourGitlabHere
/users/confirmation?confirmation_token=PutYourTokenHere
import torch | |
from torch import nn | |
from torch.autograd import Variable | |
import torch.nn.functional as F | |
class RNN(nn.Module): | |
def __init__(self, input_size, hidden_size, output_size, n_layers=1): | |
super(RNN, self).__init__() | |
self.input_size = input_size | |
self.hidden_size = hidden_size |
Building Tensorflow from source on Ubuntu 16.04LTS for maximum performance:
TensorFlow is now distributed under an Apache v2 open source license on GitHub.
On Ubuntu 16.04LTS+:
Step 1. Install NVIDIA CUDA:
To use TensorFlow with NVIDIA GPUs, the first step is to install the CUDA Toolkit as shown: