-
Disable Secure Boot.
-
Assuming that you have a bootable USB stick with PopOS, boot from it and install PopOS. I 've installed PopOS on the external drive.
-
Install reEFInd.
sudo add-apt-repository ppa:rodsmith/refind
#! /usr/bin/env python3 | |
# coding:utf-8 | |
############################################################################### | |
# | |
# The Cling Interpreter | |
# | |
# Cling Packaging Tool (CPT) | |
# | |
# tools/packaging/cpt.py: Python script to launch Cling Packaging Tool (CPT) |
Disable Secure Boot.
Assuming that you have a bootable USB stick with PopOS, boot from it and install PopOS. I 've installed PopOS on the external drive.
Install reEFInd.
sudo add-apt-repository ppa:rodsmith/refind
#!/usr/bin/env python3 | |
from math import exp | |
import jax.numpy as jnp | |
import jax.random as jrn | |
import jax.profiler as jpr | |
import random | |
from jax import grad, vmap | |
from typing import List | |
Student: Baidyanath Kundu
Mentors: Vassil Vassilev, Ioana Ifrim
Organisation: CERN-HSF
std::unordered_map< std::pair<int,int>, int, HASH > hash_table; |
struct HASH { | |
size_t operator()(const std::pair<int,int> &p) const { | |
return ~p.first ^ p.second; // the first is negated to differentiate between mirrored pairs | |
} | |
}; |
v.erase(std::remove_if(v.begin(), v.end(), is_zero), v.end()); |
bool is_zero(int i) | |
{ | |
return i == 0; | |
} |