View nrf52840_xxaa.hex
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
:1000000000000420BD020000E5020000E70200003D | |
:10001000E9020000EB020000ED0200000000000019 | |
:10002000000000000000000000000000EF020000DF | |
:10003000F102000000000000F3020000F5020000E1 | |
:10004000F7020000F7020000F7020000F7020000CC | |
:10005000F7020000F7020000F7020000F7020000BC | |
:10006000F7020000F7020000F7020000F7020000AC | |
:10007000F7020000F7020000F7020000F70200009C | |
:10008000F7020000F7020000F7020000F70200008C | |
:10009000F7020000F7020000F7020000F70200007C |
View Makefile caffe
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
## Refer to http://caffe.berkeleyvision.org/installation.html | |
# Contributions simplifying and improving our build system are welcome! | |
# cuDNN acceleration switch (uncomment to build with cuDNN). | |
USE_CUDNN := 1 | |
# CPU-only switch (uncomment to build without GPU support). | |
# CPU_ONLY := 1 | |
# uncomment to disable IO dependencies and corresponding data layers |
View gist:04b1a6d425bd18a29db2a319d141daff
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 !defined( __cpp_exceptions ) | |
#include <iostream> | |
int main() | |
{ | |
std::cerr << "Exception support required, example unavailable." << std::endl; | |
return 1; | |
} | |
#else | |
#include <iomanip> |
View gist:69340306768ef40caa3310c296acf552
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
#include "llvm/ADT/StringExtras.h" | |
#include "llvm/ADT/Triple.h" | |
#include "llvm/Bitcode/BitcodeReader.h" | |
#include "llvm/CodeGen/CommandFlags.h" | |
#include "llvm/CodeGen/LinkAllCodegenComponents.h" | |
#include "llvm/Config/llvm-config.h" | |
#include "llvm/ExecutionEngine/GenericValue.h" | |
#include "llvm/ExecutionEngine/JITEventListener.h" | |
#include "llvm/ExecutionEngine/ObjectCache.h" |
View jit.cpp
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
orc: jit.cpp | |
clang++ -g -o $@ $^ $(shell llvm-config-12 --cxxflags --ldflags --system-libs --libs core) |
View gist:f33c8512b66dfdf4d84f55603a654a05
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
(ns analyze (:require | |
[clojure.string :refer [split starts-with? trim]] | |
[clojure.core :refer [tree-seq re-find]])) | |
(defn line-param [line] | |
(trim (str (second (re-find #"\s*(.*?):" (str line)))))) | |
(defn line-value [line] | |
(trim (str (second (re-find #".*:(.*)" (str line)))))) |
View components.html
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset='utf-8'> | |
<meta name='viewport' content='width=device-width,initial-scale=1'> | |
<title>Components development</title> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.8.0/css/bulma.min.css"> | |
<link rel='stylesheet' href='/public/global.css'/> |