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 |
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 |
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> |
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" |
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) |
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)))))) |
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/[email protected]/css/bulma.min.css"> | |
<link rel='stylesheet' href='/public/global.css'/> |