aboutsummaryrefslogtreecommitdiff
path: root/neural_networks/runtime/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'neural_networks/runtime/BUILD')
-rwxr-xr-xneural_networks/runtime/BUILD16
1 files changed, 16 insertions, 0 deletions
diff --git a/neural_networks/runtime/BUILD b/neural_networks/runtime/BUILD
new file mode 100755
index 0000000..4ce5364
--- /dev/null
+++ b/neural_networks/runtime/BUILD
@@ -0,0 +1,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"] )
+