-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfastprep.mk
61 lines (49 loc) · 1.88 KB
/
fastprep.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# -*- Mode: Makefile -*-
#
# Copyright 2016 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This makefile builds "fastprep", a faster version of prep.py that can be used
# to build training data for Swivel.
#
# = Step 1. Install protobuf v3 =
#
# Ubuntu 16.10+: sudo apt install libprotobuf-dev
# Ubuntu 16.04: https://launchpad.net/~maarten-fonville/+archive/ubuntu/ppa + replace xenial with yakkety in /etc/apt/sources.list.d/maarten-fonville-ubuntu-ppa-xenial.list
# macOS: brew install protobuf
#
# = Step 2. Build "fastprep". =
#
# make -f fastprep.mk
#
# If all goes well, you should have a program that is "flag compatible" with
# "prep.py" and runs significantly faster. Use it to generate the co-occurrence
# matrices and other files necessary to train a Swivel matrix.
# -std=c++11 is also supported => the standard std::unordered_map will be used
CXXFLAGS=-std=c++14 -march=native -g -O2 -flto -Wall -I.
LDLIBS=-lprotobuf -pthread -lm
FETCHER=curl -L -o
TF_URL=https://github.com/tensorflow/tensorflow/raw/master
PROTOC=protoc
TF_EXAMPLE=tensorflow/core/example
%.proto: $(TF_EXAMPLE)
$(FETCHER) $@ $(TF_URL)/$@
%.pb.cc: %.proto
$(PROTOC) --cpp_out=. $<
fastprep: fastprep.cc $(TF_EXAMPLE)/feature.pb.cc $(TF_EXAMPLE)/example.pb.cc
tensorflow/core/example:
@mkdir -p tensorflow/core/example
clean:
@rm -f fastprep
mrproper: clean
@rm -rf tensorflow