fastprep.mk 1.79 KB
Newer Older
Martin Wicke's avatar
Martin Wicke committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- 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
20
# to build training data for Swivel.
Martin Wicke's avatar
Martin Wicke committed
21
#
22
# = Step 1. Install protobuf v3 =
Martin Wicke's avatar
Martin Wicke committed
23
#
24
25
26
#   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
Martin Wicke's avatar
Martin Wicke committed
27
#
28
# = Step 2. Build "fastprep". =
Martin Wicke's avatar
Martin Wicke committed
29
30
31
32
33
34
35
36
#
#   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.


37
38
39
40
41
42
43
44
45
46
CXXFLAGS=-std=c++11 -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


%.proto: tensorflow/core/example
	$(FETCHER) $@ $(TF_URL)/$@
Martin Wicke's avatar
Martin Wicke committed
47

48
49
%.pb.cc: %.proto
	$(PROTOC) --cpp_out=. $<
Martin Wicke's avatar
Martin Wicke committed
50

51
fastprep: fastprep.cc tensorflow/core/example/feature.pb.cc tensorflow/core/example/example.pb.cc
Martin Wicke's avatar
Martin Wicke committed
52

53
54
tensorflow/core/example:
	@mkdir -p tensorflow/core/example
Martin Wicke's avatar
Martin Wicke committed
55

56
57
58
59
60
clean:
	@rm -f fastprep
	
mrproper: clean
	@rm -rf tensorflow