aboutsummaryrefslogtreecommitdiff
path: root/neural_networks/runtime/BUILD
blob: 4ce536400ea0d4df3e50cfa199c06c8064bbeecd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- mode: python; -*-

licenses(['notice'])  # Apache 2.0

#-----------------------------------------------------------------------------
# LIBRARIES

cc_library(name =  "nn_runtime",
           srcs = [
                    "neural_net.cpp",
                    "neuron.cpp",
                    "sigmoid_table.cpp",
                    "input_file_buffer.cpp"
                  ],
          deps = [ "//third_party/stl"] )