Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
ResNet50_tensorflow
Commits
66222112
Commit
66222112
authored
Aug 30, 2017
by
Vladimir Moskva
Browse files
Update syntaxnet/tensorflow submodule
parent
5d8d88c2
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
10 deletions
+15
-10
syntaxnet/WORKSPACE
syntaxnet/WORKSPACE
+5
-0
syntaxnet/dragnn/tensorflow_ops.bzl
syntaxnet/dragnn/tensorflow_ops.bzl
+1
-1
syntaxnet/syntaxnet/BUILD
syntaxnet/syntaxnet/BUILD
+1
-1
syntaxnet/syntaxnet/syntaxnet.bzl
syntaxnet/syntaxnet/syntaxnet.bzl
+7
-7
syntaxnet/tensorflow
syntaxnet/tensorflow
+1
-1
No files found.
syntaxnet/WORKSPACE
View file @
66222112
...
...
@@ -23,3 +23,8 @@ tf_workspace(path_prefix="", tf_repo_name="org_tensorflow")
# Test that Bazel is up-to-date.
load
(
"@org_tensorflow//tensorflow:workspace.bzl"
,
"check_version"
)
check_version
(
"0.4.2"
)
bind
(
name
=
"protobuf"
,
actual
=
"@protobuf_archive//:protobuf"
,
)
syntaxnet/dragnn/tensorflow_ops.bzl
View file @
66222112
...
...
@@ -659,7 +659,7 @@ def cc_header_only_library(name, deps=[], **kwargs):
def
tf_custom_op_library_additional_deps
():
return
[
"@protobuf//:protobuf"
,
"@protobuf
_archive
//:protobuf"
,
"//third_party/eigen3"
,
"@org_tensorflow//tensorflow/core:framework_headers_lib"
,
]
...
...
syntaxnet/syntaxnet/BUILD
View file @
66222112
...
...
@@ -79,7 +79,7 @@ cc_library(
visibility
=
[
"//visibility:public"
],
deps
=
[
"@com_googlesource_code_re2//:re2"
,
"@protobuf//:protobuf"
,
"@protobuf
_archive
//:protobuf"
,
"@org_tensorflow//third_party/eigen3"
,
]
+
select
({
"//conditions:default"
:
[
...
...
syntaxnet/syntaxnet/syntaxnet.bzl
View file @
66222112
...
...
@@ -13,8 +13,8 @@
# limitations under the License.
# ==============================================================================
load
(
"@protobuf//:protobuf.bzl"
,
"cc_proto_library"
)
load
(
"@protobuf//:protobuf.bzl"
,
"py_proto_library"
)
load
(
"@protobuf
_archive
//:protobuf.bzl"
,
"cc_proto_library"
)
load
(
"@protobuf
_archive
//:protobuf.bzl"
,
"py_proto_library"
)
def
if_cuda
(
if_true
,
if_false
=
[]):
...
...
@@ -43,9 +43,9 @@ def tf_proto_library(name, srcs=[], has_services=False,
cc_proto_library
(
name
=
name
,
srcs
=
srcs
,
deps
=
deps
,
cc_libs
=
[
"@protobuf//:protobuf"
],
protoc
=
"@protobuf//:protoc"
,
default_runtime
=
"@protobuf//:protobuf"
,
cc_libs
=
[
"@protobuf
_archive
//:protobuf"
],
protoc
=
"@protobuf
_archive
//:protoc"
,
default_runtime
=
"@protobuf
_archive
//:protobuf"
,
testonly
=
testonly
,
visibility
=
visibility
,)
...
...
@@ -54,8 +54,8 @@ def tf_proto_library_py(name, srcs=[], deps=[], visibility=None, testonly=0):
srcs
=
srcs
,
srcs_version
=
"PY2AND3"
,
deps
=
deps
,
default_runtime
=
"@protobuf//:protobuf_python"
,
protoc
=
"@protobuf//:protoc"
,
default_runtime
=
"@protobuf
_archive
//:protobuf_python"
,
protoc
=
"@protobuf
_archive
//:protoc"
,
visibility
=
visibility
,
testonly
=
testonly
,)
...
...
tensorflow
@
d236d19f
Compare
a7d6015d
...
d236d19f
Subproject commit
a7d6015d3759bee447c8103979a5ebc831ce23d1
Subproject commit
d236d19f7753ae23f91d794701efa70ace1629da
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment