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
From a17ed8b28455874e7bd42a9c4f784790d771be7c Mon Sep 17 00:00:00 2001 | |
From: Stanislaw Antol <[email protected]> | |
Date: Thu, 15 Feb 2018 14:29:39 -0800 | |
Subject: [PATCH] TFLite patch for tf.maximum | |
--- | |
tensorflow/contrib/lite/kernels/BUILD | 1 + | |
.../kernels/internal/reference/reference_ops.h | 29 + | |
tensorflow/contrib/lite/kernels/register.cc | 2 + | |
tensorflow/contrib/lite/kernels/tfmaximum.cc | 108 + |
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 <iostream> | |
#include <dirent.h> | |
#include "net.h" | |
#include "base/matrix.h" | |
#include "loader/loader.h" | |
#include "math/gemm.h" | |
using namespace std; |
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
git version 2.14.2 | |
git-lfs/2.3.4 (GitHub; linux amd64; go 1.8.1) | |
git version 2.14.2 | |
LocalWorkingDir= | |
LocalGitDir= | |
LocalGitStorageDir= | |
LocalMediaDir= | |
LocalReferenceDir= | |
TempDir=/tmp/git-lfs |
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
git --version | |
git lfs | |
GIT_TRACE=1 | |
REPO_DIR=${HOME}/tmp/repo | |
EXT=bin | |
start_dir=`pwd` | |
DIRS=("" dir/) | |
for DIR in "${DIRS[@]}"; |
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
#!/usr/bin/python3 | |
from sys import exit | |
from sys import stdout | |
from sys import path as syspath | |
from os import path as osp | |
from os import stat, makedirs | |
import argparse | |
from shutil import copyfile |