This file contains hidden or 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
/* | |
Check SSE/AVX support. | |
This application can detect the instruction support of | |
SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, SSE4a, SSE5, and AVX. | |
grep avx /proc/cpuinfo | |
g++ ssecheck.cpp -o ssecheck | |
*/ | |
#include <iostream> | |
#ifdef _MSC_VER |
This file contains hidden or 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 torch | |
print(torch.cuda.current_device()) | |
# 0 | |
print(torch.cuda.device(0)) | |
# <torch.cuda.device at 0x...> | |
print(torch.cuda.device_count()) | |
# 1 |
This file contains hidden or 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 tensorflow as tf | |
import numpy as np | |
import time | |
from tensorflow.contrib.rnn import BasicLSTMCell | |
# https://github.com/tensorflow/tensorflow/issues/24828 | |
try: | |
from tensorflow.compat.v1 import ConfigProto | |
from tensorflow.compat.v1 import InteractiveSession |
This file contains hidden or 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 os, json, shutil | |
import keras | |
from keras.callbacks import TensorBoard | |
from keras.datasets import cifar10 | |
from keras.preprocessing.image import ImageDataGenerator | |
from keras.models import Sequential | |
from keras.layers import Dense, Dropout, Activation, Flatten | |
from keras.layers import Conv2D, MaxPooling2D |
This file contains hidden or 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
netsh wlan show profiles | |
netsh wlan show profile name=profilename key=clear |
This file contains hidden or 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
#!/bin/sh | |
# MacOS Mojave | |
brew install qemu | |
export QEMU=$(which qemu-system-arm) | |
export TMP_DIR=~/tmp/qemu-rpi | |
export RPI_KERNEL=${TMP_DIR}/kernel-qemu-4.14.79-stretch | |
export RPI_FS=${TMP_DIR}/2018-11-13-raspbian-stretch-lite.img |
This file contains hidden or 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
#!/bin/bash | |
sudo kextunload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport | |
sudo kextload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport |
This file contains hidden or 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
git clone https://github.com/pytorch/pytorch.git | |
git submodule update --init --recursive | |
MACOSX_DEPLOYMENT_TARGET=10.14 CC=clang CXX=clang++ python setup.py install |
This file contains hidden or 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
// https://github.com/goldsborough/examples/blob/cpp/cpp/mnist/mnist.cpp | |
#include <torch/torch.h> | |
#include <cstddef> | |
#include <iostream> | |
#include <string> | |
#include <vector> | |
struct Net : torch::nn::Module { | |
Net() |
This file contains hidden or 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
## License: Apache 2.0. See LICENSE file in root directory. | |
## Copyright(c) 2017 Intel Corporation. All Rights Reserved. | |
##################################################### | |
## Align Depth to Color ## | |
##################################################### | |
# First import the library | |
import pyrealsense2 as rs | |
import numpy as np |