You'll need a machine with at least 24 cores, 512GB RAM, and a 1TB (or bigger) hard drive with 10,000+ IOPS.
$ apt update
$ apt install -y build-essential clang ocl-icd-opencl-dev ocl-icd-libopencl1 jq libhwloc-dev g++ gcc libc6-dev pkg-config aria2
You'll need a machine with at least 24 cores, 512GB RAM, and a 1TB (or bigger) hard drive with 10,000+ IOPS.
$ apt update
$ apt install -y build-essential clang ocl-icd-opencl-dev ocl-icd-libopencl1 jq libhwloc-dev g++ gcc libc6-dev pkg-config aria2
| % -------------------------------------------------------------- | |
| % This is all preamble stuff that you don't have to worry about. | |
| % Head down to where it says "Start here" | |
| % -------------------------------------------------------------- | |
| \documentclass[12pt]{article} | |
| \usepackage{fontspec,xltxtra,xunicode} | |
| \usepackage[margin=1in]{geometry} | |
| \usepackage{amsmath,amsthm,amssymb} |
| """Splay tree | |
| Logan Ingalls <[email protected]> | |
| Sept 3, 2012 | |
| Note that I only implemented insert and find. Delete is trivial, | |
| and isn't the interesting part of splay trees. Some of these | |
| algorithms would be simpler, but I chose to do this without parent | |
| links from the tree nodes. | |
| Example output on my desktop computer: |
Navigate to http://nodejs.org/download/ and on the Linux Binaries (.tar.gz) row click to download the 64-bit version of the current latest release.
Say you've downloaded node-v0.10.7-linux-x64.tar.gz into the Downloads directory. Then, open the terminal and type the following:
$ cd ~/Downloads
$ mkdir -p ~/local/node
$ tar xzf node-v0.10.7-linux-x64.tar.gz -C ~/local/node --strip-components=1
$ echo '# Node Enviroment Setup' >> ~/.bashrc
$ echo 'export PATH=$HOME/local/node/bin:$PATH' >> ~/.bashrc