This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// simple code to benchmark the sort | |
long time_it(void (*f)(int *, int), int *arr, int n) { | |
struct timespec start, end; | |
clock_gettime(CLOCK_MONOTONIC, &start); | |
f(arr, n); | |
clock_gettime(CLOCK_MONOTONIC, &end); | |
long diff = (end.tv_sec - start.tv_sec) * 1e9; | |
diff += (end.tv_nsec - start.tv_nsec); | |
return diff; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
float avx_dot_product(float *a, float *b, int n) { | |
__m256 sum = _mm256_setzero_ps(); // set sum to 0 | |
for (int i = 0; i < n; i += 8) { | |
__m256 a_vals = _mm256_loadu_ps(a + i); // load 8 floats from a | |
__m256 b_vals = _mm256_loadu_ps(b + i); // load 8 floats from b | |
sum = | |
_mm256_add_ps(sum, _mm256_mul_ps(a_vals, b_vals)); // sum += a[i] * b[i] | |
} | |
__m128 low = _mm256_castps256_ps128(sum); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wifiInterface=$(iw dev | grep Interface | awk '{print $2}') | |
ssid=$(iw dev $wifiInterface info | grep ssid | awk '{print $2}') | |
echo "Your SSID is $ssid." | |
connections=$(ip neigh | grep $wifiInterface) | |
ips=() | |
macs=() | |
devices=() | |
while IFS= read -r conn; | |
do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.time.Duration; | |
import java.time.Instant; | |
public class BoxTest { | |
private static long sum1() { | |
long sum = 0L; | |
for (long i = 0; i < Integer.MAX_VALUE; i++) { | |
sum += i; | |
} | |
return sum; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fn bi_dij(&self, reverse_graph: &Graph2, start: usize, end: usize) -> Option<f64> { | |
let mut fwd_dists = vec![std::f64::MAX; self.adj_list.len()]; | |
let mut fwd_visited = vec![false; self.adj_list.len()]; | |
let mut rev_dists = vec![std::f64::MAX; self.adj_list.len()]; | |
let mut rev_visited = vec![false; self.adj_list.len()]; | |
let mut fwd_heap = BinaryHeap::new(); | |
fwd_heap.push(State {node: start, dist: 0.0}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.concurrent._ | |
import scala.util.DynamicVariable | |
package object common { | |
val forkJoinPool = new ForkJoinPool | |
abstract class TaskScheduler { | |
def schedule[T](body: => T): ForkJoinTask[T] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
If you want to map keys to multiple values, you need to store the multiple values in another container, like a list or set. | |
For example: | |
d = { | |
'a': [1, 2, 3], | |
'b': [4, 5] | |
} | |
""" | |
from collections import defaultdict |