View | Details | Raw Unified | Return to bug 219609 | Differences between
and this patch

Collapse All | Expand All

(-)b/Makefile (+83 lines)
Added Link Here
1
# Created by: Jov <amutu@amutu.com>
2
# $FreeBSD$
3
4
PORTNAME=	tensorflow
5
PORTVERSION=	1.2.0
6
DISTVERSIONPREFIX=	v
7
CATEGORIES=	science python
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
10
MAINTAINER=	amutu@amutu.com
11
COMMENT=	Computation using data flow graphs for scalable machine learning
12
13
LICENSE=	APACHE20
14
15
BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}wheel>=0.29.0:devel/py-wheel \
16
		${PYTHON_PKGNAMEPREFIX}numpy>=1.11.2:math/py-numpy \
17
		bash:shells/bash \
18
		bazel:devel/bazel_clang38
19
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}numpy>=1.11.2:math/py-numpy \
20
		${PYTHON_PKGNAMEPREFIX}markdown>=2.2.0:textproc/py-markdown \
21
		${PYTHON_PKGNAMEPREFIX}bleach>=1.4.2:www/py-bleach \
22
		${PYTHON_PKGNAMEPREFIX}html5lib>=0.9999999:www/py-html5lib \
23
		${PYTHON_PKGNAMEPREFIX}protobuf>=3.2.0:devel/py-protobuf \
24
		${PYTHON_PKGNAMEPREFIX}wheel>=0.29.0:devel/py-wheel \
25
		${PYTHON_PKGNAMEPREFIX}mock>=1.3.0:devel/py-mock \
26
		${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six \
27
		${PYTHON_PKGNAMEPREFIX}backports.weakref>=0:devel/py-backports.weakref \
28
		${PYTHON_PKGNAMEPREFIX}werkzeug>=0.11.10:www/py-werkzeug
29
30
USE_GITHUB=	yes
31
GH_TUPLE=	amutu:tensorflow_third_party:c528072:tf/tensorflow_third_party
32
USES=		python:2.7+ shebangfix
33
BAZEL_BOOT=	--output_user_root=${WRKSRC}/bazel_ot --batch
34
35
SHEBANG_GLOB=	*.py
36
37
.include <bsd.port.pre.mk>
38
39
#clang has this check enabled by default,disable it
40
#see: https://github.com/tensorflow/tensorflow/issues/8894
41
.if ${ARCH} == "i386"
42
BAZEL_COPT+=	--copt=-Wno-c++11-narrowing
43
.endif
44
45
post-patch:
46
	(cd ${WRKSRC} && \
47
	${REINPLACE_CMD} "s#bazel \([cf]\)#echo bazel ${BAZEL_BOOT} \1#g" \
48
	configure && \
49
	${REINPLACE_CMD} "s#tensorflow_third_party#${WRKSRC}/&#g" \
50
	WORKSPACE tensorflow/workspace.bzl)
51
52
do-configure:
53
	(cd ${WRKSRC} && ${SETENV} \
54
		PYTHON_BIN_PATH=${PYTHON_CMD} \
55
		TF_NEED_MKL=N \
56
		CC_OPT_FLAGS="${CFLAGS}" \
57
		TF_NEED_GCP=N TF_NEED_HDFS=N \
58
		TF_ENABLE_XLA=N \
59
		TF_NEED_OPENCL=N \
60
		TF_NEED_CUDA=N \
61
		PYTHON_LIB_PATH="${PYTHON_SITELIBDIR}" \
62
		TF_NEED_VERBS=N \
63
		./configure)
64
65
do-build:
66
	(cd ${WRKSRC} && bazel ${BAZEL_BOOT} info && \
67
		bazel ${BAZEL_BOOT} build ${BAZEL_COPT} --config=opt \
68
		//tensorflow/tools/pip_package:build_pip_package --verbose_failures)
69
	(cd ${WRKSRC} && ${SETENV} TMPDIR=${WRKDIR} \
70
		bazel-bin/tensorflow/tools/pip_package/build_pip_package \
71
		${WRKDIR}/whl)
72
73
do-install:
74
	@${MKDIR} ${STAGEDIR}/${PYTHON_SITELIBDIR}
75
	@${MKDIR} ${WRKDIR}/tmp
76
	@${UNZIP_NATIVE_CMD} -d ${WRKDIR}/tmp ${WRKDIR}/whl/${PORTNAME}-${PORTVERSION}-*.whl
77
	@${FIND} ${WRKDIR}/tmp -name "*.so*" | ${XARGS} ${STRIP_CMD}
78
	cd ${WRKDIR}/tmp && ${COPYTREE_SHARE} ${PORTNAME}-${PORTVERSION}.dist-info \
79
		${STAGEDIR}${PYTHON_SITELIBDIR}
80
	cd ${WRKDIR}/tmp/${PORTNAME}-${PORTVERSION}.data/purelib && \
81
		${COPYTREE_SHARE} . ${STAGEDIR}${PYTHON_SITELIBDIR}
82
83
.include <bsd.port.post.mk>
(-)b/distinfo (+5 lines)
Added Link Here
1
TIMESTAMP = 1499846908
2
SHA256 (tensorflow-tensorflow-v1.2.0_GH0.tar.gz) = 03dbf7548d1fc1c11ed58da5fa68616f795c819f868f43478cbcaa26abed374f
3
SIZE (tensorflow-tensorflow-v1.2.0_GH0.tar.gz) = 14489600
4
SHA256 (amutu-tensorflow_third_party-c528072_GH0.tar.gz) = 60ef19bdf5e7d0af05275a0ba29bc80c35368c83a2bfc10f61f7c60301ee236b
5
SIZE (amutu-tensorflow_third_party-c528072_GH0.tar.gz) = 170855167
(-)b/files/patch-WORKSPACE (+739 lines)
Added Link Here
1
--- WORKSPACE.orig	2017-06-14 19:02:07 UTC
2
+++ WORKSPACE
3
@@ -1,523 +1,365 @@
4
 workspace(name = "org_tensorflow")
5
 
6
-http_archive(
7
+local_repository(
8
     name = "io_bazel_rules_closure",
9
-    sha256 = "4be8a887f6f38f883236e77bb25c2da10d506f2bf1a8e5d785c0f35574c74ca4",
10
-    strip_prefix = "rules_closure-aac19edc557aec9b603cd7ffe359401264ceff0d",
11
-    urls = [
12
-        "http://mirror.bazel.build/github.com/bazelbuild/rules_closure/archive/aac19edc557aec9b603cd7ffe359401264ceff0d.tar.gz",  # 2017-05-10
13
-        "https://github.com/bazelbuild/rules_closure/archive/aac19edc557aec9b603cd7ffe359401264ceff0d.tar.gz",
14
-    ],
15
+    path = "tensorflow_third_party/io_bazel_rules_closure"
16
 )
17
-
18
+
19
 load("@io_bazel_rules_closure//closure:defs.bzl", "closure_repositories")
20
 
21
 closure_repositories()
22
 
23
 load("//tensorflow:workspace.bzl", "tf_workspace")
24
 
25
-# Uncomment and update the paths in these entries to build the Android demo.
26
-#android_sdk_repository(
27
-#    name = "androidsdk",
28
-#    api_level = 23,
29
-#    # Ensure that you have the build_tools_version below installed in the 
30
-#    # SDK manager as it updates periodically.
31
-#    build_tools_version = "25.0.2",
32
-#    # Replace with path to Android SDK on your system
33
-#    path = "<PATH_TO_SDK>",
34
-#)
35
-#
36
-# Android NDK r12b is recommended (higher may cause issues with Bazel)
37
-#android_ndk_repository(
38
-#    name="androidndk",
39
-#    path="<PATH_TO_NDK>",
40
-#    # This needs to be 14 or higher to compile TensorFlow. 
41
-#    # Note that the NDK version is not the API level.
42
-#    api_level=14)
43
-
44
-# Please add all new TensorFlow dependencies in workspace.bzl.
45
 tf_workspace()
46
 
47
-new_http_archive(
48
+local_repository(
49
   name = "inception5h",
50
-  build_file = "models.BUILD",
51
-  url = "https://storage.googleapis.com/download.tensorflow.org/models/inception5h.zip",
52
-  sha256 = "d13569f6a98159de37e92e9c8ec4dae8f674fbf475f69fe6199b514f756d4364"
53
+  path = "tensorflow_third_party/inception5h"
54
 )
55
-
56
-new_http_archive(
57
+
58
+local_repository(
59
   name = "mobile_multibox",
60
-  build_file = "models.BUILD",
61
-  url = "https://storage.googleapis.com/download.tensorflow.org/models/mobile_multibox_v1a.zip",
62
-  sha256 = "859edcddf84dddb974c36c36cfc1f74555148e9c9213dedacf1d6b613ad52b96"
63
+  path = "tensorflow_third_party/mobile_multibox"
64
 )
65
-
66
-new_http_archive(
67
+
68
+local_repository(
69
   name = "stylize",
70
-  build_file = "models.BUILD",
71
-  url = "https://storage.googleapis.com/download.tensorflow.org/models/stylize_v1.zip",
72
-  sha256 = "3d374a730aef330424a356a8d4f04d8a54277c425e274ecb7d9c83aa912c6bfa"
73
+  path = "tensorflow_third_party/stylize"
74
 )
75
-
76
-# TENSORBOARD_BOWER_AUTOGENERATED_BELOW_THIS_LINE_DO_NOT_EDIT
77
-
78
-new_http_archive(
79
+
80
+local_repository(
81
   name = "d3",
82
-  build_file = "bower.BUILD",
83
-  url = "https://github.com/mbostock-bower/d3-bower/archive/v3.5.15.tar.gz",
84
-  strip_prefix = "d3-bower-3.5.15",
85
+  path = "tensorflow_third_party/d3"
86
 )
87
-
88
-new_http_archive(
89
+
90
+local_repository(
91
   name = "dagre",
92
-  build_file = "bower.BUILD",
93
-  url = "https://github.com/cpettitt/dagre/archive/v0.7.4.tar.gz",
94
-  strip_prefix = "dagre-0.7.4",
95
+  path = "tensorflow_third_party/dagre"
96
 )
97
-
98
-new_http_archive(
99
+
100
+local_repository(
101
   name = "es6_promise",
102
-  build_file = "bower.BUILD",
103
-  url = "https://github.com/components/es6-promise/archive/v2.1.0.tar.gz",
104
-  strip_prefix = "es6-promise-2.1.0",
105
+  path = "tensorflow_third_party/es6_promise"
106
 )
107
-
108
-new_http_archive(
109
+
110
+local_repository(
111
   name = "font_roboto",
112
-  build_file = "bower.BUILD",
113
-  url = "https://github.com/polymerelements/font-roboto/archive/v1.0.1.tar.gz",
114
-  strip_prefix = "font-roboto-1.0.1",
115
+  path = "tensorflow_third_party/font_roboto"
116
 )
117
-
118
-new_http_archive(
119
+
120
+local_repository(
121
   name = "graphlib",
122
-  build_file = "bower.BUILD",
123
-  url = "https://github.com/cpettitt/graphlib/archive/v1.0.7.tar.gz",
124
-  strip_prefix = "graphlib-1.0.7",
125
+  path = "tensorflow_third_party/graphlib"
126
 )
127
-
128
-new_http_archive(
129
+
130
+local_repository(
131
   name = "iron_a11y_announcer",
132
-  build_file = "bower.BUILD",
133
-  url = "https://github.com/polymerelements/iron-a11y-announcer/archive/v1.0.5.tar.gz",
134
-  strip_prefix = "iron-a11y-announcer-1.0.5",
135
+  path = "tensorflow_third_party/iron_a11y_announcer"
136
 )
137
-
138
-new_http_archive(
139
+
140
+local_repository(
141
   name = "iron_a11y_keys_behavior",
142
-  build_file = "bower.BUILD",
143
-  url = "https://github.com/polymerelements/iron-a11y-keys-behavior/archive/v1.1.8.tar.gz",
144
-  strip_prefix = "iron-a11y-keys-behavior-1.1.8",
145
+  path = "tensorflow_third_party/iron_a11y_keys_behavior"
146
 )
147
-
148
-new_http_archive(
149
+
150
+local_repository(
151
   name = "iron_ajax",
152
-  build_file = "bower.BUILD",
153
-  url = "https://github.com/polymerelements/iron-ajax/archive/v1.2.0.tar.gz",
154
-  strip_prefix = "iron-ajax-1.2.0",
155
+  path = "tensorflow_third_party/iron_ajax"
156
 )
157
-
158
-new_http_archive(
159
+
160
+local_repository(
161
   name = "iron_autogrow_textarea",
162
-  build_file = "bower.BUILD",
163
-  url = "https://github.com/polymerelements/iron-autogrow-textarea/archive/v1.0.12.tar.gz",
164
-  strip_prefix = "iron-autogrow-textarea-1.0.12",
165
+  path = "tensorflow_third_party/iron_autogrow_textarea"
166
 )
167
-
168
-new_http_archive(
169
+
170
+local_repository(
171
   name = "iron_behaviors",
172
-  build_file = "bower.BUILD",
173
-  url = "https://github.com/polymerelements/iron-behaviors/archive/v1.0.17.tar.gz",
174
-  strip_prefix = "iron-behaviors-1.0.17",
175
+  path = "tensorflow_third_party/iron_behaviors"
176
 )
177
-
178
-new_http_archive(
179
+
180
+local_repository(
181
   name = "iron_checked_element_behavior",
182
-  build_file = "bower.BUILD",
183
-  url = "https://github.com/polymerelements/iron-checked-element-behavior/archive/v1.0.4.tar.gz",
184
-  strip_prefix = "iron-checked-element-behavior-1.0.4",
185
+  path = "tensorflow_third_party/iron_checked_element_behavior"
186
 )
187
-
188
-new_http_archive(
189
+
190
+local_repository(
191
   name = "iron_collapse",
192
-  build_file = "bower.BUILD",
193
-  url = "https://github.com/polymerelements/iron-collapse/archive/v1.0.8.tar.gz",
194
-  strip_prefix = "iron-collapse-1.0.8",
195
+  path = "tensorflow_third_party/iron_collapse"
196
 )
197
-
198
-new_http_archive(
199
+
200
+local_repository(
201
   name = "iron_dropdown",
202
-  build_file = "bower.BUILD",
203
-  url = "https://github.com/polymerelements/iron-dropdown/archive/v1.4.0.tar.gz",
204
-  strip_prefix = "iron-dropdown-1.4.0",
205
+  path = "tensorflow_third_party/iron_dropdown"
206
 )
207
-
208
-new_http_archive(
209
+
210
+local_repository(
211
   name = "iron_fit_behavior",
212
-  build_file = "bower.BUILD",
213
-  url = "https://github.com/polymerelements/iron-fit-behavior/archive/v1.2.5.tar.gz",
214
-  strip_prefix = "iron-fit-behavior-1.2.5",
215
+  path = "tensorflow_third_party/iron_fit_behavior"
216
 )
217
-
218
-new_http_archive(
219
+
220
+local_repository(
221
   name = "iron_flex_layout",
222
-  build_file = "bower.BUILD",
223
-  url = "https://github.com/polymerelements/iron-flex-layout/archive/v1.3.0.tar.gz",
224
-  strip_prefix = "iron-flex-layout-1.3.0",
225
+  path = "tensorflow_third_party/iron_flex_layout"
226
 )
227
-
228
-new_http_archive(
229
+
230
+local_repository(
231
   name = "iron_form_element_behavior",
232
-  build_file = "bower.BUILD",
233
-  url = "https://github.com/polymerelements/iron-form-element-behavior/archive/v1.0.6.tar.gz",
234
-  strip_prefix = "iron-form-element-behavior-1.0.6",
235
+  path = "tensorflow_third_party/iron_form_element_behavior"
236
 )
237
-
238
-new_http_archive(
239
+
240
+local_repository(
241
   name = "iron_icon",
242
-  build_file = "bower.BUILD",
243
-  url = "https://github.com/polymerelements/iron-icon/archive/v1.0.11.tar.gz",
244
-  strip_prefix = "iron-icon-1.0.11",
245
+  path = "tensorflow_third_party/iron_icon"
246
 )
247
-
248
-new_http_archive(
249
+
250
+local_repository(
251
   name = "iron_icons",
252
-  build_file = "bower.BUILD",
253
-  url = "https://github.com/polymerelements/iron-icons/archive/v1.1.3.tar.gz",
254
-  strip_prefix = "iron-icons-1.1.3",
255
+  path = "tensorflow_third_party/iron_icons"
256
 )
257
-
258
-new_http_archive(
259
+
260
+local_repository(
261
   name = "iron_iconset_svg",
262
-  build_file = "bower.BUILD",
263
-  url = "https://github.com/polymerelements/iron-iconset-svg/archive/v1.1.0.tar.gz",
264
-  strip_prefix = "iron-iconset-svg-1.1.0",
265
+  path = "tensorflow_third_party/iron_iconset_svg"
266
 )
267
-
268
-new_http_archive(
269
+
270
+local_repository(
271
   name = "iron_input",
272
-  build_file = "bower.BUILD",
273
-  url = "https://github.com/polymerelements/iron-input/archive/1.0.10.tar.gz",
274
-  strip_prefix = "iron-input-1.0.10",
275
+  path = "tensorflow_third_party/iron_input"
276
 )
277
-
278
-new_http_archive(
279
+
280
+local_repository(
281
   name = "iron_list",
282
-  build_file = "bower.BUILD",
283
-  url = "https://github.com/polymerelements/iron-list/archive/v1.3.9.tar.gz",
284
-  strip_prefix = "iron-list-1.3.9",
285
+  path = "tensorflow_third_party/iron_list"
286
 )
287
-
288
-new_http_archive(
289
+
290
+local_repository(
291
   name = "iron_menu_behavior",
292
-  build_file = "bower.BUILD",
293
-  url = "https://github.com/polymerelements/iron-menu-behavior/archive/v1.1.10.tar.gz",
294
-  strip_prefix = "iron-menu-behavior-1.1.10",
295
+  path = "tensorflow_third_party/iron_menu_behavior"
296
 )
297
-
298
-new_http_archive(
299
+
300
+local_repository(
301
   name = "iron_meta",
302
-  build_file = "bower.BUILD",
303
-  url = "https://github.com/polymerelements/iron-meta/archive/v1.1.1.tar.gz",
304
-  strip_prefix = "iron-meta-1.1.1",
305
+  path = "tensorflow_third_party/iron_meta"
306
 )
307
-
308
-new_http_archive(
309
+
310
+local_repository(
311
   name = "iron_overlay_behavior",
312
-  build_file = "bower.BUILD",
313
-  url = "https://github.com/polymerelements/iron-overlay-behavior/archive/v1.10.1.tar.gz",
314
-  strip_prefix = "iron-overlay-behavior-1.10.1",
315
+  path = "tensorflow_third_party/iron_overlay_behavior"
316
 )
317
-
318
-new_http_archive(
319
+
320
+local_repository(
321
   name = "iron_range_behavior",
322
-  build_file = "bower.BUILD",
323
-  url = "https://github.com/polymerelements/iron-range-behavior/archive/v1.0.4.tar.gz",
324
-  strip_prefix = "iron-range-behavior-1.0.4",
325
+  path = "tensorflow_third_party/iron_range_behavior"
326
 )
327
-
328
-new_http_archive(
329
+
330
+local_repository(
331
   name = "iron_resizable_behavior",
332
-  build_file = "bower.BUILD",
333
-  url = "https://github.com/polymerelements/iron-resizable-behavior/archive/v1.0.3.tar.gz",
334
-  strip_prefix = "iron-resizable-behavior-1.0.3",
335
+  path = "tensorflow_third_party/iron_resizable_behavior"
336
 )
337
-
338
-new_http_archive(
339
+
340
+local_repository(
341
   name = "iron_scroll_target_behavior",
342
-  build_file = "bower.BUILD",
343
-  url = "https://github.com/polymerelements/iron-scroll-target-behavior/archive/v1.0.3.tar.gz",
344
-  strip_prefix = "iron-scroll-target-behavior-1.0.3",
345
+  path = "tensorflow_third_party/iron_scroll_target_behavior"
346
 )
347
-
348
-new_http_archive(
349
+
350
+local_repository(
351
   name = "iron_selector",
352
-  build_file = "bower.BUILD",
353
-  url = "https://github.com/polymerelements/iron-selector/archive/v1.5.2.tar.gz",
354
-  strip_prefix = "iron-selector-1.5.2",
355
+  path = "tensorflow_third_party/iron_selector"
356
 )
357
-
358
-new_http_archive(
359
+
360
+local_repository(
361
   name = "iron_validatable_behavior",
362
-  build_file = "bower.BUILD",
363
-  url = "https://github.com/polymerelements/iron-validatable-behavior/archive/v1.1.1.tar.gz",
364
-  strip_prefix = "iron-validatable-behavior-1.1.1",
365
+  path = "tensorflow_third_party/iron_validatable_behavior"
366
 )
367
-
368
-new_http_archive(
369
+
370
+local_repository(
371
   name = "lodash",
372
-  build_file = "bower.BUILD",
373
-  url = "https://github.com/lodash/lodash/archive/3.8.0.tar.gz",
374
-  strip_prefix = "lodash-3.8.0",
375
+  path = "tensorflow_third_party/lodash"
376
 )
377
-
378
-new_http_archive(
379
+
380
+local_repository(
381
   name = "neon_animation",
382
-  build_file = "bower.BUILD",
383
-  url = "https://github.com/polymerelements/neon-animation/archive/v1.2.2.tar.gz",
384
-  strip_prefix = "neon-animation-1.2.2",
385
+  path = "tensorflow_third_party/neon_animation"
386
 )
387
-
388
-http_file(
389
+
390
+local_repository(
391
   name = "numericjs_numeric_min_js",
392
-  url = "https://cdnjs.cloudflare.com/ajax/libs/numeric/1.2.6/numeric.min.js",
393
+  path = "tensorflow_third_party/numericjs_numeric_min_js"
394
 )
395
-
396
-new_http_archive(
397
+
398
+local_repository(
399
   name = "paper_behaviors",
400
-  build_file = "bower.BUILD",
401
-  url = "https://github.com/polymerelements/paper-behaviors/archive/v1.0.12.tar.gz",
402
-  strip_prefix = "paper-behaviors-1.0.12",
403
+  path = "tensorflow_third_party/paper_behaviors"
404
 )
405
-
406
-new_http_archive(
407
+
408
+local_repository(
409
   name = "paper_button",
410
-  build_file = "bower.BUILD",
411
-  url = "https://github.com/polymerelements/paper-button/archive/v1.0.11.tar.gz",
412
-  strip_prefix = "paper-button-1.0.11",
413
+  path = "tensorflow_third_party/paper_button"
414
 )
415
-
416
-new_http_archive(
417
+
418
+local_repository(
419
   name = "paper_checkbox",
420
-  build_file = "bower.BUILD",
421
-  url = "https://github.com/polymerelements/paper-checkbox/archive/v1.4.0.tar.gz",
422
-  strip_prefix = "paper-checkbox-1.4.0",
423
+  path = "tensorflow_third_party/paper_checkbox"
424
 )
425
-
426
-new_http_archive(
427
+
428
+local_repository(
429
   name = "paper_dialog",
430
-  build_file = "bower.BUILD",
431
-  url = "https://github.com/polymerelements/paper-dialog/archive/v1.0.4.tar.gz",
432
-  strip_prefix = "paper-dialog-1.0.4",
433
+  path = "tensorflow_third_party/paper_dialog"
434
 )
435
-
436
-new_http_archive(
437
+
438
+local_repository(
439
   name = "paper_dialog_behavior",
440
-  build_file = "bower.BUILD",
441
-  url = "https://github.com/polymerelements/paper-dialog-behavior/archive/v1.2.5.tar.gz",
442
-  strip_prefix = "paper-dialog-behavior-1.2.5",
443
+  path = "tensorflow_third_party/paper_dialog_behavior"
444
 )
445
-
446
-new_http_archive(
447
+
448
+local_repository(
449
   name = "paper_dialog_scrollable",
450
-  build_file = "bower.BUILD",
451
-  url = "https://github.com/polymerelements/paper-dialog-scrollable/archive/1.1.5.tar.gz",
452
-  strip_prefix = "paper-dialog-scrollable-1.1.5",
453
+  path = "tensorflow_third_party/paper_dialog_scrollable"
454
 )
455
-
456
-new_http_archive(
457
+
458
+local_repository(
459
   name = "paper_dropdown_menu",
460
-  build_file = "bower.BUILD",
461
-  url = "https://github.com/polymerelements/paper-dropdown-menu/archive/v1.4.0.tar.gz",
462
-  strip_prefix = "paper-dropdown-menu-1.4.0",
463
+  path = "tensorflow_third_party/paper_dropdown_menu"
464
 )
465
-
466
-new_http_archive(
467
+
468
+local_repository(
469
   name = "paper_header_panel",
470
-  build_file = "bower.BUILD",
471
-  url = "https://github.com/polymerelements/paper-header-panel/archive/v1.1.4.tar.gz",
472
-  strip_prefix = "paper-header-panel-1.1.4",
473
+  path = "tensorflow_third_party/paper_header_panel"
474
 )
475
-
476
-new_http_archive(
477
+
478
+local_repository(
479
   name = "paper_icon_button",
480
-  build_file = "bower.BUILD",
481
-  url = "https://github.com/polymerelements/paper-icon-button/archive/v1.1.3.tar.gz",
482
-  strip_prefix = "paper-icon-button-1.1.3",
483
+  path = "tensorflow_third_party/paper_icon_button"
484
 )
485
-
486
-new_http_archive(
487
+
488
+local_repository(
489
   name = "paper_input",
490
-  build_file = "bower.BUILD",
491
-  url = "https://github.com/polymerelements/paper-input/archive/v1.1.18.tar.gz",
492
-  strip_prefix = "paper-input-1.1.18",
493
+  path = "tensorflow_third_party/paper_input"
494
 )
495
-
496
-new_http_archive(
497
+
498
+local_repository(
499
   name = "paper_item",
500
-  build_file = "bower.BUILD",
501
-  url = "https://github.com/polymerelements/paper-item/archive/v1.1.4.tar.gz",
502
-  strip_prefix = "paper-item-1.1.4",
503
+  path = "tensorflow_third_party/paper_item"
504
 )
505
-
506
-new_http_archive(
507
+
508
+local_repository(
509
   name = "paper_listbox",
510
-  build_file = "bower.BUILD",
511
-  url = "https://github.com/polymerelements/paper-listbox/archive/v1.1.2.tar.gz",
512
-  strip_prefix = "paper-listbox-1.1.2",
513
+  path = "tensorflow_third_party/paper_listbox"
514
 )
515
-
516
-new_http_archive(
517
+
518
+local_repository(
519
   name = "paper_material",
520
-  build_file = "bower.BUILD",
521
-  url = "https://github.com/polymerelements/paper-material/archive/v1.0.6.tar.gz",
522
-  strip_prefix = "paper-material-1.0.6",
523
+  path = "tensorflow_third_party/paper_material"
524
 )
525
-
526
-new_http_archive(
527
+
528
+local_repository(
529
   name = "paper_menu",
530
-  build_file = "bower.BUILD",
531
-  url = "https://github.com/polymerelements/paper-menu/archive/v1.2.2.tar.gz",
532
-  strip_prefix = "paper-menu-1.2.2",
533
+  path = "tensorflow_third_party/paper_menu"
534
 )
535
-
536
-new_http_archive(
537
+
538
+local_repository(
539
   name = "paper_menu_button",
540
-  build_file = "bower.BUILD",
541
-  url = "https://github.com/polymerelements/paper-menu-button/archive/v1.5.1.tar.gz",
542
-  strip_prefix = "paper-menu-button-1.5.1",
543
+  path = "tensorflow_third_party/paper_menu_button"
544
 )
545
-
546
-new_http_archive(
547
+
548
+local_repository(
549
   name = "paper_progress",
550
-  build_file = "bower.BUILD",
551
-  url = "https://github.com/polymerelements/paper-progress/archive/v1.0.9.tar.gz",
552
-  strip_prefix = "paper-progress-1.0.9",
553
+  path = "tensorflow_third_party/paper_progress"
554
 )
555
-
556
-new_http_archive(
557
+
558
+local_repository(
559
   name = "paper_radio_button",
560
-  build_file = "bower.BUILD",
561
-  url = "https://github.com/polymerelements/paper-radio-button/archive/v1.1.2.tar.gz",
562
-  strip_prefix = "paper-radio-button-1.1.2",
563
+  path = "tensorflow_third_party/paper_radio_button"
564
 )
565
-
566
-new_http_archive(
567
+
568
+local_repository(
569
   name = "paper_radio_group",
570
-  build_file = "bower.BUILD",
571
-  url = "https://github.com/polymerelements/paper-radio-group/archive/v1.0.9.tar.gz",
572
-  strip_prefix = "paper-radio-group-1.0.9",
573
+  path = "tensorflow_third_party/paper_radio_group"
574
 )
575
-
576
-new_http_archive(
577
+
578
+local_repository(
579
   name = "paper_ripple",
580
-  build_file = "bower.BUILD",
581
-  url = "https://github.com/polymerelements/paper-ripple/archive/v1.0.5.tar.gz",
582
-  strip_prefix = "paper-ripple-1.0.5",
583
+  path = "tensorflow_third_party/paper_ripple"
584
 )
585
-
586
-new_http_archive(
587
+
588
+local_repository(
589
   name = "paper_slider",
590
-  build_file = "bower.BUILD",
591
-  url = "https://github.com/polymerelements/paper-slider/archive/v1.0.10.tar.gz",
592
-  strip_prefix = "paper-slider-1.0.10",
593
+  path = "tensorflow_third_party/paper_slider"
594
 )
595
-
596
-new_http_archive(
597
+
598
+local_repository(
599
   name = "paper_spinner",
600
-  build_file = "bower.BUILD",
601
-  url = "https://github.com/polymerelements/paper-spinner/archive/v1.1.1.tar.gz",
602
-  strip_prefix = "paper-spinner-1.1.1",
603
+  path = "tensorflow_third_party/paper_spinner"
604
 )
605
-
606
-new_http_archive(
607
+
608
+local_repository(
609
   name = "paper_styles",
610
-  build_file = "bower.BUILD",
611
-  url = "https://github.com/polymerelements/paper-styles/archive/v1.1.4.tar.gz",
612
-  strip_prefix = "paper-styles-1.1.4",
613
+  path = "tensorflow_third_party/paper_styles"
614
 )
615
-
616
-new_http_archive(
617
+
618
+local_repository(
619
   name = "paper_tabs",
620
-  build_file = "bower.BUILD",
621
-  url = "https://github.com/polymerelements/paper-tabs/archive/v1.7.0.tar.gz",
622
-  strip_prefix = "paper-tabs-1.7.0",
623
+  path = "tensorflow_third_party/paper_tabs"
624
 )
625
-
626
-new_http_archive(
627
+
628
+local_repository(
629
   name = "paper_toast",
630
-  build_file = "bower.BUILD",
631
-  url = "https://github.com/polymerelements/paper-toast/archive/v1.3.0.tar.gz",
632
-  strip_prefix = "paper-toast-1.3.0",
633
+  path = "tensorflow_third_party/paper_toast"
634
 )
635
-
636
-new_http_archive(
637
+
638
+local_repository(
639
   name = "paper_toggle_button",
640
-  build_file = "bower.BUILD",
641
-  url = "https://github.com/polymerelements/paper-toggle-button/archive/v1.2.0.tar.gz",
642
-  strip_prefix = "paper-toggle-button-1.2.0",
643
+  path = "tensorflow_third_party/paper_toggle_button"
644
 )
645
-
646
-new_http_archive(
647
+
648
+local_repository(
649
   name = "paper_toolbar",
650
-  build_file = "bower.BUILD",
651
-  url = "https://github.com/polymerelements/paper-toolbar/archive/v1.1.4.tar.gz",
652
-  strip_prefix = "paper-toolbar-1.1.4",
653
+  path = "tensorflow_third_party/paper_toolbar"
654
 )
655
-
656
-new_http_archive(
657
+
658
+local_repository(
659
   name = "paper_tooltip",
660
-  build_file = "bower.BUILD",
661
-  url = "https://github.com/polymerelements/paper-tooltip/archive/v1.1.2.tar.gz",
662
-  strip_prefix = "paper-tooltip-1.1.2",
663
+  path = "tensorflow_third_party/paper_tooltip"
664
 )
665
-
666
-new_http_archive(
667
+
668
+local_repository(
669
   name = "plottable",
670
-  build_file = "bower.BUILD",
671
-  url = "https://github.com/palantir/plottable/archive/v1.16.1.tar.gz",
672
-  strip_prefix = "plottable-1.16.1",
673
+  path = "tensorflow_third_party/plottable"
674
 )
675
-
676
-new_http_archive(
677
+
678
+local_repository(
679
   name = "polymer",
680
-  build_file = "bower.BUILD",
681
-  url = "https://github.com/polymer/polymer/archive/v1.7.0.tar.gz",
682
-  strip_prefix = "polymer-1.7.0",
683
+  path = "tensorflow_third_party/polymer"
684
 )
685
-
686
-new_http_archive(
687
+
688
+local_repository(
689
   name = "promise_polyfill",
690
-  build_file = "bower.BUILD",
691
-  url = "https://github.com/polymerlabs/promise-polyfill/archive/v1.0.0.tar.gz",
692
-  strip_prefix = "promise-polyfill-1.0.0",
693
+  path = "tensorflow_third_party/promise_polyfill"
694
 )
695
-
696
-http_file(
697
+
698
+local_repository(
699
   name = "three_js_three_min_js",
700
-  url = "https://raw.githubusercontent.com/mrdoob/three.js/r77/build/three.min.js",
701
+  path = "tensorflow_third_party/three_js_three_min_js"
702
 )
703
-
704
-http_file(
705
+
706
+local_repository(
707
   name = "three_js_orbitcontrols_js",
708
-  url = "https://raw.githubusercontent.com/mrdoob/three.js/r77/examples/js/controls/OrbitControls.js",
709
+  path = "tensorflow_third_party/three_js_orbitcontrols_js"
710
 )
711
-
712
-new_http_archive(
713
+
714
+local_repository(
715
   name = "web_animations_js",
716
-  build_file = "bower.BUILD",
717
-  url = "https://github.com/web-animations/web-animations-js/archive/2.2.1.tar.gz",
718
-  strip_prefix = "web-animations-js-2.2.1",
719
+  path = "tensorflow_third_party/web_animations_js"
720
 )
721
-
722
-new_http_archive(
723
+
724
+local_repository(
725
   name = "webcomponentsjs",
726
-  build_file = "bower.BUILD",
727
-  url = "https://github.com/webcomponents/webcomponentsjs/archive/v0.7.22.tar.gz",
728
-  strip_prefix = "webcomponentsjs-0.7.22",
729
+  path = "tensorflow_third_party/webcomponentsjs"
730
 )
731
-
732
-http_file(
733
+
734
+local_repository(
735
   name = "weblas_weblas_js",
736
-  url = "https://raw.githubusercontent.com/waylonflinn/weblas/v0.9.0/dist/weblas.js",
737
+  path = "tensorflow_third_party/weblas_weblas_js"
738
 )
739
+
(-)b/files/patch-tensorflow__third__party_grpc_include_grpc_impl_codegen_port__platform.h (+47 lines)
Added Link Here
1
--- tensorflow_third_party/grpc/include/grpc/impl/codegen/port_platform.h.orig	2017-06-12 12:45:01 UTC
2
+++ tensorflow_third_party/grpc/include/grpc/impl/codegen/port_platform.h
3
@@ -131,7 +131,7 @@
4
 #define GPR_POSIX_SOCKETUTILS 1
5
 #define GPR_SUPPORT_CHANNELS_FROM_FD 1
6
 #define GPR_HAVE_UNIX_SOCKET 1
7
-#define GPR_HAVE_IP_PKTINFO 1
8
+//#define GPR_HAVE_IP_PKTINFO 1
9
 #define GPR_HAVE_IPV6_RECVPKTINFO 1
10
 #define GPR_LINUX_ENV 1
11
 #define GPR_POSIX_FILE 1
12
@@ -176,7 +176,7 @@
13
 #define GPR_SUPPORT_CHANNELS_FROM_FD 1
14
 #define GPR_HAVE_MSG_NOSIGNAL 1
15
 #define GPR_HAVE_UNIX_SOCKET 1
16
-#define GPR_HAVE_IP_PKTINFO 1
17
+//#define GPR_HAVE_IP_PKTINFO 1
18
 #define GPR_HAVE_IPV6_RECVPKTINFO 1
19
 #elif defined(__linux__)
20
 #define GPR_POSIX_CRASH_HANDLER 1
21
@@ -202,7 +202,7 @@
22
 #define GPR_POSIX_SOCKETADDR 1
23
 #define GPR_SUPPORT_CHANNELS_FROM_FD 1
24
 #define GPR_HAVE_UNIX_SOCKET 1
25
-#define GPR_HAVE_IP_PKTINFO 1
26
+//#define GPR_HAVE_IP_PKTINFO 1
27
 #define GPR_HAVE_IPV6_RECVPKTINFO 1
28
 #ifdef __GLIBC_PREREQ
29
 #if __GLIBC_PREREQ(2, 9)
30
@@ -269,7 +269,7 @@
31
 #define GPR_SUPPORT_CHANNELS_FROM_FD 1
32
 #define GPR_HAVE_SO_NOSIGPIPE 1
33
 #define GPR_HAVE_UNIX_SOCKET 1
34
-#define GPR_HAVE_IP_PKTINFO 1
35
+//#define GPR_HAVE_IP_PKTINFO 1
36
 #ifdef _LP64
37
 #define GPR_ARCH_64 1
38
 #else /* _LP64 */
39
@@ -301,7 +301,7 @@
40
 #define GPR_SUPPORT_CHANNELS_FROM_FD 1
41
 #define GPR_HAVE_SO_NOSIGPIPE 1
42
 #define GPR_HAVE_UNIX_SOCKET 1
43
-#define GPR_HAVE_IP_PKTINFO 1
44
+//#define GPR_HAVE_IP_PKTINFO 1
45
 #define GPR_HAVE_IPV6_RECVPKTINFO 1
46
 #ifdef _LP64
47
 #define GPR_ARCH_64 1
(-)b/files/patch-tensorflow__third__party_protobuf_src_google_protobuf_compiler_plugin.pb.cc (+80 lines)
Added Link Here
1
--- tensorflow_third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc.orig	2017-06-12 12:45:01 UTC
2
+++ tensorflow_third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc
3
@@ -370,12 +370,12 @@ void Version::SerializeWithCachedSizes(
4
   // @@protoc_insertion_point(serialize_start:google.protobuf.compiler.Version)
5
   // optional int32 major = 1;
6
   if (has_major()) {
7
-    ::google::protobuf::internal::WireFormatLite::WriteInt32(1, this->major(), output);
8
+    ::google::protobuf::internal::WireFormatLite::WriteInt32(1, this->_major(), output);
9
   }
10
 
11
   // optional int32 minor = 2;
12
   if (has_minor()) {
13
-    ::google::protobuf::internal::WireFormatLite::WriteInt32(2, this->minor(), output);
14
+    ::google::protobuf::internal::WireFormatLite::WriteInt32(2, this->_minor(), output);
15
   }
16
 
17
   // optional int32 patch = 3;
18
@@ -406,12 +406,12 @@ void Version::SerializeWithCachedSizes(
19
   // @@protoc_insertion_point(serialize_to_array_start:google.protobuf.compiler.Version)
20
   // optional int32 major = 1;
21
   if (has_major()) {
22
-    target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(1, this->major(), target);
23
+    target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(1, this->_major(), target);
24
   }
25
 
26
   // optional int32 minor = 2;
27
   if (has_minor()) {
28
-    target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(2, this->minor(), target);
29
+    target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(2, this->_minor(), target);
30
   }
31
 
32
   // optional int32 patch = 3;
33
@@ -459,14 +459,14 @@ size_t Version::ByteSizeLong() const {
34
     if (has_major()) {
35
       total_size += 1 +
36
         ::google::protobuf::internal::WireFormatLite::Int32Size(
37
-          this->major());
38
+          this->_major());
39
     }
40
 
41
     // optional int32 minor = 2;
42
     if (has_minor()) {
43
       total_size += 1 +
44
         ::google::protobuf::internal::WireFormatLite::Int32Size(
45
-          this->minor());
46
+          this->_minor());
47
     }
48
 
49
     // optional int32 patch = 3;
50
@@ -509,10 +509,10 @@ void Version::MergeFrom(const Version& f
51
       suffix_.AssignWithDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), from.suffix_);
52
     }
53
     if (from.has_major()) {
54
-      set_major(from.major());
55
+      set_major(from._major());
56
     }
57
     if (from.has_minor()) {
58
-      set_minor(from.minor());
59
+      set_minor(from._minor());
60
     }
61
     if (from.has_patch()) {
62
       set_patch(from.patch());
63
@@ -574,7 +574,7 @@ void Version::clear_major() {
64
   major_ = 0;
65
   clear_has_major();
66
 }
67
-::google::protobuf::int32 Version::major() const {
68
+::google::protobuf::int32 Version::_major() const {
69
   // @@protoc_insertion_point(field_get:google.protobuf.compiler.Version.major)
70
   return major_;
71
 }
72
@@ -598,7 +598,7 @@ void Version::clear_minor() {
73
   minor_ = 0;
74
   clear_has_minor();
75
 }
76
-::google::protobuf::int32 Version::minor() const {
77
+::google::protobuf::int32 Version::_minor() const {
78
   // @@protoc_insertion_point(field_get:google.protobuf.compiler.Version.minor)
79
   return minor_;
80
 }
(-)b/files/patch-tensorflow__third__party_protobuf_src_google_protobuf_compiler_plugin.pb.h (+37 lines)
Added Link Here
1
--- tensorflow_third_party/protobuf/src/google/protobuf/compiler/plugin.pb.h.orig	2017-06-12 12:45:01 UTC
2
+++ tensorflow_third_party/protobuf/src/google/protobuf/compiler/plugin.pb.h
3
@@ -235,14 +235,14 @@ class LIBPROTOC_EXPORT Version : public 
4
   bool has_major() const;
5
   void clear_major();
6
   static const int kMajorFieldNumber = 1;
7
-  ::google::protobuf::int32 major() const;
8
+  ::google::protobuf::int32 _major() const;
9
   void set_major(::google::protobuf::int32 value);
10
 
11
   // optional int32 minor = 2;
12
   bool has_minor() const;
13
   void clear_minor();
14
   static const int kMinorFieldNumber = 2;
15
-  ::google::protobuf::int32 minor() const;
16
+  ::google::protobuf::int32 _minor() const;
17
   void set_minor(::google::protobuf::int32 value);
18
 
19
   // optional int32 patch = 3;
20
@@ -702,7 +702,7 @@ inline void Version::clear_major() {
21
   major_ = 0;
22
   clear_has_major();
23
 }
24
-inline ::google::protobuf::int32 Version::major() const {
25
+inline ::google::protobuf::int32 Version::_major() const {
26
   // @@protoc_insertion_point(field_get:google.protobuf.compiler.Version.major)
27
   return major_;
28
 }
29
@@ -726,7 +726,7 @@ inline void Version::clear_minor() {
30
   minor_ = 0;
31
   clear_has_minor();
32
 }
33
-inline ::google::protobuf::int32 Version::minor() const {
34
+inline ::google::protobuf::int32 Version::_minor() const {
35
   // @@protoc_insertion_point(field_get:google.protobuf.compiler.Version.minor)
36
   return minor_;
37
 }
(-)b/files/patch-tensorflow_workspace.bzl (+2906 lines)
Added Link Here
1
--- tensorflow/workspace.bzl.orig	2017-06-14 19:02:07 UTC
2
+++ tensorflow/workspace.bzl
3
@@ -147,2532 +147,832 @@ def tf_workspace(path_prefix="", tf_repo
4
     print("tf_repo_name was specified to tf_workspace but is no longer used " +
5
           "and will be removed in the future.")
6
 
7
-  native.new_http_archive(
8
+  native.local_repository(
9
       name = "eigen_archive",
10
-      urls = [
11
-          "http://mirror.bazel.build/bitbucket.org/eigen/eigen/get/f3a22f35b044.tar.gz",
12
-          "https://bitbucket.org/eigen/eigen/get/f3a22f35b044.tar.gz",
13
-      ],
14
-      sha256 = "ca7beac153d4059c02c8fc59816c82d54ea47fe58365e8aded4082ded0b820c4",
15
-      strip_prefix = "eigen-eigen-f3a22f35b044",
16
-      build_file = str(Label("//third_party:eigen.BUILD")),
17
+      path = "tensorflow_third_party/eigen_archive"
18
   )
19
 
20
-  native.new_http_archive(
21
+  native.local_repository(
22
       name = "libxsmm_archive",
23
-      urls = [
24
-          "http://mirror.bazel.build/github.com/hfp/libxsmm/archive/1.8.tar.gz",
25
-          "https://github.com/hfp/libxsmm/archive/1.8.tar.gz",
26
-      ],
27
-      sha256 = "0330201afb5525d0950ec861fec9dd75eb40a03845ebe03d2c635cf8bfc14fea",
28
-      strip_prefix = "libxsmm-1.8",
29
-      build_file = str(Label("//third_party:libxsmm.BUILD")),
30
-  )
31
-
32
-  native.bind(
33
-      name = "xsmm_avx",
34
-      actual = "@libxsmm_archive//third_party:xsmm_avx",
35
+      path = "tensorflow_third_party/libxsmm_archive"
36
   )
37
 
38
-  native.new_http_archive(
39
+  native.local_repository(
40
       name = "ortools_archive",
41
-      urls = [
42
-          "http://mirror.bazel.build/github.com/google/or-tools/archive/253f7955c6a1fd805408fba2e42ac6d45b312d15.tar.gz",
43
-          "https://github.com/google/or-tools/archive/253f7955c6a1fd805408fba2e42ac6d45b312d15.tar.gz",
44
-      ],
45
-      sha256 = "932075525642b04ac6f1b50589f1df5cd72ec2f448b721fd32234cf183f0e755",
46
-      strip_prefix = "or-tools-253f7955c6a1fd805408fba2e42ac6d45b312d15/src",
47
-      build_file = str(Label("//third_party:ortools.BUILD")),
48
+      path = "tensorflow_third_party/ortools_archive"
49
   )
50
 
51
-  native.http_archive(
52
+  native.local_repository(
53
       name = "com_googlesource_code_re2",
54
-      urls = [
55
-          "http://mirror.bazel.build/github.com/google/re2/archive/b94b7cd42e9f02673cd748c1ac1d16db4052514c.tar.gz",
56
-          "https://github.com/google/re2/archive/b94b7cd42e9f02673cd748c1ac1d16db4052514c.tar.gz",
57
-      ],
58
-      sha256 = "bd63550101e056427c9e7ff12a408c1c8b74e9803f393ca916b2926fc2c4906f",
59
-      strip_prefix = "re2-b94b7cd42e9f02673cd748c1ac1d16db4052514c",
60
+      path = "tensorflow_third_party/com_googlesource_code_re2"
61
   )
62
 
63
-  native.http_archive(
64
+  native.local_repository(
65
       name = "gemmlowp",
66
-      urls = [
67
-          "http://mirror.bazel.build/github.com/google/gemmlowp/archive/a6f29d8ac48d63293f845f2253eccbf86bc28321.tar.gz",
68
-          "https://github.com/google/gemmlowp/archive/a6f29d8ac48d63293f845f2253eccbf86bc28321.tar.gz",
69
-      ],
70
-      sha256 = "75d40ea8e68b0d1644f052fffe8f14a410b2a73d40ccb859a95c0578d194ec26",
71
-      strip_prefix = "gemmlowp-a6f29d8ac48d63293f845f2253eccbf86bc28321",
72
+      path = "tensorflow_third_party/gemmlowp"
73
   )
74
 
75
-  native.new_http_archive(
76
+  native.local_repository(
77
       name = "farmhash_archive",
78
-      urls = [
79
-          "http://mirror.bazel.build/github.com/google/farmhash/archive/92e897b282426729f4724d91a637596c7e2fe28f.zip",
80
-          "https://github.com/google/farmhash/archive/92e897b282426729f4724d91a637596c7e2fe28f.zip",
81
-      ],
82
-      sha256 = "4c626d1f306bda2c6804ab955892f803f5245f4dcaecb4979dc08b091256da54",
83
-      strip_prefix = "farmhash-92e897b282426729f4724d91a637596c7e2fe28f",
84
-      build_file = str(Label("//third_party:farmhash.BUILD")),
85
-  )
86
-
87
-  native.bind(
88
-      name = "farmhash",
89
-      actual = "@farmhash//:farmhash",
90
+      path = "tensorflow_third_party/farmhash_archive"
91
   )
92
 
93
-  native.new_http_archive(
94
+  native.local_repository(
95
       name = "highwayhash",
96
-      urls = [
97
-          "http://mirror.bazel.build/github.com/google/highwayhash/archive/dfcb97ca4fe9277bf9dc1802dd979b071896453b.tar.gz",
98
-          "https://github.com/google/highwayhash/archive/dfcb97ca4fe9277bf9dc1802dd979b071896453b.tar.gz",
99
-      ],
100
-      sha256 = "0f30a15b1566d93f146c8d149878a06e91d9bb7ec2cfd76906df62a82be4aac9",
101
-      strip_prefix = "highwayhash-dfcb97ca4fe9277bf9dc1802dd979b071896453b",
102
-      build_file = str(Label("//third_party:highwayhash.BUILD")),
103
+      path = "tensorflow_third_party/highwayhash"
104
   )
105
 
106
-  native.new_http_archive(
107
+  native.local_repository(
108
       name = "nasm",
109
-      urls = [
110
-          "http://mirror.bazel.build/www.nasm.us/pub/nasm/releasebuilds/2.12.02/nasm-2.12.02.tar.bz2",
111
-          "http://pkgs.fedoraproject.org/repo/pkgs/nasm/nasm-2.12.02.tar.bz2/d15843c3fb7db39af80571ee27ec6fad/nasm-2.12.02.tar.bz2",
112
-      ],
113
-      sha256 = "00b0891c678c065446ca59bcee64719d0096d54d6886e6e472aeee2e170ae324",
114
-      strip_prefix = "nasm-2.12.02",
115
-      build_file = str(Label("//third_party:nasm.BUILD")),
116
+      path = "tensorflow_third_party/nasm"
117
   )
118
 
119
-  temp_workaround_http_archive(
120
+  native.local_repository(
121
       name = "jpeg",
122
-      urls = [
123
-          "http://mirror.bazel.build/github.com/libjpeg-turbo/libjpeg-turbo/archive/1.5.1.tar.gz",
124
-          "https://github.com/libjpeg-turbo/libjpeg-turbo/archive/1.5.1.tar.gz",
125
-      ],
126
-      sha256 = "c15a9607892113946379ccea3ca8b85018301b200754f209453ab21674268e77",
127
-      strip_prefix = "libjpeg-turbo-1.5.1",
128
-      build_file = str(Label("//third_party/jpeg:jpeg.BUILD")),
129
-      repository = tf_repo_name,
130
+      path = "tensorflow_third_party/jpeg"
131
   )
132
 
133
-  native.new_http_archive(
134
+  native.local_repository(
135
       name = "png_archive",
136
-      urls = [
137
-          "http://mirror.bazel.build/github.com/glennrp/libpng/archive/v1.2.53.zip",
138
-          "https://github.com/glennrp/libpng/archive/v1.2.53.zip",
139
-      ],
140
-      sha256 = "c35bcc6387495ee6e757507a68ba036d38ad05b415c2553b3debe2a57647a692",
141
-      strip_prefix = "libpng-1.2.53",
142
-      build_file = str(Label("//third_party:png.BUILD")),
143
+      path = "tensorflow_third_party/png_archive"
144
   )
145
 
146
-  native.new_http_archive(
147
+  native.local_repository(
148
       name = "gif_archive",
149
-      urls = [
150
-          "http://mirror.bazel.build/ufpr.dl.sourceforge.net/project/giflib/giflib-5.1.4.tar.gz",
151
-          "http://ufpr.dl.sourceforge.net/project/giflib/giflib-5.1.4.tar.gz",
152
-          "http://pilotfiber.dl.sourceforge.net/project/giflib/giflib-5.1.4.tar.gz",
153
-      ],
154
-      sha256 = "34a7377ba834397db019e8eb122e551a49c98f49df75ec3fcc92b9a794a4f6d1",
155
-      strip_prefix = "giflib-5.1.4",
156
-      build_file = str(Label("//third_party:gif.BUILD")),
157
+      path = "tensorflow_third_party/gif_archive"
158
   )
159
 
160
-  native.new_http_archive(
161
+  native.local_repository(
162
       name = "six_archive",
163
-      urls = [
164
-          "http://mirror.bazel.build/pypi.python.org/packages/source/s/six/six-1.10.0.tar.gz",
165
-          "http://pypi.python.org/packages/source/s/six/six-1.10.0.tar.gz",
166
-      ],
167
-      sha256 = "105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a",
168
-      strip_prefix = "six-1.10.0",
169
-      build_file = str(Label("//third_party:six.BUILD")),
170
+      path = "tensorflow_third_party/six_archive"
171
   )
172
 
173
-  native.new_http_archive(
174
+  native.local_repository(
175
       name = "org_pythonhosted_markdown",
176
-      urls = [
177
-          "http://mirror.bazel.build/pypi.python.org/packages/1d/25/3f6d2cb31ec42ca5bd3bfbea99b63892b735d76e26f20dd2dcc34ffe4f0d/Markdown-2.6.8.tar.gz",
178
-          "https://pypi.python.org/packages/1d/25/3f6d2cb31ec42ca5bd3bfbea99b63892b735d76e26f20dd2dcc34ffe4f0d/Markdown-2.6.8.tar.gz",
179
-      ],
180
-      strip_prefix = "Markdown-2.6.8",
181
-      sha256 = "0ac8a81e658167da95d063a9279c9c1b2699f37c7c4153256a458b3a43860e33",
182
-      build_file = str(Label("//third_party:markdown.BUILD")),
183
+      path = "tensorflow_third_party/org_pythonhosted_markdown"
184
   )
185
 
186
-  native.new_http_archive(
187
+  native.local_repository(
188
       name = "org_html5lib",
189
-      urls = [
190
-          "http://mirror.bazel.build/github.com/html5lib/html5lib-python/archive/0.9999999.tar.gz",
191
-          "https://github.com/html5lib/html5lib-python/archive/0.9999999.tar.gz",  # identical to 1.0b8
192
-      ],
193
-      sha256 = "184257f98539159a433e2a2197309657ae1283b4c44dbd9c87b2f02ff36adce8",
194
-      strip_prefix = "html5lib-python-0.9999999",
195
-      build_file = str(Label("//third_party:html5lib.BUILD")),
196
+      path = "tensorflow_third_party/org_html5lib"
197
   )
198
 
199
-  native.new_http_archive(
200
+  native.local_repository(
201
       name = "org_mozilla_bleach",
202
-      urls = [
203
-          "http://mirror.bazel.build/github.com/mozilla/bleach/archive/v1.5.tar.gz",
204
-          "https://github.com/mozilla/bleach/archive/v1.5.tar.gz",
205
-      ],
206
-      strip_prefix = "bleach-1.5",
207
-      sha256 = "0d68713d02ba4148c417ab1637dd819333d96929a34401d0233947bec0881ad8",
208
-      build_file = str(Label("//third_party:bleach.BUILD")),
209
+      path = "tensorflow_third_party/org_mozilla_bleach"
210
   )
211
 
212
-  native.new_http_archive(
213
+  native.local_repository(
214
       name = "org_pocoo_werkzeug",
215
-      urls = [
216
-          "http://mirror.bazel.build/pypi.python.org/packages/b7/7f/44d3cfe5a12ba002b253f6985a4477edfa66da53787a2a838a40f6415263/Werkzeug-0.11.10.tar.gz",
217
-          "https://pypi.python.org/packages/b7/7f/44d3cfe5a12ba002b253f6985a4477edfa66da53787a2a838a40f6415263/Werkzeug-0.11.10.tar.gz",
218
-      ],
219
-      strip_prefix = "Werkzeug-0.11.10",
220
-      sha256 = "cc64dafbacc716cdd42503cf6c44cb5a35576443d82f29f6829e5c49264aeeee",
221
-      build_file = str(Label("//third_party:werkzeug.BUILD")),
222
-  )
223
-
224
-  native.bind(
225
-      name = "six",
226
-      actual = "@six_archive//:six",
227
+      path = "tensorflow_third_party/org_pocoo_werkzeug"
228
   )
229
 
230
-  patched_http_archive(
231
+  native.local_repository(
232
       name = "protobuf",
233
-      urls = [
234
-          "http://mirror.bazel.build/github.com/google/protobuf/archive/2b7430d96aeff2bb624c8d52182ff5e4b9f7f18a.tar.gz",
235
-          "https://github.com/google/protobuf/archive/2b7430d96aeff2bb624c8d52182ff5e4b9f7f18a.tar.gz",
236
-      ],
237
-      sha256 = "e5d3d4e227a0f7afb8745df049bbd4d55474b158ca5aaa2a0e31099af24be1d0",
238
-      strip_prefix = "protobuf-2b7430d96aeff2bb624c8d52182ff5e4b9f7f18a",
239
-      # TODO: remove patching when tensorflow stops linking same protos into
240
-      #       multiple shared libraries loaded in runtime by python.
241
-      #       This patch fixes a runtime crash when tensorflow is compiled
242
-      #       with clang -O2 on Linux (see https://github.com/tensorflow/tensorflow/issues/8394)
243
-      patch_file = str(Label("//third_party/protobuf:add_noinlines.patch")),
244
+      path = "tensorflow_third_party/protobuf"
245
   )
246
 
247
-  # We need to import the protobuf library under the names com_google_protobuf
248
-  # and com_google_protobuf_cc to enable proto_library support in bazel.
249
-  # Unfortunately there is no way to alias http_archives at the moment.
250
-  native.http_archive(
251
+  native.local_repository(
252
       name = "com_google_protobuf",
253
-      urls = [
254
-          "http://mirror.bazel.build/github.com/google/protobuf/archive/2b7430d96aeff2bb624c8d52182ff5e4b9f7f18a.tar.gz",
255
-          "https://github.com/google/protobuf/archive/2b7430d96aeff2bb624c8d52182ff5e4b9f7f18a.tar.gz",
256
-      ],
257
-      sha256 = "e5d3d4e227a0f7afb8745df049bbd4d55474b158ca5aaa2a0e31099af24be1d0",
258
-      strip_prefix = "protobuf-2b7430d96aeff2bb624c8d52182ff5e4b9f7f18a",
259
+      path = "tensorflow_third_party/com_google_protobuf"
260
   )
261
 
262
-  native.http_archive(
263
+  native.local_repository(
264
       name = "com_google_protobuf_cc",
265
-      urls = [
266
-          "http://mirror.bazel.build/github.com/google/protobuf/archive/2b7430d96aeff2bb624c8d52182ff5e4b9f7f18a.tar.gz",
267
-          "https://github.com/google/protobuf/archive/2b7430d96aeff2bb624c8d52182ff5e4b9f7f18a.tar.gz",
268
-      ],
269
-      sha256 = "e5d3d4e227a0f7afb8745df049bbd4d55474b158ca5aaa2a0e31099af24be1d0",
270
-      strip_prefix = "protobuf-2b7430d96aeff2bb624c8d52182ff5e4b9f7f18a",
271
+      path = "tensorflow_third_party/com_google_protobuf_cc"
272
   )
273
 
274
-  native.new_http_archive(
275
+  native.local_repository(
276
       name = "gmock_archive",
277
-      urls = [
278
-          "http://mirror.bazel.build/github.com/google/googletest/archive/release-1.8.0.zip",
279
-          "https://github.com/google/googletest/archive/release-1.8.0.zip",
280
-      ],
281
-      sha256 = "f3ed3b58511efd272eb074a3a6d6fb79d7c2e6a0e374323d1e6bcbcc1ef141bf",
282
-      strip_prefix = "googletest-release-1.8.0",
283
-      build_file = str(Label("//third_party:gmock.BUILD")),
284
-  )
285
-
286
-  native.bind(
287
-      name = "gtest",
288
-      actual = "@gmock_archive//:gtest",
289
-  )
290
-
291
-  native.bind(
292
-      name = "gtest_main",
293
-      actual = "@gmock_archive//:gtest_main",
294
+      path = "tensorflow_third_party/gmock_archive"
295
   )
296
 
297
-  native.http_archive(
298
+  native.local_repository(
299
       name = "com_github_gflags_gflags",
300
-      urls = [
301
-          "http://mirror.bazel.build/github.com/gflags/gflags/archive/f8a0efe03aa69b3336d8e228b37d4ccb17324b88.tar.gz",
302
-          "https://github.com/gflags/gflags/archive/f8a0efe03aa69b3336d8e228b37d4ccb17324b88.tar.gz",
303
-      ],
304
-      sha256 = "4d222fab8f1ede4709cdff417d15a1336f862d7334a81abf76d09c15ecf9acd1",
305
-      strip_prefix = "gflags-f8a0efe03aa69b3336d8e228b37d4ccb17324b88",
306
-  )
307
-
308
-  native.bind(
309
-      name = "python_headers",
310
-      actual = str(Label("//util/python:python_headers")),
311
+      path = "tensorflow_third_party/com_github_gflags_gflags"
312
   )
313
 
314
-  native.new_http_archive(
315
+  native.local_repository(
316
       name = "pcre",
317
-      sha256 = "ccdf7e788769838f8285b3ee672ed573358202305ee361cfec7a4a4fb005bbc7",
318
-      urls = [
319
-          "http://mirror.bazel.build/ftp.exim.org/pub/pcre/pcre-8.39.tar.gz",
320
-          "http://ftp.exim.org/pub/pcre/pcre-8.39.tar.gz",
321
-      ],
322
-      strip_prefix = "pcre-8.39",
323
-      build_file = str(Label("//third_party:pcre.BUILD")),
324
+      path = "tensorflow_third_party/pcre"
325
   )
326
 
327
-  native.new_http_archive(
328
+  native.local_repository(
329
       name = "swig",
330
-      sha256 = "58a475dbbd4a4d7075e5fe86d4e54c9edde39847cdb96a3053d87cb64a23a453",
331
-      urls = [
332
-          "http://mirror.bazel.build/ufpr.dl.sourceforge.net/project/swig/swig/swig-3.0.8/swig-3.0.8.tar.gz",
333
-          "http://ufpr.dl.sourceforge.net/project/swig/swig/swig-3.0.8/swig-3.0.8.tar.gz",
334
-          "http://pilotfiber.dl.sourceforge.net/project/swig/swig/swig-3.0.8/swig-3.0.8.tar.gz",
335
-      ],
336
-      strip_prefix = "swig-3.0.8",
337
-      build_file = str(Label("//third_party:swig.BUILD")),
338
+      path = "tensorflow_third_party/swig"
339
   )
340
 
341
-  temp_workaround_http_archive(
342
+  native.local_repository(
343
       name = "curl",
344
-      sha256 = "ff3e80c1ca6a068428726cd7dd19037a47cc538ce58ef61c59587191039b2ca6",
345
-      urls = [
346
-          "http://mirror.bazel.build/curl.haxx.se/download/curl-7.49.1.tar.gz",
347
-          "https://curl.haxx.se/download/curl-7.49.1.tar.gz",
348
-      ],
349
-      strip_prefix = "curl-7.49.1",
350
-      build_file = str(Label("//third_party:curl.BUILD")),
351
-      repository = tf_repo_name
352
-  )
353
-
354
-  # grpc expects //external:protobuf_clib and //external:protobuf_compiler
355
-  # to point to the protobuf's compiler library.
356
-  native.bind(
357
-      name = "protobuf_clib",
358
-      actual = "@protobuf//:protoc_lib",
359
-  )
360
-
361
-  native.bind(
362
-      name = "protobuf_compiler",
363
-      actual = "@protobuf//:protoc_lib",
364
+      path = "tensorflow_third_party/curl"
365
   )
366
 
367
-  native.new_http_archive(
368
+  native.local_repository(
369
       name = "grpc",
370
-      urls = [
371
-          "http://mirror.bazel.build/github.com/grpc/grpc/archive/d7ff4ff40071d2b486a052183e3e9f9382afb745.tar.gz",
372
-          "https://github.com/grpc/grpc/archive/d7ff4ff40071d2b486a052183e3e9f9382afb745.tar.gz",
373
-      ],
374
-      sha256 = "a15f352436ab92c521b1ac11e729e155ace38d0856380cf25048c5d1d9ba8e31",
375
-      strip_prefix = "grpc-d7ff4ff40071d2b486a052183e3e9f9382afb745",
376
-      build_file = str(Label("//third_party:grpc.BUILD")),
377
-  )
378
-
379
-  # protobuf expects //external:grpc_cpp_plugin to point to grpc's
380
-  # C++ plugin code generator.
381
-  native.bind(
382
-      name = "grpc_cpp_plugin",
383
-      actual = "@grpc//:grpc_cpp_plugin",
384
-  )
385
-
386
-  native.bind(
387
-      name = "grpc_lib",
388
-      actual = "@grpc//:grpc++_unsecure",
389
+      path = "tensorflow_third_party/grpc"
390
   )
391
 
392
-  native.new_http_archive(
393
+  native.local_repository(
394
       name = "linenoise",
395
-      sha256 = "7f51f45887a3d31b4ce4fa5965210a5e64637ceac12720cfce7954d6a2e812f7",
396
-      urls = [
397
-          "http://mirror.bazel.build/github.com/antirez/linenoise/archive/c894b9e59f02203dbe4e2be657572cf88c4230c3.tar.gz",
398
-          "https://github.com/antirez/linenoise/archive/c894b9e59f02203dbe4e2be657572cf88c4230c3.tar.gz",
399
-      ],
400
-      strip_prefix = "linenoise-c894b9e59f02203dbe4e2be657572cf88c4230c3",
401
-      build_file = str(Label("//third_party:linenoise.BUILD")),
402
+      path = "tensorflow_third_party/linenoise"
403
   )
404
 
405
-  # TODO(phawkins): currently, this rule uses an unofficial LLVM mirror.
406
-  # Switch to an official source of snapshots if/when possible.
407
-  temp_workaround_http_archive(
408
+  native.local_repository(
409
       name = "llvm",
410
-      urls = [
411
-          "http://mirror.bazel.build/github.com/llvm-mirror/llvm/archive/c978c0ff91f7c4ea58cfbd8f378e51c6af2c2b4b.tar.gz",
412
-          "https://github.com/llvm-mirror/llvm/archive/c978c0ff91f7c4ea58cfbd8f378e51c6af2c2b4b.tar.gz",
413
-      ],
414
-      sha256 = "42c57d798a037d9dea692ce1da8ff4d24966ab5a40494015b374341e43411a37",
415
-      strip_prefix = "llvm-c978c0ff91f7c4ea58cfbd8f378e51c6af2c2b4b",
416
-      build_file = str(Label("//third_party/llvm:llvm.BUILD")),
417
-      repository = tf_repo_name,
418
+      path = "tensorflow_third_party/llvm"
419
   )
420
 
421
-  native.new_http_archive(
422
+  native.local_repository(
423
       name = "jsoncpp_git",
424
-      urls = [
425
-          "http://mirror.bazel.build/github.com/open-source-parsers/jsoncpp/archive/11086dd6a7eba04289944367ca82cea71299ed70.tar.gz",
426
-          "https://github.com/open-source-parsers/jsoncpp/archive/11086dd6a7eba04289944367ca82cea71299ed70.tar.gz",
427
-      ],
428
-      sha256 = "07d34db40593d257324ec5fb9debc4dc33f29f8fb44e33a2eeb35503e61d0fe2",
429
-      strip_prefix = "jsoncpp-11086dd6a7eba04289944367ca82cea71299ed70",
430
-      build_file = str(Label("//third_party:jsoncpp.BUILD")),
431
-  )
432
-
433
-  native.bind(
434
-      name = "jsoncpp",
435
-      actual = "@jsoncpp_git//:jsoncpp",
436
+      path = "tensorflow_third_party/jsoncpp_git"
437
   )
438
 
439
-  native.http_archive(
440
+  native.local_repository(
441
       name = "boringssl",
442
-      urls = [
443
-          "http://mirror.bazel.build/github.com/google/boringssl/archive/bbcaa15b0647816b9a1a9b9e0d209cd6712f0105.tar.gz",
444
-          "https://github.com/google/boringssl/archive/bbcaa15b0647816b9a1a9b9e0d209cd6712f0105.tar.gz",  # 2016-07-11
445
-      ],
446
-      sha256 = "025264d6e9a7ad371f2f66d17a28b6627de0c9592dc2eb54afd062f68f1f9aa3",
447
-      strip_prefix = "boringssl-bbcaa15b0647816b9a1a9b9e0d209cd6712f0105",
448
+      path = "tensorflow_third_party/boringssl"
449
   )
450
 
451
-  native.new_http_archive(
452
+  native.local_repository(
453
       name = "nanopb_git",
454
-      urls = [
455
-          "http://mirror.bazel.build/github.com/nanopb/nanopb/archive/1251fa1065afc0d62f635e0f63fec8276e14e13c.tar.gz",
456
-          "https://github.com/nanopb/nanopb/archive/1251fa1065afc0d62f635e0f63fec8276e14e13c.tar.gz",
457
-      ],
458
-      sha256 = "ab1455c8edff855f4f55b68480991559e51c11e7dab060bbab7cffb12dd3af33",
459
-      strip_prefix = "nanopb-1251fa1065afc0d62f635e0f63fec8276e14e13c",
460
-      build_file = str(Label("//third_party:nanopb.BUILD")),
461
-  )
462
-
463
-  native.bind(
464
-      name = "nanopb",
465
-      actual = "@nanopb_git//:nanopb",
466
+      path = "tensorflow_third_party/nanopb_git"
467
   )
468
 
469
-  native.new_http_archive(
470
+  native.local_repository(
471
       name = "zlib_archive",
472
-      urls = [
473
-          "http://mirror.bazel.build/zlib.net/zlib-1.2.8.tar.gz",
474
-          "http://zlib.net/fossils/zlib-1.2.8.tar.gz",
475
-      ],
476
-      sha256 = "36658cb768a54c1d4dec43c3116c27ed893e88b02ecfcb44f2166f9c0b7f2a0d",
477
-      strip_prefix = "zlib-1.2.8",
478
-      build_file = str(Label("//third_party:zlib.BUILD")),
479
-  )
480
-
481
-  native.bind(
482
-      name = "zlib",
483
-      actual = "@zlib_archive//:zlib",
484
+      path = "tensorflow_third_party/zlib_archive"
485
   )
486
 
487
-  native.new_http_archive(
488
+  native.local_repository(
489
       name = "fft2d",
490
-      urls = [
491
-          "http://mirror.bazel.build/www.kurims.kyoto-u.ac.jp/~ooura/fft.tgz",
492
-          "http://www.kurims.kyoto-u.ac.jp/~ooura/fft.tgz",
493
-      ],
494
-      sha256 = "52bb637c70b971958ec79c9c8752b1df5ff0218a4db4510e60826e0cb79b5296",
495
-      build_file = str(Label("//third_party/fft2d:fft2d.BUILD")),
496
+      path = "tensorflow_third_party/fft2d"
497
   )
498
 
499
-  temp_workaround_http_archive(
500
+  native.local_repository(
501
       name = "snappy",
502
-      urls = [
503
-          "http://mirror.bazel.build/github.com/google/snappy/archive/1.1.4.zip",
504
-          "https://github.com/google/snappy/archive/1.1.4.zip",
505
-      ],
506
-      sha256 = "6c74d2b663170d68184da353cdd71b5b7d57bc8888ef1e99b4929b5d680dba54",
507
-      strip_prefix = "snappy-1.1.4",
508
-      build_file = str(Label("//third_party:snappy.BUILD")),
509
-      repository = tf_repo_name,
510
+      path = "tensorflow_third_party/snappy"
511
   )
512
 
513
-  temp_workaround_http_archive(
514
+  native.local_repository(
515
       name = "nccl_archive",
516
-      urls = [
517
-          "http://mirror.bazel.build/github.com/nvidia/nccl/archive/ccfc4567dc3e2a37fb42cfbc64d10eb526e7da7b.tar.gz",
518
-          "https://github.com/nvidia/nccl/archive/ccfc4567dc3e2a37fb42cfbc64d10eb526e7da7b.tar.gz",
519
-      ],
520
-      sha256 = "6c34a0862d9f8ed4ad5984c6a8206b351957bb14cf6ad7822720f285f4aada04",
521
-      strip_prefix = "nccl-ccfc4567dc3e2a37fb42cfbc64d10eb526e7da7b",
522
-      build_file = str(Label("//third_party:nccl.BUILD")),
523
-      repository = tf_repo_name,
524
+      path = "tensorflow_third_party/nccl_archive"
525
   )
526
 
527
-  java_import_external(
528
+  native.local_repository(
529
       name = "junit",
530
-      jar_sha256 = "59721f0805e223d84b90677887d9ff567dc534d7c502ca903c0c2b17f05c116a",
531
-      jar_urls = [
532
-          "http://mirror.bazel.build/repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.jar",
533
-          "http://repo1.maven.org/maven2/junit/junit/4.12/junit-4.12.jar",
534
-          "http://maven.ibiblio.org/maven2/junit/junit/4.12/junit-4.12.jar",
535
-      ],
536
-      licenses = ["reciprocal"],  # Common Public License Version 1.0
537
-      testonly_ = True,
538
-      deps = ["@org_hamcrest_core"],
539
+      path = "tensorflow_third_party/junit"
540
   )
541
 
542
-  java_import_external(
543
+  native.local_repository(
544
       name = "org_hamcrest_core",
545
-      jar_sha256 = "66fdef91e9739348df7a096aa384a5685f4e875584cce89386a7a47251c4d8e9",
546
-      jar_urls = [
547
-          "http://mirror.bazel.build/repo1.maven.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar",
548
-          "http://repo1.maven.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar",
549
-          "http://maven.ibiblio.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar",
550
-      ],
551
-      licenses = ["notice"],  # New BSD License
552
-      testonly_ = True,
553
+      path = "tensorflow_third_party/org_hamcrest_core"
554
   )
555
 
556
-  temp_workaround_http_archive(
557
+  native.local_repository(
558
       name = "jemalloc",
559
-      urls = [
560
-          "http://mirror.bazel.build/github.com/jemalloc/jemalloc/archive/4.4.0.tar.gz",
561
-          "https://github.com/jemalloc/jemalloc/archive/4.4.0.tar.gz",
562
-      ],
563
-      sha256 = "3c8f25c02e806c3ce0ab5fb7da1817f89fc9732709024e2a81b6b82f7cc792a8",
564
-      strip_prefix = "jemalloc-4.4.0",
565
-      build_file = str(Label("//third_party:jemalloc.BUILD")),
566
-      repository = tf_repo_name,
567
+      path = "tensorflow_third_party/jemalloc"
568
   )
569
 
570
-  native.new_http_archive(
571
+  native.local_repository(
572
       name = "com_google_pprof",
573
-      urls = [
574
-          "http://mirror.bazel.build/github.com/google/pprof/archive/c0fb62ec88c411cc91194465e54db2632845b650.tar.gz",
575
-          "https://github.com/google/pprof/archive/c0fb62ec88c411cc91194465e54db2632845b650.tar.gz",
576
-      ],
577
-      sha256 = "e0928ca4aa10ea1e0551e2d7ce4d1d7ea2d84b2abbdef082b0da84268791d0c4",
578
-      strip_prefix = "pprof-c0fb62ec88c411cc91194465e54db2632845b650",
579
-      build_file = str(Label("//third_party:pprof.BUILD")),
580
+      path = "tensorflow_third_party/com_google_pprof"
581
   )
582
 
583
-  ##############################################################################
584
-  # TensorBoard Build Tools
585
-
586
-  filegroup_external(
587
+  native.local_repository(
588
       name = "org_nodejs",
589
-      # MIT with portions licensed:
590
-      # - MIT
591
-      # - Old MIT
592
-      # - 2-Clause-BSD
593
-      # - 3-Clause-BSD
594
-      # - ISC
595
-      # - Unicode
596
-      # - zlib
597
-      # - Artistic 2.0
598
-      licenses = ["notice"],
599
-      sha256_urls_extract_macos = {
600
-          "47109a00cac344d80296c195451bb5eee7c21727fcef1594384ddfe1f852957a": [
601
-              "http://mirror.bazel.build/nodejs.org/dist/v4.3.2/node-v4.3.2-darwin-x64.tar.xz",
602
-              "http://nodejs.org/dist/v4.3.2/node-v4.3.2-darwin-x64.tar.xz",
603
-          ],
604
-      },
605
-      sha256_urls_windows = {
606
-          "606c44c42d17866c017c50c0afadad411d9492ac4281d2431b937f881911614e": [
607
-              "http://mirror.bazel.build/nodejs.org/dist/v4.3.2/win-x64/node.exe",
608
-              "http://nodejs.org/dist/v4.3.2/win-x64/node.exe",
609
-          ],
610
-          "451a40570099a95488d6438f175813629e0430f87f23c8659bc18dc42494820a": [
611
-              "http://mirror.bazel.build/nodejs.org/dist/v4.3.2/win-x64/node.lib",
612
-              "http://nodejs.org/dist/v4.3.2/win-x64/node.lib",
613
-          ],
614
-      },
615
-      sha256_urls_extract = {
616
-          "4350d0431b49697517c6cca5d66adf5f74eb9101c52f52ae959fa94225822d44": [
617
-              "http://mirror.bazel.build/nodejs.org/dist/v4.3.2/node-v4.3.2-linux-x64.tar.xz",
618
-              "http://nodejs.org/dist/v4.3.2/node-v4.3.2-linux-x64.tar.xz",
619
-          ],
620
-      },
621
-      strip_prefix = {
622
-          "node-v4.3.2-darwin-x64.tar.xz": "node-v4.3.2-darwin-x64",
623
-          "node-v4.3.2-linux-x64.tar.xz": "node-v4.3.2-linux-x64",
624
-      },
625
-      executable = [
626
-          "node",
627
-          "node.exe",
628
-      ],
629
+      path = "tensorflow_third_party/org_nodejs"
630
   )
631
 
632
-  filegroup_external(
633
+  native.local_repository(
634
       name = "com_microsoft_typescript",
635
-      licenses = ["notice"],  # Apache 2.0
636
-      sha256_urls = {
637
-          "8465342c318f9c4cf0a29b109fa63ee3742dd4dc7080d05d9fd8f604814d04cf": [
638
-              "http://mirror.bazel.build/raw.githubusercontent.com/Microsoft/TypeScript/v2.3.1/lib/tsc.js",
639
-              "https://raw.githubusercontent.com/Microsoft/TypeScript/v2.3.1/lib/tsc.js",
640
-          ],
641
-          "a67e36da3029d232e4e938e61a0a3302f516d71e7100d54dbf5362ad8618e994": [
642
-              "http://mirror.bazel.build/raw.githubusercontent.com/Microsoft/TypeScript/v2.3.1/lib/lib.es6.d.ts",
643
-              "https://raw.githubusercontent.com/Microsoft/TypeScript/v2.3.1/lib/lib.es6.d.ts",
644
-          ],
645
-      },
646
-      extra_build_file_content = "\n".join([
647
-          "sh_binary(",
648
-          "    name = \"tsc\",",
649
-          "    srcs = [\"tsc.sh\"],",
650
-          "    data = [",
651
-          "        \"tsc.js\",",
652
-          "        \"@org_nodejs\",",
653
-          "    ],",
654
-          ")",
655
-          "",
656
-          "genrule(",
657
-          "    name = \"tsc_sh\",",
658
-          "    outs = [\"tsc.sh\"],",
659
-          "    cmd = \"cat >$@ <<'EOF'\\n\" +",
660
-          "          \"#!/bin/bash\\n\" +",
661
-          "          \"NODE=external/org_nodejs/bin/node\\n\" +",
662
-          "          \"if [[ -e external/org_nodejs/node.exe ]]; then\\n\" +",
663
-          "          \"  NODE=external/org_nodejs/node.exe\\n\" +",
664
-          "          \"fi\\n\" +",
665
-          "          \"exec $${NODE} external/com_microsoft_typescript/tsc.js \\\"$$@\\\"\\n\" +",
666
-          "          \"EOF\",",
667
-          "    executable = True,",
668
-          ")",
669
-      ]),
670
+      path = "tensorflow_third_party/com_microsoft_typescript"
671
   )
672
 
673
-  ##############################################################################
674
-  # TensorBoard JavaScript Production Dependencies
675
-
676
-  web_library_external(
677
+  native.local_repository(
678
       name = "com_lodash",
679
-      licenses = ["notice"],  # MIT
680
-      sha256 = "0e88207e5f90af4ce8790d6e1e7d09d2702d81bce0bafdc253d18c0a5bf7661e",
681
-      urls = [
682
-          "http://mirror.bazel.build/github.com/lodash/lodash/archive/3.10.1.tar.gz",
683
-          "https://github.com/lodash/lodash/archive/3.10.1.tar.gz",
684
-      ],
685
-      strip_prefix = "lodash-3.10.1",
686
-      path = "/lodash",
687
-      srcs = ["lodash.js"],
688
+      path = "tensorflow_third_party/com_lodash"
689
   )
690
 
691
-  filegroup_external(
692
+  native.local_repository(
693
       name = "com_numericjs",
694
-      # no @license header
695
-      licenses = ["notice"],  # MIT
696
-      sha256_urls = {
697
-          "dfaca3b8485bee735788cc6eebca82ea25719adc1fb8911c7799c6bd5a95df3b": [
698
-              "http://mirror.bazel.build/raw.githubusercontent.com/sloisel/numeric/v1.2.6/src/numeric.js",
699
-              "https://raw.githubusercontent.com/sloisel/numeric/v1.2.6/src/numeric.js",
700
-          ],
701
-      },
702
+      path = "tensorflow_third_party/com_numericjs"
703
   )
704
 
705
-  filegroup_external(
706
+  native.local_repository(
707
       name = "com_palantir_plottable",
708
-      # no @license header
709
-      licenses = ["notice"],  # MIT
710
-      sha256_urls = {
711
-          "77510d7538dbd3b59f1c8a06f68131b38562e3be546364747618d5112723e818": [
712
-              "http://mirror.bazel.build/raw.githubusercontent.com/palantir/plottable/v1.16.1/plottable.css",
713
-              "https://raw.githubusercontent.com/palantir/plottable/v1.16.1/plottable.css",
714
-          ],
715
-          "cd46dc709b01cd361e8399f797760871a6a207bc832e08fcff385ced02ef2b43": [
716
-              "http://mirror.bazel.build/raw.githubusercontent.com/palantir/plottable/v1.16.1/plottable.d.ts",
717
-              "https://raw.githubusercontent.com/palantir/plottable/v1.16.1/plottable.d.ts",
718
-          ],
719
-          "32647b0fb4175fa875a71e6d56c761b88d975186ed6a8820e2c7854165a8988d": [
720
-              "http://mirror.bazel.build/raw.githubusercontent.com/palantir/plottable/v1.16.1/plottable.js",
721
-              "https://raw.githubusercontent.com/palantir/plottable/v1.16.1/plottable.js",
722
-          ],
723
-      },
724
+      path = "tensorflow_third_party/com_palantir_plottable"
725
   )
726
 
727
-  # TODO: Delete previous rule and rename this one org_palantir_plottable
728
-  filegroup_external(
729
+  native.local_repository(
730
       name = "com_palantir_plottable_v3",
731
-      # no @license header
732
-      licenses = ["notice"],  # MIT
733
-      sha256_urls_extract = {
734
-          # Plottable doesn't have a release tarball on GitHub. Using the
735
-          # sources directly from git also requires running Node tooling
736
-          # beforehand to generate files. NPM is the only place to get it.
737
-          "e3159beb279391c47433789f22b32bac88488cfcad6c0b6ec8605ce6b0081b0d": [
738
-              "http://mirror.bazel.build/registry.npmjs.org/plottable/-/plottable-3.1.0.tgz",
739
-              "https://registry.npmjs.org/plottable/-/plottable-3.1.0.tgz",
740
-          ],
741
-      },
742
+      path = "tensorflow_third_party/com_palantir_plottable_v3"
743
   )
744
 
745
-  filegroup_external(
746
+  native.local_repository(
747
       name = "io_github_cpettitt_dagre",
748
-      # no @license header
749
-      licenses = ["notice"],  # MIT
750
-      sha256_urls = {
751
-          "7323829ddd77924a69e2b1235ded3eac30acd990da0f037e0fbd3c8e9035b50d": [
752
-              "http://mirror.bazel.build/raw.githubusercontent.com/cpettitt/dagre/v0.7.4/dist/dagre.core.js",
753
-              "https://raw.githubusercontent.com/cpettitt/dagre/v0.7.4/dist/dagre.core.js",
754
-          ],
755
-      },
756
+      path = "tensorflow_third_party/io_github_cpettitt_dagre"
757
   )
758
 
759
-  filegroup_external(
760
+  native.local_repository(
761
       name = "io_github_cpettitt_graphlib",
762
-      licenses = ["notice"],  # MIT
763
-      sha256_urls = {
764
-          "772045d412b1513b549be991c2e1846c38019429d43974efcae943fbe83489bf": [
765
-              "http://mirror.bazel.build/raw.githubusercontent.com/cpettitt/graphlib/v1.0.7/dist/graphlib.core.js",
766
-              "https://raw.githubusercontent.com/cpettitt/graphlib/v1.0.7/dist/graphlib.core.js",
767
-          ],
768
-      },
769
+      path = "tensorflow_third_party/io_github_cpettitt_graphlib"
770
   )
771
 
772
-  filegroup_external(
773
+  native.local_repository(
774
       name = "io_github_waylonflinn_weblas",
775
-      # no @license header
776
-      licenses = ["notice"],  # MIT
777
-      sha256_urls = {
778
-          "f138fce57f673ca8a633f4aee5ae5b6fcb6ad0de59069a42a74e996fd04d8fcc": [
779
-              "http://mirror.bazel.build/raw.githubusercontent.com/waylonflinn/weblas/v0.9.0/dist/weblas.js",
780
-              "https://raw.githubusercontent.com/waylonflinn/weblas/v0.9.0/dist/weblas.js",
781
-          ],
782
-      },
783
+      path = "tensorflow_third_party/io_github_waylonflinn_weblas"
784
   )
785
 
786
-  filegroup_external(
787
+  native.local_repository(
788
       name = "org_d3js",
789
-      # no @license header
790
-      licenses = ["notice"],  # BSD-3-Clause
791
-      sha256_urls = {
792
-          "bc1e38838f5c5c8e040132d41efee6bfddbef728210bd566479dc1694af1d3f5": [
793
-              "http://mirror.bazel.build/raw.githubusercontent.com/d3/d3/v3.5.15/d3.js",
794
-              "https://raw.githubusercontent.com/d3/d3/v3.5.15/d3.js",
795
-          ],
796
-      },
797
+      path = "tensorflow_third_party/org_d3js"
798
   )
799
 
800
-  # TODO: Delete previous rule and rename this one org_d3js
801
-  filegroup_external(
802
+  native.local_repository(
803
       name = "org_d3js_v4",
804
-      # no @license header
805
-      licenses = ["notice"],  # BSD-3-Clause
806
-      sha256_urls_extract = {
807
-          "b5fac5b296bc196e6aa7b59f9e33986fc44d23d59a0e211705187be9e35b943d": [
808
-              "http://mirror.bazel.build/github.com/d3/d3/releases/download/v4.8.0/d3.zip",
809
-              "https://github.com/d3/d3/releases/download/v4.8.0/d3.zip",
810
-          ],
811
-      },
812
-      # TODO(jart): Use srcs=["d3.js"] instead of this once supported.
813
-      generated_rule_name = "all_files",
814
-      extra_build_file_content = "\n".join([
815
-          "filegroup(",
816
-          "    name = \"org_d3js_v4\",",
817
-          "    srcs = [\"d3.js\"],",
818
-          ")",
819
-      ]),
820
+      path = "tensorflow_third_party/org_d3js_v4"
821
   )
822
 
823
-  filegroup_external(
824
+  native.local_repository(
825
       name = "org_definitelytyped",
826
-      licenses = ["notice"],  # MIT
827
-      sha256_urls = {
828
-          "b7da645f6e5555feb7aeede73775da0023ce2257df9c8e76c9159266035a9c0d": [
829
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/ebc69904eb78f94030d5d517b42db20867f679c0/chai/chai.d.ts",
830
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/ebc69904eb78f94030d5d517b42db20867f679c0/chai/chai.d.ts",
831
-          ],
832
-          "177293828c7a206bf2a7f725753d51396d38668311aa37c96445f91bbf8128a7": [
833
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/6e2f2280ef16ef277049d0ce8583af167d586c59/d3/d3.d.ts",  # v3
834
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/6e2f2280ef16ef277049d0ce8583af167d586c59/d3/d3.d.ts",  # v3
835
-          ],
836
-          "e4cd3d5de0eb3bc7b1063b50d336764a0ac82a658b39b5cf90511f489ffdee60": [
837
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/efd40e67ff323f7147651bdbef03c03ead7b1675/lodash/lodash.d.ts",
838
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/efd40e67ff323f7147651bdbef03c03ead7b1675/lodash/lodash.d.ts",
839
-          ],
840
-          "695a03dd2ccb238161d97160b239ab841562710e5c4e42886aefd4ace2ce152e": [
841
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/ebc69904eb78f94030d5d517b42db20867f679c0/mocha/mocha.d.ts",
842
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/ebc69904eb78f94030d5d517b42db20867f679c0/mocha/mocha.d.ts",
843
-          ],
844
-          "513ccd9ee1c708881120eeacd56788fc3b3da8e5c6172b20324cebbe858803fe": [
845
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/708609e0764daeb5eb64104af7aca50c520c4e6e/sinon/sinon.d.ts",
846
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/708609e0764daeb5eb64104af7aca50c520c4e6e/sinon/sinon.d.ts",
847
-          ],
848
-          "44eba36339bd1c0792072b7b204ee926fe5ffe1e9e2da916e67ac55548e3668a": [
849
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/a872802c0c84ba98ff207d5e673a1fa867c67fd6/polymer/polymer.d.ts",
850
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/a872802c0c84ba98ff207d5e673a1fa867c67fd6/polymer/polymer.d.ts",
851
-          ],
852
-          "9453c3e6bae824e90758c3b38975c1ed77e6abd79bf513bcb08368fcdb14898e": [
853
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/f5407eba29c04fb8387c86df27512bd055b195d2/threejs/three.d.ts",
854
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/f5407eba29c04fb8387c86df27512bd055b195d2/threejs/three.d.ts",
855
-          ],
856
-          "691756a6eb455f340c9e834de0d49fff269e7b8c1799c2454465dcd6a4435b80": [
857
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/46719185c564694c5583c4b7ad94dbb786ecad46/webcomponents.js/webcomponents.js.d.ts",
858
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/46719185c564694c5583c4b7ad94dbb786ecad46/webcomponents.js/webcomponents.js.d.ts",
859
-          ],
860
-      },
861
+      path = "tensorflow_third_party/org_definitelytyped"
862
   )
863
 
864
-  filegroup_external(
865
+  native.local_repository(
866
       name = "org_definitelytyped_types_d3_array",
867
-      licenses = ["notice"],  # MIT
868
-      sha256_urls = {
869
-          "61e7abb7b1f01fbcb0cab8cf39003392f422566209edd681fbd070eaa84ca000": [
870
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-array/index.d.ts",
871
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-array/index.d.ts",
872
-          ],
873
-      },
874
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_array"
875
   )
876
 
877
-  filegroup_external(
878
+  native.local_repository(
879
       name = "org_definitelytyped_types_d3_axis",
880
-      licenses = ["notice"],  # MIT
881
-      sha256_urls = {
882
-          "95f75c8dcc89850b2e72581d96a7b5f46ea4ac852f828893f141f14a597421f9": [
883
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-axis/index.d.ts",
884
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-axis/index.d.ts",
885
-          ],
886
-      },
887
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_axis"
888
   )
889
 
890
-  filegroup_external(
891
+  native.local_repository(
892
       name = "org_definitelytyped_types_d3_brush",
893
-      licenses = ["notice"],  # MIT
894
-      sha256_urls = {
895
-          "a2738e693ce8a8640c2d29001e77582c9c361fd23bda44db471629866b60ada7": [
896
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-brush/index.d.ts",
897
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-brush/index.d.ts",
898
-          ],
899
-      },
900
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_brush"
901
   )
902
 
903
-  filegroup_external(
904
+  native.local_repository(
905
       name = "org_definitelytyped_types_d3_chord",
906
-      licenses = ["notice"],  # MIT
907
-      sha256_urls = {
908
-          "c54d24756eb6d744b31e538ad9bab3a75f6d54e2288b29cc72338d4a057d3e83": [
909
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-chord/index.d.ts",
910
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-chord/index.d.ts",
911
-          ],
912
-      },
913
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_chord"
914
   )
915
 
916
-  filegroup_external(
917
+  native.local_repository(
918
       name = "org_definitelytyped_types_d3_collection",
919
-      licenses = ["notice"],  # MIT
920
-      sha256_urls = {
921
-          "f987667167b1d2970911247e325eb1c37ca0823646f81ccec837ae59039822f7": [
922
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-collection/index.d.ts",
923
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-collection/index.d.ts",
924
-          ],
925
-      },
926
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_collection"
927
   )
928
 
929
-  filegroup_external(
930
+  native.local_repository(
931
       name = "org_definitelytyped_types_d3_color",
932
-      licenses = ["notice"],  # MIT
933
-      sha256_urls = {
934
-          "9580c81f38ddcce7be0ac9bd3d0d083adebc34e17441709f90b9e4dcd1c19a56": [
935
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-color/index.d.ts",
936
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-color/index.d.ts",
937
-          ],
938
-      },
939
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_color"
940
   )
941
 
942
-  filegroup_external(
943
+  native.local_repository(
944
       name = "org_definitelytyped_types_d3_dispatch",
945
-      licenses = ["notice"],  # MIT
946
-      sha256_urls = {
947
-          "169f80b4cceca8e2e9ed384d81a5db0624cc01a26451dfb5a7e0cec6ea9cfb06": [
948
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-dispatch/index.d.ts",
949
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-dispatch/index.d.ts",
950
-          ],
951
-      },
952
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_dispatch"
953
   )
954
 
955
-  filegroup_external(
956
+  native.local_repository(
957
       name = "org_definitelytyped_types_d3_drag",
958
-      licenses = ["notice"],  # MIT
959
-      sha256_urls = {
960
-          "08d35d139dde58c2722be98d718d01204fd6167d310f09b379e832f3c741489d": [
961
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-drag/index.d.ts",
962
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-drag/index.d.ts",
963
-          ],
964
-      },
965
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_drag"
966
   )
967
 
968
-  filegroup_external(
969
+  native.local_repository(
970
       name = "org_definitelytyped_types_d3_dsv",
971
-      licenses = ["notice"],  # MIT
972
-      sha256_urls = {
973
-          "62594d00cf9e4bb895339c8e56f64330e202a5eb2a0fa580a1f6e6336f2c93ce": [
974
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-dsv/index.d.ts",
975
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-dsv/index.d.ts",
976
-          ],
977
-      },
978
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_dsv"
979
   )
980
 
981
-  filegroup_external(
982
+  native.local_repository(
983
       name = "org_definitelytyped_types_d3_ease",
984
-      licenses = ["notice"],  # MIT
985
-      sha256_urls = {
986
-          "d1cf8f99b7bf758c2ba3c0a4ce553e151d4d9b4cf45a6e8bd0edec7ce90f725b": [
987
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-ease/index.d.ts",
988
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-ease/index.d.ts",
989
-          ],
990
-      },
991
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_ease"
992
   )
993
 
994
-  filegroup_external(
995
+  native.local_repository(
996
       name = "org_definitelytyped_types_d3_force",
997
-      licenses = ["notice"],  # MIT
998
-      sha256_urls = {
999
-          "288421e2008668d2076a4684657dd3d29b992832ef02c552981eb94a91042553": [
1000
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-force/index.d.ts",
1001
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-force/index.d.ts",
1002
-          ],
1003
-      },
1004
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_force"
1005
   )
1006
 
1007
-  filegroup_external(
1008
+  native.local_repository(
1009
       name = "org_definitelytyped_types_d3_format",
1010
-      licenses = ["notice"],  # MIT
1011
-      sha256_urls = {
1012
-          "b42cb17e580c1fd0b64d478f7bd80ca806efaefda24426a833cf1f30a7275bca": [
1013
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-format/index.d.ts",
1014
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-format/index.d.ts",
1015
-          ],
1016
-      },
1017
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_format"
1018
   )
1019
 
1020
-  filegroup_external(
1021
+  native.local_repository(
1022
       name = "org_definitelytyped_types_d3_hierarchy",
1023
-      licenses = ["notice"],  # MIT
1024
-      sha256_urls = {
1025
-          "a5683f5835d8716c6b89c075235078438cfab5897023ed720bfa492e244e969e": [
1026
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-hierarchy/index.d.ts",
1027
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-hierarchy/index.d.ts",
1028
-          ],
1029
-      },
1030
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_hierarchy"
1031
   )
1032
 
1033
-  filegroup_external(
1034
+  native.local_repository(
1035
       name = "org_definitelytyped_types_d3_interpolate",
1036
-      licenses = ["notice"],  # MIT
1037
-      sha256_urls = {
1038
-          "590a71b741323ac3139b333ec8b743e24717fdd5b32bcff48ee521162a9dfe1c": [
1039
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-interpolate/index.d.ts",
1040
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-interpolate/index.d.ts",
1041
-          ],
1042
-      },
1043
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_interpolate"
1044
   )
1045
 
1046
-  filegroup_external(
1047
+  native.local_repository(
1048
       name = "org_definitelytyped_types_d3_path",
1049
-      licenses = ["notice"],  # MIT
1050
-      sha256_urls = {
1051
-          "96f35ba041bcaa265e2b373ee675177410d44d31c980e4f7fbeefd4bcba15b00": [
1052
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-path/index.d.ts",
1053
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-path/index.d.ts",
1054
-          ],
1055
-      },
1056
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_path"
1057
   )
1058
 
1059
-  filegroup_external(
1060
+  native.local_repository(
1061
       name = "org_definitelytyped_types_d3_polygon",
1062
-      licenses = ["notice"],  # MIT
1063
-      sha256_urls = {
1064
-          "ce453451e8105cac6a4f4a4263ca2142ebb4bf442e342f470a81da691f220fcb": [
1065
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-polygon/index.d.ts",
1066
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-polygon/index.d.ts",
1067
-          ],
1068
-      },
1069
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_polygon"
1070
   )
1071
 
1072
-  filegroup_external(
1073
+  native.local_repository(
1074
       name = "org_definitelytyped_types_d3_quadtree",
1075
-      licenses = ["notice"],  # MIT
1076
-      sha256_urls = {
1077
-          "238e278f1be5d6985a19800800cffee80f81199f71d848e3bbc288d1791a6f90": [
1078
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-quadtree/index.d.ts",
1079
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-quadtree/index.d.ts",
1080
-          ],
1081
-      },
1082
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_quadtree"
1083
   )
1084
 
1085
-  filegroup_external(
1086
+  native.local_repository(
1087
       name = "org_definitelytyped_types_d3_queue",
1088
-      licenses = ["notice"],  # MIT
1089
-      sha256_urls = {
1090
-          "e6ae19aad83495475653578de64fb9d6bf9764eda6c84d70f7935ec84bcc482e": [
1091
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-queue/index.d.ts",
1092
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-queue/index.d.ts",
1093
-          ],
1094
-      },
1095
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_queue"
1096
   )
1097
 
1098
-  filegroup_external(
1099
+  native.local_repository(
1100
       name = "org_definitelytyped_types_d3_random",
1101
-      licenses = ["notice"],  # MIT
1102
-      sha256_urls = {
1103
-          "d31b92ed86c23ec0a4776f99fa81ff033c95b96c8304d8aa9baf3b94af779aa8": [
1104
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-random/index.d.ts",
1105
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-random/index.d.ts",
1106
-          ],
1107
-      },
1108
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_random"
1109
   )
1110
 
1111
-  filegroup_external(
1112
+  native.local_repository(
1113
       name = "org_definitelytyped_types_d3_request",
1114
-      licenses = ["notice"],  # MIT
1115
-      sha256_urls = {
1116
-          "44bb7b07d977028e6567540a3303b06fc9b33fb0960bc75c520e0733c840d89f": [
1117
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-request/index.d.ts",
1118
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-request/index.d.ts",
1119
-          ],
1120
-      },
1121
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_request"
1122
   )
1123
 
1124
-  filegroup_external(
1125
+  native.local_repository(
1126
       name = "org_definitelytyped_types_d3_scale",
1127
-      licenses = ["notice"],  # MIT
1128
-      sha256_urls = {
1129
-          "02ce7c644ba34bd1abb84da2e832f248b048b6a23812be4365bd837f186c9f1f": [
1130
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-scale/index.d.ts",
1131
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-scale/index.d.ts",
1132
-          ],
1133
-      },
1134
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_scale"
1135
   )
1136
 
1137
-  filegroup_external(
1138
+  native.local_repository(
1139
       name = "org_definitelytyped_types_d3_selection",
1140
-      licenses = ["notice"],  # MIT
1141
-      sha256_urls = {
1142
-          "699043ddb28dfa5e46d87bc6a24cfc6d604237f298259d3fb3c7066e05e8c86e": [
1143
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-selection/index.d.ts",
1144
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-selection/index.d.ts",
1145
-          ],
1146
-      },
1147
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_selection"
1148
   )
1149
 
1150
-  filegroup_external(
1151
+  native.local_repository(
1152
       name = "org_definitelytyped_types_d3_shape",
1153
-      licenses = ["notice"],  # MIT
1154
-      sha256_urls = {
1155
-          "62668a7aaaf6232762b544f9f89c0f557ca7cfb0cd343a358dda7ecbe26f5739": [
1156
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-shape/index.d.ts",
1157
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-shape/index.d.ts",
1158
-          ],
1159
-      },
1160
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_shape"
1161
   )
1162
 
1163
-  filegroup_external(
1164
+  native.local_repository(
1165
       name = "org_definitelytyped_types_d3_time",
1166
-      licenses = ["notice"],  # MIT
1167
-      sha256_urls = {
1168
-          "0502490ce682fd9265fb1d5d693ce6cd82e3b05e5f5ee3433731266ecb03d5fc": [
1169
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-time/index.d.ts",
1170
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-time/index.d.ts",
1171
-          ],
1172
-      },
1173
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_time"
1174
   )
1175
 
1176
-  filegroup_external(
1177
+  native.local_repository(
1178
       name = "org_definitelytyped_types_d3_timer",
1179
-      licenses = ["notice"],  # MIT
1180
-      sha256_urls = {
1181
-          "6f191f9aea704aa64b1defa40dfdff1447a6e6bb815feff1660f894500a9c94d": [
1182
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-timer/index.d.ts",
1183
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-timer/index.d.ts",
1184
-          ],
1185
-      },
1186
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_timer"
1187
   )
1188
 
1189
-  filegroup_external(
1190
+  native.local_repository(
1191
       name = "org_definitelytyped_types_d3_transition",
1192
-      licenses = ["notice"],  # MIT
1193
-      sha256_urls = {
1194
-          "a0a7c0c9bfb5c7d6d9d22a8d16b4484b66d13f2ed226954037546cb3da4098ba": [
1195
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-transition/index.d.ts",
1196
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-transition/index.d.ts",
1197
-          ],
1198
-      },
1199
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_transition"
1200
   )
1201
 
1202
-  filegroup_external(
1203
+  native.local_repository(
1204
       name = "org_definitelytyped_types_d3_voronoi",
1205
-      licenses = ["notice"],  # MIT
1206
-      sha256_urls = {
1207
-          "c6bd5f229f915151d0ef678fe50b1aa6a62334ea0a8c6fc0effbac9f7032efc7": [
1208
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-voronoi/index.d.ts",
1209
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-voronoi/index.d.ts",
1210
-          ],
1211
-      },
1212
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_voronoi"
1213
   )
1214
 
1215
-  filegroup_external(
1216
+  native.local_repository(
1217
       name = "org_definitelytyped_types_d3_zoom",
1218
-      licenses = ["notice"],  # MIT
1219
-      sha256_urls = {
1220
-          "a25dc17fbd304cf7a0e5e7bbb8339c930d464eb40c4d6e5f839ce9c0191f4110": [
1221
-              "http://mirror.bazel.build/raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-zoom/index.d.ts",
1222
-              "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/1550dfd1b8e38d9bf104b3fd16ea9bf98a2b358e/types/d3-zoom/index.d.ts",
1223
-          ],
1224
-      },
1225
+      path = "tensorflow_third_party/org_definitelytyped_types_d3_zoom"
1226
   )
1227
 
1228
-  filegroup_external(
1229
+  native.local_repository(
1230
       name = "org_threejs",
1231
-      # no @license header
1232
-      licenses = ["notice"],  # MIT
1233
-      sha256_urls = {
1234
-          "7aff264bd84c90bed3c72a4dc31db8c19151853c6df6980f52b01d3e9872c82d": [
1235
-              "http://mirror.bazel.build/raw.githubusercontent.com/mrdoob/three.js/ad419d40bdaab80abbb34b8f359b4ee840033a02/build/three.js",
1236
-              "https://raw.githubusercontent.com/mrdoob/three.js/ad419d40bdaab80abbb34b8f359b4ee840033a02/build/three.js",
1237
-          ],
1238
-          "0e98ded15bb7fe398a655667e76b39909d36c0973a8950d01c62f65f93161c27": [
1239
-              "http://mirror.bazel.build/raw.githubusercontent.com/mrdoob/three.js/ad419d40bdaab80abbb34b8f359b4ee840033a02/examples/js/controls/OrbitControls.js",
1240
-              "https://raw.githubusercontent.com/mrdoob/three.js/ad419d40bdaab80abbb34b8f359b4ee840033a02/examples/js/controls/OrbitControls.js",
1241
-          ],
1242
-      },
1243
+      path = "tensorflow_third_party/org_threejs"
1244
   )
1245
 
1246
-  ##############################################################################
1247
-  # TensorBoard Polymer Dependencies
1248
-
1249
-  web_library_external(
1250
+  native.local_repository(
1251
       name = "org_polymer_font_roboto",
1252
-      licenses = ["notice"],  # BSD-3-Clause
1253
-      sha256 = "fae51429b56a4a4c15f1f0c23b733c7095940cc9c04c275fa7adb3bf055b23b3",
1254
-      urls = [
1255
-          "http://mirror.bazel.build/github.com/PolymerElements/font-roboto/archive/v1.0.1.tar.gz",
1256
-          "https://github.com/PolymerElements/font-roboto/archive/v1.0.1.tar.gz",
1257
-      ],
1258
-      strip_prefix = "font-roboto-1.0.1",
1259
-      path = "/font-roboto",
1260
-      srcs = ["roboto.html"],
1261
+      path = "tensorflow_third_party/org_polymer_font_roboto"
1262
   )
1263
 
1264
-  web_library_external(
1265
+  native.local_repository(
1266
       name = "org_polymer_hydrolysis",
1267
-      licenses = ["notice"],  # BSD-3-Clause
1268
-      sha256 = "703b50f6b00f9e0546b5a3451da57bb20f77a166e27e4967923b9e835bab9b80",
1269
-      urls = [
1270
-          "http://mirror.bazel.build/github.com/Polymer/polymer-analyzer/archive/v1.19.3.tar.gz",
1271
-          "https://github.com/Polymer/polymer-analyzer/archive/v1.19.3.tar.gz",
1272
-      ],
1273
-      strip_prefix = "polymer-analyzer-1.19.3",
1274
-      path = "/hydrolysis",
1275
-      srcs = [
1276
-          "hydrolysis-analyzer.html",
1277
-          "hydrolysis.html",
1278
-          "hydrolysis.js",
1279
-      ],
1280
-      deps = ["@org_polymer"],
1281
+      path = "tensorflow_third_party/org_polymer_hydrolysis"
1282
   )
1283
 
1284
-  web_library_external(
1285
+  native.local_repository(
1286
       name = "org_polymer_iron_a11y_announcer",
1287
-      licenses = ["notice"],  # BSD-3-Clause
1288
-      sha256 = "6bce143db7a374a68535ec8b861a5f30e81f2f1e4ee36a55bda2a891f6fd2818",
1289
-      urls = [
1290
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-a11y-announcer/archive/v1.0.5.tar.gz",
1291
-          "https://github.com/PolymerElements/iron-a11y-announcer/archive/v1.0.5.tar.gz",
1292
-      ],
1293
-      strip_prefix = "iron-a11y-announcer-1.0.5",
1294
-      path = "/iron-a11y-announcer",
1295
-      srcs = ["iron-a11y-announcer.html"],
1296
-      deps = ["@org_polymer"],
1297
+      path = "tensorflow_third_party/org_polymer_iron_a11y_announcer"
1298
   )
1299
 
1300
-  web_library_external(
1301
+  native.local_repository(
1302
       name = "org_polymer_iron_a11y_keys_behavior",
1303
-      licenses = ["notice"],  # BSD-3-Clause
1304
-      sha256 = "6823efc47a83208fd51d39c5a1d3eb0c0bebc705df1ce01310509da22a13ebd2",
1305
-      urls = [
1306
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-a11y-keys-behavior/archive/v1.1.8.tar.gz",
1307
-          "https://github.com/PolymerElements/iron-a11y-keys-behavior/archive/v1.1.8.tar.gz",
1308
-      ],
1309
-      strip_prefix = "iron-a11y-keys-behavior-1.1.8",
1310
-      path = "/iron-a11y-keys-behavior",
1311
-      srcs = ["iron-a11y-keys-behavior.html"],
1312
-      deps = ["@org_polymer"],
1313
+      path = "tensorflow_third_party/org_polymer_iron_a11y_keys_behavior"
1314
   )
1315
 
1316
-  web_library_external(
1317
+  native.local_repository(
1318
       name = "org_polymer_iron_ajax",
1319
-      licenses = ["notice"],  # BSD-3-Clause
1320
-      sha256 = "9162d8af4611e911ac3ebbfc08bb7038ac04f6e79a9287b1476fe36ad6770bc5",
1321
-      urls = [
1322
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-ajax/archive/v1.2.0.tar.gz",
1323
-          "https://github.com/PolymerElements/iron-ajax/archive/v1.2.0.tar.gz",
1324
-      ],
1325
-      strip_prefix = "iron-ajax-1.2.0",
1326
-      path = "/iron-ajax",
1327
-      srcs = [
1328
-          "iron-ajax.html",
1329
-          "iron-request.html",
1330
-      ],
1331
-      deps = [
1332
-          "@org_polymer",
1333
-          "@org_polymer_promise_polyfill",
1334
-      ],
1335
+      path = "tensorflow_third_party/org_polymer_iron_ajax"
1336
   )
1337
 
1338
-  web_library_external(
1339
+  native.local_repository(
1340
       name = "org_polymer_iron_autogrow_textarea",
1341
-      licenses = ["notice"],  # BSD-3-Clause
1342
-      sha256 = "50bbb901d2c8f87462e3552e3d671a552faa12c37c485e548d7a234ebffbc427",
1343
-      urls = [
1344
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-autogrow-textarea/archive/v1.0.12.tar.gz",
1345
-          "https://github.com/PolymerElements/iron-autogrow-textarea/archive/v1.0.12.tar.gz",
1346
-      ],
1347
-      strip_prefix = "iron-autogrow-textarea-1.0.12",
1348
-      path = "/iron-autogrow-textarea",
1349
-      srcs = ["iron-autogrow-textarea.html"],
1350
-      deps = [
1351
-          "@org_polymer",
1352
-          "@org_polymer_iron_behaviors",
1353
-          "@org_polymer_iron_flex_layout",
1354
-          "@org_polymer_iron_form_element_behavior",
1355
-          "@org_polymer_iron_validatable_behavior",
1356
-      ],
1357
+      path = "tensorflow_third_party/org_polymer_iron_autogrow_textarea"
1358
   )
1359
 
1360
-  web_library_external(
1361
+  native.local_repository(
1362
       name = "org_polymer_iron_behaviors",
1363
-      licenses = ["notice"],  # BSD-3-Clause
1364
-      sha256 = "a1e8d4b7a13f3d36beba9c2a6b186ed33a53e6af2e79f98c1fcc7e85e7b53f89",
1365
-      urls = [
1366
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-behaviors/archive/v1.0.17.tar.gz",
1367
-          "https://github.com/PolymerElements/iron-behaviors/archive/v1.0.17.tar.gz",
1368
-      ],
1369
-      strip_prefix = "iron-behaviors-1.0.17",
1370
-      path = "/iron-behaviors",
1371
-      srcs = [
1372
-          "iron-button-state.html",
1373
-          "iron-control-state.html",
1374
-      ],
1375
-      deps = [
1376
-          "@org_polymer",
1377
-          "@org_polymer_iron_a11y_keys_behavior",
1378
-      ],
1379
+      path = "tensorflow_third_party/org_polymer_iron_behaviors"
1380
   )
1381
 
1382
-  web_library_external(
1383
+  native.local_repository(
1384
       name = "org_polymer_iron_checked_element_behavior",
1385
-      licenses = ["notice"],  # BSD-3-Clause
1386
-      sha256 = "539a0e1c4df0bc702d3bd342388e4e56c77ec4c2066cce69e41426a69f92e8bd",
1387
-      urls = [
1388
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-checked-element-behavior/archive/v1.0.4.tar.gz",
1389
-          "https://github.com/PolymerElements/iron-checked-element-behavior/archive/v1.0.4.tar.gz",
1390
-      ],
1391
-      strip_prefix = "iron-checked-element-behavior-1.0.4",
1392
-      path = "/iron-checked-element-behavior",
1393
-      srcs = ["iron-checked-element-behavior.html"],
1394
-      deps = [
1395
-          "@org_polymer",
1396
-          "@org_polymer_iron_form_element_behavior",
1397
-          "@org_polymer_iron_validatable_behavior",
1398
-      ],
1399
+      path = "tensorflow_third_party/org_polymer_iron_checked_element_behavior"
1400
   )
1401
 
1402
-  web_library_external(
1403
+  native.local_repository(
1404
       name = "org_polymer_iron_component_page",
1405
-      licenses = ["notice"],  # BSD-3-Clause
1406
-      sha256 = "3636e8b9a1f229fc33b5aad3933bd02a9825f66e679a0be31855d7c8245c4b4b",
1407
-      urls = [
1408
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-component-page/archive/v1.1.4.tar.gz",
1409
-          "https://github.com/PolymerElements/iron-component-page/archive/v1.1.4.tar.gz",
1410
-      ],
1411
-      strip_prefix = "iron-component-page-1.1.4",
1412
-      path = "/iron-component-page",
1413
-      srcs = ["iron-component-page.html"],
1414
-      deps = [
1415
-          "@org_polymer",
1416
-          "@org_polymer_hydrolysis",
1417
-          "@org_polymer_iron_ajax",
1418
-          "@org_polymer_iron_doc_viewer",
1419
-          "@org_polymer_iron_flex_layout",
1420
-          "@org_polymer_iron_icons",
1421
-          "@org_polymer_iron_selector",
1422
-          "@org_polymer_paper_header_panel",
1423
-          "@org_polymer_paper_styles",
1424
-          "@org_polymer_paper_toolbar",
1425
-      ],
1426
+      path = "tensorflow_third_party/org_polymer_iron_component_page"
1427
   )
1428
 
1429
-  web_library_external(
1430
+  native.local_repository(
1431
       name = "org_polymer_iron_collapse",
1432
-      licenses = ["notice"],  # BSD-3-Clause
1433
-      sha256 = "275808994a609a2f9923e2dd2db1957945ab141ba840eadc33f19e1f406d600e",
1434
-      urls = [
1435
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-collapse/archive/v1.0.8.tar.gz",
1436
-          "https://github.com/PolymerElements/iron-collapse/archive/v1.0.8.tar.gz",
1437
-      ],
1438
-      strip_prefix = "iron-collapse-1.0.8",
1439
-      path = "/iron-collapse",
1440
-      srcs = ["iron-collapse.html"],
1441
-      deps = [
1442
-          "@org_polymer",
1443
-          "@org_polymer_iron_resizable_behavior",
1444
-      ],
1445
+      path = "tensorflow_third_party/org_polymer_iron_collapse"
1446
   )
1447
 
1448
-  web_library_external(
1449
+  native.local_repository(
1450
       name = "org_polymer_iron_demo_helpers",
1451
-      licenses = ["notice"],  # BSD-3-Clause
1452
-      sha256 = "aa7458492a6ac3d1f6344640a4c2ab07bce64e7ad0422b83b5d665707598cce6",
1453
-      urls = [
1454
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-demo-helpers/archive/v1.1.0.tar.gz",
1455
-          "https://github.com/PolymerElements/iron-demo-helpers/archive/v1.1.0.tar.gz",
1456
-      ],
1457
-      strip_prefix = "iron-demo-helpers-1.1.0",
1458
-      path = "/iron-demo-helpers",
1459
-      srcs = [
1460
-          "demo-pages-shared-styles.html",
1461
-          "demo-snippet.html",
1462
-      ],
1463
-      deps = [
1464
-          "@org_polymer",
1465
-          "@org_polymer_iron_flex_layout",
1466
-          "@org_polymer_iron_icons",
1467
-          "@org_polymer_marked_element",
1468
-          "@org_polymer_paper_icon_button",
1469
-          "@org_polymer_paper_styles",
1470
-          "@org_polymer_prism_element",
1471
-      ],
1472
+      path = "tensorflow_third_party/org_polymer_iron_demo_helpers"
1473
   )
1474
 
1475
-  web_library_external(
1476
+  native.local_repository(
1477
       name = "org_polymer_iron_doc_viewer",
1478
-      licenses = ["notice"],  # BSD-3-Clause
1479
-      sha256 = "f0e9dfbbcd94d7e88ce82cb61e615406ace63c185fee9396f7f182206ca5cc9a",
1480
-      urls = [
1481
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-doc-viewer/archive/v1.0.12.tar.gz",
1482
-          "https://github.com/PolymerElements/iron-doc-viewer/archive/v1.0.12.tar.gz",
1483
-      ],
1484
-      strip_prefix = "iron-doc-viewer-1.0.12",
1485
-      path = "/iron-doc-viewer",
1486
-      srcs = [
1487
-          "iron-doc-property-styles.html",
1488
-          "iron-doc-property.html",
1489
-          "iron-doc-viewer-styles.html",
1490
-          "iron-doc-viewer.html",
1491
-      ],
1492
-      deps = [
1493
-          "@org_polymer",
1494
-          "@org_polymer_marked_element",
1495
-          "@org_polymer_paper_button",
1496
-          "@org_polymer_paper_styles",
1497
-          "@org_polymer_prism_element",
1498
-      ],
1499
+      path = "tensorflow_third_party/org_polymer_iron_doc_viewer"
1500
   )
1501
 
1502
-  web_library_external(
1503
+  native.local_repository(
1504
       name = "org_polymer_iron_dropdown",
1505
-      licenses = ["notice"],  # BSD-3-Clause
1506
-      sha256 = "f7e4a31d096d10d8af1920397695cb17f3eb1cbe5e5ff91a861dabfcc085f376",
1507
-      urls = [
1508
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-dropdown/archive/v1.4.0.tar.gz",
1509
-          "https://github.com/PolymerElements/iron-dropdown/archive/v1.4.0.tar.gz",
1510
-      ],
1511
-      strip_prefix = "iron-dropdown-1.4.0",
1512
-      path = "/iron-dropdown",
1513
-      srcs = [
1514
-          "iron-dropdown.html",
1515
-          "iron-dropdown-scroll-manager.html",
1516
-      ],
1517
-      deps = [
1518
-          "@org_polymer",
1519
-          "@org_polymer_iron_a11y_keys_behavior",
1520
-          "@org_polymer_iron_behaviors",
1521
-          "@org_polymer_iron_overlay_behavior",
1522
-          "@org_polymer_iron_resizable_behavior",
1523
-          "@org_polymer_neon_animation",
1524
-      ],
1525
+      path = "tensorflow_third_party/org_polymer_iron_dropdown"
1526
   )
1527
 
1528
-  web_library_external(
1529
+  native.local_repository(
1530
       name = "org_polymer_iron_fit_behavior",
1531
-      licenses = ["notice"],  # BSD-3-Clause
1532
-      sha256 = "10132a2ea309a37c4c07b8fead71f64abc588ee6107931e34680f5f36dd8291e",
1533
-      urls = [
1534
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-fit-behavior/archive/v1.2.5.tar.gz",
1535
-          "https://github.com/PolymerElements/iron-fit-behavior/archive/v1.2.5.tar.gz",
1536
-      ],
1537
-      strip_prefix = "iron-fit-behavior-1.2.5",
1538
-      path = "/iron-fit-behavior",
1539
-      srcs = ["iron-fit-behavior.html"],
1540
-      deps = ["@org_polymer"],
1541
+      path = "tensorflow_third_party/org_polymer_iron_fit_behavior"
1542
   )
1543
 
1544
-  web_library_external(
1545
+  native.local_repository(
1546
       name = "org_polymer_iron_flex_layout",
1547
-      licenses = ["notice"],  # BSD-3-Clause
1548
-      sha256 = "79287f6ca1c2d4e003f68b88fe19d03a1b6a0011e2b4cae579fe4d1474163a2e",
1549
-      urls = [
1550
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-flex-layout/archive/v1.3.0.tar.gz",
1551
-          "https://github.com/PolymerElements/iron-flex-layout/archive/v1.3.0.tar.gz",
1552
-      ],
1553
-      strip_prefix = "iron-flex-layout-1.3.0",
1554
-      path = "/iron-flex-layout",
1555
-      srcs = [
1556
-          "classes/iron-flex-layout.html",
1557
-          "classes/iron-shadow-flex-layout.html",
1558
-          "iron-flex-layout.html",
1559
-          "iron-flex-layout-classes.html",
1560
-      ],
1561
-      deps = ["@org_polymer"],
1562
+      path = "tensorflow_third_party/org_polymer_iron_flex_layout"
1563
   )
1564
 
1565
-  web_library_external(
1566
+  native.local_repository(
1567
       name = "org_polymer_iron_form_element_behavior",
1568
-      licenses = ["notice"],  # BSD-3-Clause
1569
-      sha256 = "1dd9371c638e5bc2ecba8a64074aa680dfb8712198e9612f9ed24d387efc8f26",
1570
-      urls = [
1571
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-form-element-behavior/archive/v1.0.6.tar.gz",
1572
-          "https://github.com/PolymerElements/iron-form-element-behavior/archive/v1.0.6.tar.gz",
1573
-      ],
1574
-      strip_prefix = "iron-form-element-behavior-1.0.6",
1575
-      path = "/iron-form-element-behavior",
1576
-      srcs = ["iron-form-element-behavior.html"],
1577
-      deps = ["@org_polymer"],
1578
+      path = "tensorflow_third_party/org_polymer_iron_form_element_behavior"
1579
   )
1580
 
1581
-  web_library_external(
1582
+  native.local_repository(
1583
       name = "org_polymer_iron_icon",
1584
-      licenses = ["notice"],  # BSD-3-Clause
1585
-      sha256 = "9ed58a69159a02c07a6050d242e6d4e585a29f3245b8c8c390cfd52ddb786dc4",
1586
-      urls = [
1587
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-icon/archive/v1.0.11.tar.gz",
1588
-          "https://github.com/PolymerElements/iron-icon/archive/v1.0.11.tar.gz",
1589
-      ],
1590
-      strip_prefix = "iron-icon-1.0.11",
1591
-      path = "/iron-icon",
1592
-      srcs = ["iron-icon.html"],
1593
-      deps = [
1594
-          "@org_polymer",
1595
-          "@org_polymer_iron_flex_layout",
1596
-          "@org_polymer_iron_meta",
1597
-      ],
1598
+      path = "tensorflow_third_party/org_polymer_iron_icon"
1599
   )
1600
 
1601
-  web_library_external(
1602
+  native.local_repository(
1603
       name = "org_polymer_iron_icons",
1604
-      licenses = ["notice"],  # BSD-3-Clause
1605
-      sha256 = "3b18542c147c7923dc3a36b1a51984a73255d610f297d43c9aaccc52859bd0d0",
1606
-      urls = [
1607
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-icons/archive/v1.1.3.tar.gz",
1608
-          "https://github.com/PolymerElements/iron-icons/archive/v1.1.3.tar.gz",
1609
-      ],
1610
-      strip_prefix = "iron-icons-1.1.3",
1611
-      path = "/iron-icons",
1612
-      srcs = [
1613
-          "av-icons.html",
1614
-          "communication-icons.html",
1615
-          "device-icons.html",
1616
-          "editor-icons.html",
1617
-          "hardware-icons.html",
1618
-          "image-icons.html",
1619
-          "iron-icons.html",
1620
-          "maps-icons.html",
1621
-          "notification-icons.html",
1622
-          "places-icons.html",
1623
-          "social-icons.html",
1624
-      ],
1625
-      deps = [
1626
-          "@org_polymer_iron_icon",
1627
-          "@org_polymer_iron_iconset_svg",
1628
-      ],
1629
+      path = "tensorflow_third_party/org_polymer_iron_icons"
1630
   )
1631
 
1632
-  web_library_external(
1633
+  native.local_repository(
1634
       name = "org_polymer_iron_iconset_svg",
1635
-      licenses = ["notice"],  # BSD-3-Clause
1636
-      sha256 = "7e3925b7e63a7d22524c4b43ce16ab80d06a576649644783643c11a003284368",
1637
-      urls = [
1638
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-iconset-svg/archive/v1.1.0.tar.gz",
1639
-          "https://github.com/PolymerElements/iron-iconset-svg/archive/v1.1.0.tar.gz",
1640
-      ],
1641
-      strip_prefix = "iron-iconset-svg-1.1.0",
1642
-      path = "/iron-iconset-svg",
1643
-      srcs = ["iron-iconset-svg.html"],
1644
-      deps = [
1645
-          "@org_polymer",
1646
-          "@org_polymer_iron_meta",
1647
-      ],
1648
+      path = "tensorflow_third_party/org_polymer_iron_iconset_svg"
1649
   )
1650
 
1651
-  web_library_external(
1652
+  native.local_repository(
1653
       name = "org_polymer_iron_input",
1654
-      licenses = ["notice"],  # BSD-3-Clause
1655
-      sha256 = "c505101ead08ab25526b1f49baecc8c28b4221b92a65e7334c783bdc81553c36",
1656
-      urls = [
1657
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-input/archive/1.0.10.tar.gz",
1658
-          "https://github.com/PolymerElements/iron-input/archive/1.0.10.tar.gz",
1659
-      ],
1660
-      strip_prefix = "iron-input-1.0.10",
1661
-      path = "/iron-input",
1662
-      srcs = ["iron-input.html"],
1663
-      deps = [
1664
-          "@org_polymer",
1665
-          "@org_polymer_iron_a11y_announcer",
1666
-          "@org_polymer_iron_validatable_behavior",
1667
-      ],
1668
+      path = "tensorflow_third_party/org_polymer_iron_input"
1669
   )
1670
 
1671
-  web_library_external(
1672
+  native.local_repository(
1673
       name = "org_polymer_iron_list",
1674
-      licenses = ["notice"],  # BSD-3-Clause
1675
-      sha256 = "72a6530b9f0ad5557f5d287845792a0ada74d8b159198e27f940e226313dc116",
1676
-      urls = [
1677
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-list/archive/v1.3.9.tar.gz",
1678
-          "https://github.com/PolymerElements/iron-list/archive/v1.3.9.tar.gz",
1679
-      ],
1680
-      strip_prefix = "iron-list-1.3.9",
1681
-      path = "/iron-list",
1682
-      srcs = ["iron-list.html"],
1683
-      deps = [
1684
-          "@org_polymer",
1685
-          "@org_polymer_iron_a11y_keys_behavior",
1686
-          "@org_polymer_iron_resizable_behavior",
1687
-          "@org_polymer_iron_scroll_target_behavior",
1688
-      ],
1689
+      path = "tensorflow_third_party/org_polymer_iron_list"
1690
   )
1691
 
1692
-  web_library_external(
1693
+  native.local_repository(
1694
       name = "org_polymer_iron_menu_behavior",
1695
-      licenses = ["notice"],  # BSD-3-Clause
1696
-      sha256 = "ad27889343bc9a709258b073f69abc028bb1ffd3fdb975cd2d3939f7f5d7bb6c",
1697
-      urls = [
1698
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-menu-behavior/archive/v1.1.10.tar.gz",
1699
-          "https://github.com/PolymerElements/iron-menu-behavior/archive/v1.1.10.tar.gz",
1700
-      ],
1701
-      strip_prefix = "iron-menu-behavior-1.1.10",
1702
-      path = "/iron-menu-behavior",
1703
-      srcs = [
1704
-          "iron-menu-behavior.html",
1705
-          "iron-menubar-behavior.html",
1706
-      ],
1707
-      deps = [
1708
-          "@org_polymer",
1709
-          "@org_polymer_iron_a11y_keys_behavior",
1710
-          "@org_polymer_iron_selector",
1711
-      ],
1712
+      path = "tensorflow_third_party/org_polymer_iron_menu_behavior"
1713
   )
1714
 
1715
-  web_library_external(
1716
+  native.local_repository(
1717
       name = "org_polymer_iron_meta",
1718
-      licenses = ["notice"],  # BSD-3-Clause
1719
-      sha256 = "fb05e6031bae6b4effe5f15d44b3f548d5807f9e3b3aa2442ba17cf4b8b84361",
1720
-      urls = [
1721
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-meta/archive/v1.1.1.tar.gz",
1722
-          "https://github.com/PolymerElements/iron-meta/archive/v1.1.1.tar.gz",
1723
-      ],
1724
-      strip_prefix = "iron-meta-1.1.1",
1725
-      path = "/iron-meta",
1726
-      srcs = ["iron-meta.html"],
1727
-      deps = ["@org_polymer"],
1728
+      path = "tensorflow_third_party/org_polymer_iron_meta"
1729
   )
1730
 
1731
-  web_library_external(
1732
+  native.local_repository(
1733
       name = "org_polymer_iron_overlay_behavior",
1734
-      licenses = ["notice"],  # BSD-3-Clause
1735
-      sha256 = "3df5b54ff2e0510c87a2aff8c9d730d3fe83d3d11277cc1a49fa29b549acb46c",
1736
-      urls = [
1737
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-overlay-behavior/archive/v1.10.1.tar.gz",
1738
-          "https://github.com/PolymerElements/iron-overlay-behavior/archive/v1.10.1.tar.gz",
1739
-      ],
1740
-      strip_prefix = "iron-overlay-behavior-1.10.1",
1741
-      path = "/iron-overlay-behavior",
1742
-      srcs = [
1743
-          "iron-focusables-helper.html",
1744
-          "iron-overlay-backdrop.html",
1745
-          "iron-overlay-behavior.html",
1746
-          "iron-overlay-manager.html",
1747
-      ],
1748
-      deps = [
1749
-          "@org_polymer",
1750
-          "@org_polymer_iron_a11y_keys_behavior",
1751
-          "@org_polymer_iron_fit_behavior",
1752
-          "@org_polymer_iron_resizable_behavior",
1753
-      ],
1754
+      path = "tensorflow_third_party/org_polymer_iron_overlay_behavior"
1755
   )
1756
 
1757
-  web_library_external(
1758
+  native.local_repository(
1759
       name = "org_polymer_iron_range_behavior",
1760
-      licenses = ["notice"],  # BSD-3-Clause
1761
-      sha256 = "b2f2b6d52284542330bd30b586e217926eb0adec5e13934a3cef557717c22dc2",
1762
-      urls = [
1763
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-range-behavior/archive/v1.0.4.tar.gz",
1764
-          "https://github.com/PolymerElements/iron-range-behavior/archive/v1.0.4.tar.gz",
1765
-      ],
1766
-      strip_prefix = "iron-range-behavior-1.0.4",
1767
-      path = "/iron-range-behavior",
1768
-      srcs = ["iron-range-behavior.html"],
1769
-      deps = ["@org_polymer"],
1770
+      path = "tensorflow_third_party/org_polymer_iron_range_behavior"
1771
   )
1772
 
1773
-  web_library_external(
1774
+  native.local_repository(
1775
       name = "org_polymer_iron_resizable_behavior",
1776
-      licenses = ["notice"],  # BSD-3-Clause
1777
-      sha256 = "a87a78ee9223c2f6afae7fc94a3ff91cbce6f7e2a7ed3f2979af7945c9281616",
1778
-      urls = [
1779
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-resizable-behavior/archive/v1.0.3.tar.gz",
1780
-          "https://github.com/PolymerElements/iron-resizable-behavior/archive/v1.0.3.tar.gz",
1781
-      ],
1782
-      strip_prefix = "iron-resizable-behavior-1.0.3",
1783
-      path = "/iron-resizable-behavior",
1784
-      srcs = ["iron-resizable-behavior.html"],
1785
-      deps = ["@org_polymer"],
1786
+      path = "tensorflow_third_party/org_polymer_iron_resizable_behavior"
1787
   )
1788
 
1789
-  web_library_external(
1790
+  native.local_repository(
1791
       name = "org_polymer_iron_scroll_target_behavior",
1792
-      licenses = ["notice"],  # BSD-3-Clause
1793
-      sha256 = "d0de0c804b1ec91d814754144afd9da1cdb082690de88bd5e47fd5f41990746f",
1794
-      urls = [
1795
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-scroll-target-behavior/archive/v1.0.3.tar.gz",
1796
-          "https://github.com/PolymerElements/iron-scroll-target-behavior/archive/v1.0.3.tar.gz",
1797
-      ],
1798
-      strip_prefix = "iron-scroll-target-behavior-1.0.3",
1799
-      path = "/iron-scroll-target-behavior",
1800
-      srcs = ["iron-scroll-target-behavior.html"],
1801
-      deps = ["@org_polymer"],
1802
+      path = "tensorflow_third_party/org_polymer_iron_scroll_target_behavior"
1803
   )
1804
 
1805
-  web_library_external(
1806
+  native.local_repository(
1807
       name = "org_polymer_iron_selector",
1808
-      licenses = ["notice"],  # BSD-3-Clause
1809
-      sha256 = "ba28a47443bad3b744611c9d7a79fb21dbdf2e35edc5ef8f812e2dcd72b16747",
1810
-      urls = [
1811
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-selector/archive/v1.5.2.tar.gz",
1812
-          "https://github.com/PolymerElements/iron-selector/archive/v1.5.2.tar.gz",
1813
-      ],
1814
-      strip_prefix = "iron-selector-1.5.2",
1815
-      path = "/iron-selector",
1816
-      srcs = [
1817
-          "iron-multi-selectable.html",
1818
-          "iron-selectable.html",
1819
-          "iron-selection.html",
1820
-          "iron-selector.html",
1821
-      ],
1822
-      deps = ["@org_polymer"],
1823
+      path = "tensorflow_third_party/org_polymer_iron_selector"
1824
   )
1825
 
1826
-  web_library_external(
1827
+  native.local_repository(
1828
       name = "org_polymer_iron_validatable_behavior",
1829
-      licenses = ["notice"],  # BSD-3-Clause
1830
-      sha256 = "aef4901e68043824f36104799269573dd345ffaac494186e466fdc79c06fdb63",
1831
-      urls = [
1832
-          "http://mirror.bazel.build/github.com/PolymerElements/iron-validatable-behavior/archive/v1.1.1.tar.gz",
1833
-          "https://github.com/PolymerElements/iron-validatable-behavior/archive/v1.1.1.tar.gz",
1834
-      ],
1835
-      strip_prefix = "iron-validatable-behavior-1.1.1",
1836
-      path = "/iron-validatable-behavior",
1837
-      srcs = ["iron-validatable-behavior.html"],
1838
-      deps = [
1839
-          "@org_polymer",
1840
-          "@org_polymer_iron_meta",
1841
-      ],
1842
+      path = "tensorflow_third_party/org_polymer_iron_validatable_behavior"
1843
   )
1844
 
1845
-  web_library_external(
1846
+  native.local_repository(
1847
       name = "org_polymer_marked",
1848
-      licenses = ["notice"],  # MIT
1849
-      sha256 = "93d30bd593736ca440938d77808b7ef5972da0f3fcfe4ae63ae7b4ce117da2cb",
1850
-      urls = [
1851
-          "http://mirror.bazel.build/github.com/chjj/marked/archive/v0.3.2.zip",
1852
-          "https://github.com/chjj/marked/archive/v0.3.2.zip",
1853
-      ],
1854
-      strip_prefix = "marked-0.3.2",
1855
-      path = "/marked",
1856
-      srcs = ["lib/marked.js"],
1857
+      path = "tensorflow_third_party/org_polymer_marked"
1858
   )
1859
 
1860
-  web_library_external(
1861
+  native.local_repository(
1862
       name = "org_polymer_marked_element",
1863
-      licenses = ["notice"],  # BSD-3-Clause
1864
-      sha256 = "7547616df95f8b903757e6afbabfcdba5322c2bcec3f17c726b8bba5adf4bc5f",
1865
-      urls = [
1866
-          "http://mirror.bazel.build/github.com/PolymerElements/marked-element/archive/v1.1.3.tar.gz",
1867
-          "https://github.com/PolymerElements/marked-element/archive/v1.1.3.tar.gz",
1868
-      ],
1869
-      strip_prefix = "marked-element-1.1.3",
1870
-      path = "/marked-element",
1871
-      srcs = [
1872
-          "marked-element.html",
1873
-          "marked-import.html",
1874
-      ],
1875
-      deps = [
1876
-          "@org_polymer",
1877
-          "@org_polymer_marked",
1878
-      ],
1879
+      path = "tensorflow_third_party/org_polymer_marked_element"
1880
   )
1881
 
1882
-  web_library_external(
1883
+  native.local_repository(
1884
       name = "org_polymer_neon_animation",
1885
-      licenses = ["notice"],  # BSD-3-Clause
1886
-      sha256 = "8800c314a76b2da190a2b203259c1091f6d38e0057ed37c2a3d0b734980fa9a5",
1887
-      urls = [
1888
-          "http://mirror.bazel.build/github.com/PolymerElements/neon-animation/archive/v1.2.2.tar.gz",
1889
-          "https://github.com/PolymerElements/neon-animation/archive/v1.2.2.tar.gz",
1890
-      ],
1891
-      strip_prefix = "neon-animation-1.2.2",
1892
-      path = "/neon-animation",
1893
-      srcs = [
1894
-          "animations/cascaded-animation.html",
1895
-          "animations/fade-in-animation.html",
1896
-          "animations/fade-out-animation.html",
1897
-          "animations/hero-animation.html",
1898
-          "animations/opaque-animation.html",
1899
-          "animations/reverse-ripple-animation.html",
1900
-          "animations/ripple-animation.html",
1901
-          "animations/scale-down-animation.html",
1902
-          "animations/scale-up-animation.html",
1903
-          "animations/slide-down-animation.html",
1904
-          "animations/slide-from-bottom-animation.html",
1905
-          "animations/slide-from-left-animation.html",
1906
-          "animations/slide-from-right-animation.html",
1907
-          "animations/slide-from-top-animation.html",
1908
-          "animations/slide-left-animation.html",
1909
-          "animations/slide-right-animation.html",
1910
-          "animations/slide-up-animation.html",
1911
-          "animations/transform-animation.html",
1912
-          "neon-animatable.html",
1913
-          "neon-animatable-behavior.html",
1914
-          "neon-animated-pages.html",
1915
-          "neon-animation.html",
1916
-          "neon-animation-behavior.html",
1917
-          "neon-animation-runner-behavior.html",
1918
-          "neon-animations.html",
1919
-          "neon-shared-element-animatable-behavior.html",
1920
-          "neon-shared-element-animation-behavior.html",
1921
-          "web-animations.html",
1922
-      ],
1923
-      deps = [
1924
-          "@org_polymer",
1925
-          "@org_polymer_iron_meta",
1926
-          "@org_polymer_iron_resizable_behavior",
1927
-          "@org_polymer_iron_selector",
1928
-          "@org_polymer_web_animations_js",
1929
-      ],
1930
+      path = "tensorflow_third_party/org_polymer_neon_animation"
1931
   )
1932
 
1933
-  web_library_external(
1934
+  native.local_repository(
1935
       name = "org_polymer_paper_behaviors",
1936
-      licenses = ["notice"],  # BSD-3-Clause
1937
-      sha256 = "7cfcb9082ef9909da262df6b5c120bc62dbeaff278cb563e8fc60465ddd387e5",
1938
-      urls = [
1939
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-behaviors/archive/v1.0.12.tar.gz",
1940
-          "https://github.com/PolymerElements/paper-behaviors/archive/v1.0.12.tar.gz",
1941
-      ],
1942
-      strip_prefix = "paper-behaviors-1.0.12",
1943
-      path = "/paper-behaviors",
1944
-      srcs = [
1945
-          "paper-button-behavior.html",
1946
-          "paper-checked-element-behavior.html",
1947
-          "paper-inky-focus-behavior.html",
1948
-          "paper-ripple-behavior.html",
1949
-      ],
1950
-      deps = [
1951
-          "@org_polymer",
1952
-          "@org_polymer_iron_behaviors",
1953
-          "@org_polymer_iron_checked_element_behavior",
1954
-          "@org_polymer_paper_ripple",
1955
-      ],
1956
+      path = "tensorflow_third_party/org_polymer_paper_behaviors"
1957
   )
1958
 
1959
-  web_library_external(
1960
+  native.local_repository(
1961
       name = "org_polymer_paper_button",
1962
-      licenses = ["notice"],  # BSD-3-Clause
1963
-      sha256 = "896c0a7e34bfcce63fc23c63e105ed9c4d62fa3a6385b7161e1e5cd4058820a6",
1964
-      urls = [
1965
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-button/archive/v1.0.11.tar.gz",
1966
-          "https://github.com/PolymerElements/paper-button/archive/v1.0.11.tar.gz",
1967
-      ],
1968
-      strip_prefix = "paper-button-1.0.11",
1969
-      path = "/paper-button",
1970
-      srcs = ["paper-button.html"],
1971
-      deps = [
1972
-          "@org_polymer",
1973
-          "@org_polymer_iron_flex_layout",
1974
-          "@org_polymer_paper_behaviors",
1975
-          "@org_polymer_paper_material",
1976
-          "@org_polymer_paper_ripple",
1977
-      ],
1978
+      path = "tensorflow_third_party/org_polymer_paper_button"
1979
   )
1980
 
1981
-  web_library_external(
1982
+  native.local_repository(
1983
       name = "org_polymer_paper_checkbox",
1984
-      licenses = ["notice"],  # BSD-3-Clause
1985
-      sha256 = "6828a6954a048b1230fbd2606faffbae950ba1d042175b96ec50ae355786a166",
1986
-      urls = [
1987
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-checkbox/archive/v1.4.0.tar.gz",
1988
-          "https://github.com/PolymerElements/paper-checkbox/archive/v1.4.0.tar.gz",
1989
-      ],
1990
-      strip_prefix = "paper-checkbox-1.4.0",
1991
-      path = "/paper-checkbox",
1992
-      srcs = ["paper-checkbox.html"],
1993
-      deps = [
1994
-          "@org_polymer",
1995
-          "@org_polymer_paper_behaviors",
1996
-          "@org_polymer_paper_styles",
1997
-      ],
1998
+      path = "tensorflow_third_party/org_polymer_paper_checkbox"
1999
   )
2000
 
2001
-  web_library_external(
2002
+  native.local_repository(
2003
       name = "org_polymer_paper_dialog",
2004
-      licenses = ["notice"],  # BSD-3-Clause
2005
-      sha256 = "c6a9709e7f528d03dcd574503c18b72d4751ca30017346d16e6a791d37ed9259",
2006
-      urls = [
2007
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-dialog/archive/v1.0.4.tar.gz",
2008
-          "https://github.com/PolymerElements/paper-dialog/archive/v1.0.4.tar.gz",
2009
-      ],
2010
-      strip_prefix = "paper-dialog-1.0.4",
2011
-      path = "/paper-dialog",
2012
-      srcs = ["paper-dialog.html"],
2013
-      deps = [
2014
-          "@org_polymer",
2015
-          "@org_polymer_neon_animation",
2016
-          "@org_polymer_paper_dialog_behavior",
2017
-      ],
2018
+      path = "tensorflow_third_party/org_polymer_paper_dialog"
2019
   )
2020
 
2021
-  web_library_external(
2022
+  native.local_repository(
2023
       name = "org_polymer_paper_dialog_behavior",
2024
-      licenses = ["notice"],  # BSD-3-Clause
2025
-      sha256 = "a7e0e27ce63554bc14f384cf94bcfa24da8dc5f5120dfd565f45e166261aee40",
2026
-      urls = [
2027
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-dialog-behavior/archive/v1.2.5.tar.gz",
2028
-          "https://github.com/PolymerElements/paper-dialog-behavior/archive/v1.2.5.tar.gz",
2029
-      ],
2030
-      strip_prefix = "paper-dialog-behavior-1.2.5",
2031
-      path = "/paper-dialog-behavior",
2032
-      srcs = [
2033
-          "paper-dialog-behavior.html",
2034
-          "paper-dialog-common.css",
2035
-          "paper-dialog-shared-styles.html",
2036
-      ],
2037
-      deps = [
2038
-          "@org_polymer",
2039
-          "@org_polymer_iron_flex_layout",
2040
-          "@org_polymer_iron_overlay_behavior",
2041
-          "@org_polymer_paper_styles",
2042
-      ],
2043
+      path = "tensorflow_third_party/org_polymer_paper_dialog_behavior"
2044
   )
2045
 
2046
-  web_library_external(
2047
+  native.local_repository(
2048
       name = "org_polymer_paper_dialog_scrollable",
2049
-      licenses = ["notice"],  # BSD-3-Clause
2050
-      sha256 = "a2e69283e7674f782c44d811387a0f8da2d01fac0172743d1add65e253e6b5ff",
2051
-      urls = [
2052
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-dialog-scrollable/archive/1.1.5.tar.gz",
2053
-          "https://github.com/PolymerElements/paper-dialog-scrollable/archive/1.1.5.tar.gz",
2054
-      ],
2055
-      strip_prefix = "paper-dialog-scrollable-1.1.5",
2056
-      path = "/paper-dialog-scrollable",
2057
-      srcs = ["paper-dialog-scrollable.html"],
2058
-      deps = [
2059
-          "@org_polymer",
2060
-          "@org_polymer_iron_flex_layout",
2061
-          "@org_polymer_paper_dialog_behavior",
2062
-          "@org_polymer_paper_styles",
2063
-      ],
2064
+      path = "tensorflow_third_party/org_polymer_paper_dialog_scrollable"
2065
   )
2066
 
2067
-  web_library_external(
2068
+  native.local_repository(
2069
       name = "org_polymer_paper_dropdown_menu",
2070
-      licenses = ["notice"],  # BSD-3-Clause
2071
-      sha256 = "9d88f654ec03ee9be211df9e69bede9e8a22b51bf1dbcc63b79762e4256d81ad",
2072
-      urls = [
2073
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-dropdown-menu/archive/v1.4.0.tar.gz",
2074
-          "https://github.com/PolymerElements/paper-dropdown-menu/archive/v1.4.0.tar.gz",
2075
-      ],
2076
-      strip_prefix = "paper-dropdown-menu-1.4.0",
2077
-      path = "/paper-dropdown-menu",
2078
-      srcs = [
2079
-          "paper-dropdown-menu.html",
2080
-          "paper-dropdown-menu-icons.html",
2081
-          "paper-dropdown-menu-light.html",
2082
-          "paper-dropdown-menu-shared-styles.html",
2083
-      ],
2084
-      deps = [
2085
-          "@org_polymer",
2086
-          "@org_polymer_iron_a11y_keys_behavior",
2087
-          "@org_polymer_iron_behaviors",
2088
-          "@org_polymer_iron_form_element_behavior",
2089
-          "@org_polymer_iron_icon",
2090
-          "@org_polymer_iron_iconset_svg",
2091
-          "@org_polymer_iron_validatable_behavior",
2092
-          "@org_polymer_paper_behaviors",
2093
-          "@org_polymer_paper_input",
2094
-          "@org_polymer_paper_menu_button",
2095
-          "@org_polymer_paper_ripple",
2096
-          "@org_polymer_paper_styles",
2097
-      ],
2098
+      path = "tensorflow_third_party/org_polymer_paper_dropdown_menu"
2099
   )
2100
 
2101
-  web_library_external(
2102
+  native.local_repository(
2103
       name = "org_polymer_paper_header_panel",
2104
-      licenses = ["notice"],  # BSD-3-Clause
2105
-      sha256 = "0db4bd8a4bf6f20dcd0dffb4f907b31c93a8647c9c021344239cf30b40b87075",
2106
-      urls = [
2107
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-header-panel/archive/v1.1.4.tar.gz",
2108
-          "https://github.com/PolymerElements/paper-header-panel/archive/v1.1.4.tar.gz",
2109
-      ],
2110
-      strip_prefix = "paper-header-panel-1.1.4",
2111
-      path = "/paper-header-panel",
2112
-      srcs = ["paper-header-panel.html"],
2113
-      deps = [
2114
-          "@org_polymer",
2115
-          "@org_polymer_iron_flex_layout",
2116
-      ],
2117
+      path = "tensorflow_third_party/org_polymer_paper_header_panel"
2118
   )
2119
 
2120
-  web_library_external(
2121
+  native.local_repository(
2122
       name = "org_polymer_paper_icon_button",
2123
-      licenses = ["notice"],  # BSD-3-Clause
2124
-      sha256 = "9cba5bcfd6aeb4c41581c1392c678cf2278d360e9d122f4d9db54a9ebb404496",
2125
-      urls = [
2126
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-icon-button/archive/v1.1.3.tar.gz",
2127
-          "https://github.com/PolymerElements/paper-icon-button/archive/v1.1.3.tar.gz",
2128
-      ],
2129
-      strip_prefix = "paper-icon-button-1.1.3",
2130
-      path = "/paper-icon-button",
2131
-      srcs = [
2132
-          "paper-icon-button.html",
2133
-          "paper-icon-button-light.html",
2134
-      ],
2135
-      deps = [
2136
-          "@org_polymer",
2137
-          "@org_polymer_iron_icon",
2138
-          "@org_polymer_paper_behaviors",
2139
-          "@org_polymer_paper_styles",
2140
-      ],
2141
+      path = "tensorflow_third_party/org_polymer_paper_icon_button"
2142
   )
2143
 
2144
-  web_library_external(
2145
+  native.local_repository(
2146
       name = "org_polymer_paper_input",
2147
-      licenses = ["notice"],  # BSD-3-Clause
2148
-      sha256 = "17c3dea9bb1c2026cc61324696c6c774214a0dc37686b91ca214a6af550994db",
2149
-      urls = [
2150
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-input/archive/v1.1.18.tar.gz",
2151
-          "https://github.com/PolymerElements/paper-input/archive/v1.1.18.tar.gz",
2152
-      ],
2153
-      strip_prefix = "paper-input-1.1.18",
2154
-      path = "/paper-input",
2155
-      srcs = [
2156
-          "paper-input.html",
2157
-          "paper-input-addon-behavior.html",
2158
-          "paper-input-behavior.html",
2159
-          "paper-input-char-counter.html",
2160
-          "paper-input-container.html",
2161
-          "paper-input-error.html",
2162
-          "paper-textarea.html",
2163
-      ],
2164
-      deps = [
2165
-          "@org_polymer",
2166
-          "@org_polymer_iron_a11y_keys_behavior",
2167
-          "@org_polymer_iron_autogrow_textarea",
2168
-          "@org_polymer_iron_behaviors",
2169
-          "@org_polymer_iron_flex_layout",
2170
-          "@org_polymer_iron_form_element_behavior",
2171
-          "@org_polymer_iron_input",
2172
-          "@org_polymer_paper_styles",
2173
-      ],
2174
+      path = "tensorflow_third_party/org_polymer_paper_input"
2175
   )
2176
 
2177
-  web_library_external(
2178
+  native.local_repository(
2179
       name = "org_polymer_paper_item",
2180
-      licenses = ["notice"],  # BSD-3-Clause
2181
-      sha256 = "12ee0dcb61b0d5721c5988571f6974d7b2211e97724f4195893fbcc9058cdac8",
2182
-      urls = [
2183
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-item/archive/v1.1.4.tar.gz",
2184
-          "https://github.com/PolymerElements/paper-item/archive/v1.1.4.tar.gz",
2185
-      ],
2186
-      strip_prefix = "paper-item-1.1.4",
2187
-      path = "/paper-item",
2188
-      srcs = [
2189
-          "paper-icon-item.html",
2190
-          "paper-item.html",
2191
-          "paper-item-behavior.html",
2192
-          "paper-item-body.html",
2193
-          "paper-item-shared-styles.html",
2194
-      ],
2195
-      deps = [
2196
-          "@org_polymer",
2197
-          "@org_polymer_iron_behaviors",
2198
-          "@org_polymer_iron_flex_layout",
2199
-          "@org_polymer_paper_styles",
2200
-      ],
2201
+      path = "tensorflow_third_party/org_polymer_paper_item"
2202
   )
2203
 
2204
-  web_library_external(
2205
+  native.local_repository(
2206
       name = "org_polymer_paper_listbox",
2207
-      licenses = ["notice"],  # BSD-3-Clause
2208
-      sha256 = "3cb35f4fe9a3f15185a9e91711dba8f27e9291c8cd371ebf1be21b8f1d5f65fb",
2209
-      urls = [
2210
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-listbox/archive/v1.1.2.tar.gz",
2211
-          "https://github.com/PolymerElements/paper-listbox/archive/v1.1.2.tar.gz",
2212
-      ],
2213
-      strip_prefix = "paper-listbox-1.1.2",
2214
-      path = "/paper-listbox",
2215
-      srcs = ["paper-listbox.html"],
2216
-      deps = [
2217
-          "@org_polymer",
2218
-          "@org_polymer_iron_menu_behavior",
2219
-          "@org_polymer_paper_styles",
2220
-      ],
2221
+      path = "tensorflow_third_party/org_polymer_paper_listbox"
2222
   )
2223
 
2224
-  web_library_external(
2225
+  native.local_repository(
2226
       name = "org_polymer_paper_material",
2227
-      licenses = ["notice"],  # BSD-3-Clause
2228
-      sha256 = "09f6c8bd6ddbea2be541dc86306efe41cdfb31bec0b69d35a5dc29772bbc8506",
2229
-      urls = [
2230
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-material/archive/v1.0.6.tar.gz",
2231
-          "https://github.com/PolymerElements/paper-material/archive/v1.0.6.tar.gz",
2232
-      ],
2233
-      strip_prefix = "paper-material-1.0.6",
2234
-      path = "/paper-material",
2235
-      srcs = [
2236
-          "paper-material.html",
2237
-          "paper-material-shared-styles.html",
2238
-      ],
2239
-      deps = [
2240
-          "@org_polymer",
2241
-          "@org_polymer_paper_styles",
2242
-      ],
2243
+      path = "tensorflow_third_party/org_polymer_paper_material"
2244
   )
2245
 
2246
-  web_library_external(
2247
+  native.local_repository(
2248
       name = "org_polymer_paper_menu",
2249
-      licenses = ["notice"],  # BSD-3-Clause
2250
-      sha256 = "a3cee220926e315f7412236b3628288774694447c0da4428345f36d0f127ba3b",
2251
-      urls = [
2252
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-menu/archive/v1.2.2.tar.gz",
2253
-          "https://github.com/PolymerElements/paper-menu/archive/v1.2.2.tar.gz",
2254
-      ],
2255
-      strip_prefix = "paper-menu-1.2.2",
2256
-      path = "/paper-menu",
2257
-      srcs = [
2258
-          "paper-menu.html",
2259
-          "paper-menu-shared-styles.html",
2260
-          "paper-submenu.html",
2261
-      ],
2262
-      deps = [
2263
-          "@org_polymer",
2264
-          "@org_polymer_iron_behaviors",
2265
-          "@org_polymer_iron_collapse",
2266
-          "@org_polymer_iron_flex_layout",
2267
-          "@org_polymer_iron_menu_behavior",
2268
-          "@org_polymer_paper_styles",
2269
-      ],
2270
+      path = "tensorflow_third_party/org_polymer_paper_menu"
2271
   )
2272
 
2273
-  web_library_external(
2274
+  native.local_repository(
2275
       name = "org_polymer_paper_menu_button",
2276
-      licenses = ["notice"],  # BSD-3-Clause
2277
-      sha256 = "be3290c288a2bd4f9887213db22c75add99cc29ff4d088100c0bc4eb0e57997b",
2278
-      urls = [
2279
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-menu-button/archive/v1.5.1.tar.gz",
2280
-          "https://github.com/PolymerElements/paper-menu-button/archive/v1.5.1.tar.gz",
2281
-      ],
2282
-      strip_prefix = "paper-menu-button-1.5.1",
2283
-      path = "/paper-menu-button",
2284
-      srcs = [
2285
-          "paper-menu-button.html",
2286
-          "paper-menu-button-animations.html",
2287
-      ],
2288
-      deps = [
2289
-          "@org_polymer",
2290
-          "@org_polymer_iron_a11y_keys_behavior",
2291
-          "@org_polymer_iron_behaviors",
2292
-          "@org_polymer_iron_dropdown",
2293
-          "@org_polymer_neon_animation",
2294
-          "@org_polymer_paper_styles",
2295
-      ],
2296
+      path = "tensorflow_third_party/org_polymer_paper_menu_button"
2297
   )
2298
 
2299
-  web_library_external(
2300
+  native.local_repository(
2301
       name = "org_polymer_paper_progress",
2302
-      licenses = ["notice"],  # BSD-3-Clause
2303
-      sha256 = "2b6776b2f023c1f344feea17ba29b58d879e46f8ed43b7256495054b5183fff6",
2304
-      urls = [
2305
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-progress/archive/v1.0.9.tar.gz",
2306
-          "https://github.com/PolymerElements/paper-progress/archive/v1.0.9.tar.gz",
2307
-      ],
2308
-      strip_prefix = "paper-progress-1.0.9",
2309
-      path = "/paper-progress",
2310
-      srcs = ["paper-progress.html"],
2311
-      deps = [
2312
-          "@org_polymer",
2313
-          "@org_polymer_iron_flex_layout",
2314
-          "@org_polymer_iron_range_behavior",
2315
-          "@org_polymer_paper_styles",
2316
-      ],
2317
+      path = "tensorflow_third_party/org_polymer_paper_progress"
2318
   )
2319
 
2320
-  web_library_external(
2321
+  native.local_repository(
2322
       name = "org_polymer_paper_radio_button",
2323
-      licenses = ["notice"],  # BSD-3-Clause
2324
-      sha256 = "6e911d0c308aa388136b3af79d1bdcbe5a1f4159cbc79d71efb4ff3b6c0b4e91",
2325
-      urls = [
2326
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-radio-button/archive/v1.1.2.tar.gz",
2327
-          "https://github.com/PolymerElements/paper-radio-button/archive/v1.1.2.tar.gz",
2328
-      ],
2329
-      strip_prefix = "paper-radio-button-1.1.2",
2330
-      path = "/paper-radio-button",
2331
-      srcs = ["paper-radio-button.html"],
2332
-      deps = [
2333
-          "@org_polymer",
2334
-          "@org_polymer_paper_behaviors",
2335
-          "@org_polymer_paper_styles",
2336
-      ],
2337
+      path = "tensorflow_third_party/org_polymer_paper_radio_button"
2338
   )
2339
 
2340
-  web_library_external(
2341
+  native.local_repository(
2342
       name = "org_polymer_paper_radio_group",
2343
-      licenses = ["notice"],  # BSD-3-Clause
2344
-      sha256 = "7885ad1f81e9dcc03dcea4139b54a201ff55c18543770cd44f94530046c9e163",
2345
-      urls = [
2346
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-radio-group/archive/v1.0.9.tar.gz",
2347
-          "https://github.com/PolymerElements/paper-radio-group/archive/v1.0.9.tar.gz",
2348
-      ],
2349
-      strip_prefix = "paper-radio-group-1.0.9",
2350
-      path = "/paper-radio-group",
2351
-      srcs = ["paper-radio-group.html"],
2352
-      deps = [
2353
-          "@org_polymer",
2354
-          "@org_polymer_iron_a11y_keys_behavior",
2355
-          "@org_polymer_iron_selector",
2356
-          "@org_polymer_paper_radio_button",
2357
-      ],
2358
+      path = "tensorflow_third_party/org_polymer_paper_radio_group"
2359
   )
2360
 
2361
-  web_library_external(
2362
+  native.local_repository(
2363
       name = "org_polymer_paper_ripple",
2364
-      licenses = ["notice"],  # BSD-3-Clause
2365
-      sha256 = "ba76bfb1c737260a8a103d3ca97faa1f7c3288c7db9b2519f401b7a782147c09",
2366
-      urls = [
2367
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-ripple/archive/v1.0.5.tar.gz",
2368
-          "https://github.com/PolymerElements/paper-ripple/archive/v1.0.5.tar.gz",
2369
-      ],
2370
-      strip_prefix = "paper-ripple-1.0.5",
2371
-      path = "/paper-ripple",
2372
-      srcs = ["paper-ripple.html"],
2373
-      deps = [
2374
-          "@org_polymer",
2375
-          "@org_polymer_iron_a11y_keys_behavior",
2376
-      ],
2377
+      path = "tensorflow_third_party/org_polymer_paper_ripple"
2378
   )
2379
 
2380
-  web_library_external(
2381
+  native.local_repository(
2382
       name = "org_polymer_paper_slider",
2383
-      licenses = ["notice"],  # BSD-3-Clause
2384
-      sha256 = "08e7c541dbf5d2e959208810bfc03188e82ced87e4d30d325172967f67962c3c",
2385
-      urls = [
2386
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-slider/archive/v1.0.10.tar.gz",
2387
-          "https://github.com/PolymerElements/paper-slider/archive/v1.0.10.tar.gz",
2388
-      ],
2389
-      strip_prefix = "paper-slider-1.0.10",
2390
-      path = "/paper-slider",
2391
-      srcs = ["paper-slider.html"],
2392
-      deps = [
2393
-          "@org_polymer",
2394
-          "@org_polymer_iron_a11y_keys_behavior",
2395
-          "@org_polymer_iron_flex_layout",
2396
-          "@org_polymer_iron_form_element_behavior",
2397
-          "@org_polymer_iron_range_behavior",
2398
-          "@org_polymer_paper_behaviors",
2399
-          "@org_polymer_paper_input",
2400
-          "@org_polymer_paper_progress",
2401
-          "@org_polymer_paper_styles",
2402
-      ],
2403
+      path = "tensorflow_third_party/org_polymer_paper_slider"
2404
   )
2405
 
2406
-  web_library_external(
2407
+  native.local_repository(
2408
       name = "org_polymer_paper_spinner",
2409
-      licenses = ["notice"],  # BSD-3-Clause
2410
-      sha256 = "6a752907fab7899cbeed15b478e7b9299047c15fbf9d1561d6eb4d204bdbd178",
2411
-      urls = [
2412
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-spinner/archive/v1.1.1.tar.gz",
2413
-          "https://github.com/PolymerElements/paper-spinner/archive/v1.1.1.tar.gz",
2414
-      ],
2415
-      strip_prefix = "paper-spinner-1.1.1",
2416
-      path = "/paper-spinner",
2417
-      srcs = [
2418
-          "paper-spinner.html", "paper-spinner-behavior.html",
2419
-          "paper-spinner-lite.html", "paper-spinner-styles.html"
2420
-      ],
2421
-      deps = [
2422
-          "@org_polymer",
2423
-          "@org_polymer_iron_flex_layout",
2424
-          "@org_polymer_paper_styles",
2425
-      ],
2426
+      path = "tensorflow_third_party/org_polymer_paper_spinner"
2427
   )
2428
 
2429
-  web_library_external(
2430
+  native.local_repository(
2431
       name = "org_polymer_paper_styles",
2432
-      licenses = ["notice"],  # BSD-3-Clause
2433
-      sha256 = "6d26b0a4c286402098853dc7388f6b22f30dfb7a74e47b34992ac03380144bb2",
2434
-      urls = [
2435
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-styles/archive/v1.1.4.tar.gz",
2436
-          "https://github.com/PolymerElements/paper-styles/archive/v1.1.4.tar.gz",
2437
-      ],
2438
-      strip_prefix = "paper-styles-1.1.4",
2439
-      path = "/paper-styles",
2440
-      srcs = [
2441
-          "classes/global.html",
2442
-          "classes/shadow.html",
2443
-          "classes/shadow-layout.html",
2444
-          "classes/typography.html",
2445
-          "color.html",
2446
-          "default-theme.html",
2447
-          "demo.css",
2448
-          "demo-pages.html",
2449
-          "paper-styles.html",
2450
-          "paper-styles-classes.html",
2451
-          "shadow.html",
2452
-          "typography.html",
2453
-      ],
2454
-      deps = [
2455
-          "@org_polymer",
2456
-          "@org_polymer_font_roboto",
2457
-          "@org_polymer_iron_flex_layout",
2458
-      ],
2459
+      path = "tensorflow_third_party/org_polymer_paper_styles"
2460
   )
2461
 
2462
-  web_library_external(
2463
+  native.local_repository(
2464
       name = "org_polymer_paper_tabs",
2465
-      licenses = ["notice"],  # BSD-3-Clause
2466
-      sha256 = "c23b6a5221db35e5b1ed3eb8e8696b952572563e285adaec96aba1e3134db825",
2467
-      urls = [
2468
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-tabs/archive/v1.7.0.tar.gz",
2469
-          "https://github.com/PolymerElements/paper-tabs/archive/v1.7.0.tar.gz",
2470
-      ],
2471
-      strip_prefix = "paper-tabs-1.7.0",
2472
-      path = "/paper-tabs",
2473
-      srcs = [
2474
-          "paper-tab.html",
2475
-          "paper-tabs.html",
2476
-          "paper-tabs-icons.html",
2477
-      ],
2478
-      deps = [
2479
-          "@org_polymer",
2480
-          "@org_polymer_iron_behaviors",
2481
-          "@org_polymer_iron_flex_layout",
2482
-          "@org_polymer_iron_icon",
2483
-          "@org_polymer_iron_iconset_svg",
2484
-          "@org_polymer_iron_menu_behavior",
2485
-          "@org_polymer_iron_resizable_behavior",
2486
-          "@org_polymer_paper_behaviors",
2487
-          "@org_polymer_paper_icon_button",
2488
-          "@org_polymer_paper_styles",
2489
-      ],
2490
+      path = "tensorflow_third_party/org_polymer_paper_tabs"
2491
   )
2492
 
2493
-  web_library_external(
2494
+  native.local_repository(
2495
       name = "org_polymer_paper_toast",
2496
-      licenses = ["notice"],  # BSD-3-Clause
2497
-      sha256 = "55f623712ed1f2bae6d6fadc522a2458e083ccd44cc0a907672547e7b10758a9",
2498
-      urls = [
2499
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-toast/archive/v1.3.0.tar.gz",
2500
-          "https://github.com/PolymerElements/paper-toast/archive/v1.3.0.tar.gz",
2501
-      ],
2502
-      strip_prefix = "paper-toast-1.3.0",
2503
-      path = "/paper-toast",
2504
-      srcs = ["paper-toast.html"],
2505
-      deps = [
2506
-          "@org_polymer",
2507
-          "@org_polymer_iron_a11y_announcer",
2508
-          "@org_polymer_iron_overlay_behavior",
2509
-      ],
2510
+      path = "tensorflow_third_party/org_polymer_paper_toast"
2511
   )
2512
 
2513
-  web_library_external(
2514
+  native.local_repository(
2515
       name = "org_polymer_paper_toggle_button",
2516
-      licenses = ["notice"],  # BSD-3-Clause
2517
-      sha256 = "4aa7cf0396fa2994a8bc2ac6e8428f48b07b945bb7c41bd52041ef5827b45de3",
2518
-      urls = [
2519
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-toggle-button/archive/v1.2.0.tar.gz",
2520
-          "https://github.com/PolymerElements/paper-toggle-button/archive/v1.2.0.tar.gz",
2521
-      ],
2522
-      strip_prefix = "paper-toggle-button-1.2.0",
2523
-      path = "/paper-toggle-button",
2524
-      srcs = ["paper-toggle-button.html"],
2525
-      deps = [
2526
-          "@org_polymer",
2527
-          "@org_polymer_iron_flex_layout",
2528
-          "@org_polymer_paper_behaviors",
2529
-          "@org_polymer_paper_styles",
2530
-      ],
2531
+      path = "tensorflow_third_party/org_polymer_paper_toggle_button"
2532
   )
2533
 
2534
-  web_library_external(
2535
+  native.local_repository(
2536
       name = "org_polymer_paper_toolbar",
2537
-      licenses = ["notice"],  # BSD-3-Clause
2538
-      sha256 = "dbddffc0654d9fb5fb48843087eebe16bf7a134902495a664c96c11bf8a2c63d",
2539
-      urls = [
2540
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-toolbar/archive/v1.1.4.tar.gz",
2541
-          "https://github.com/PolymerElements/paper-toolbar/archive/v1.1.4.tar.gz",
2542
-      ],
2543
-      strip_prefix = "paper-toolbar-1.1.4",
2544
-      path = "/paper-toolbar",
2545
-      srcs = ["paper-toolbar.html"],
2546
-      deps = [
2547
-          "@org_polymer",
2548
-          "@org_polymer_iron_flex_layout",
2549
-          "@org_polymer_paper_styles",
2550
-      ],
2551
+      path = "tensorflow_third_party/org_polymer_paper_toolbar"
2552
   )
2553
 
2554
-  web_library_external(
2555
+  native.local_repository(
2556
       name = "org_polymer_paper_tooltip",
2557
-      licenses = ["notice"],  # BSD-3-Clause
2558
-      sha256 = "4c6667acf01f73da14c3cbc0aa574bf14280304567987ee0314534328377d2ad",
2559
-      urls = [
2560
-          "http://mirror.bazel.build/github.com/PolymerElements/paper-tooltip/archive/v1.1.2.tar.gz",
2561
-          "https://github.com/PolymerElements/paper-tooltip/archive/v1.1.2.tar.gz",
2562
-      ],
2563
-      strip_prefix = "paper-tooltip-1.1.2",
2564
-      path = "/paper-tooltip",
2565
-      srcs = ["paper-tooltip.html"],
2566
-      deps = [
2567
-          "@org_polymer",
2568
-          "@org_polymer_neon_animation",
2569
-      ],
2570
+      path = "tensorflow_third_party/org_polymer_paper_tooltip"
2571
   )
2572
 
2573
-  web_library_external(
2574
+  native.local_repository(
2575
       name = "org_polymer",
2576
-      licenses = ["notice"],  # BSD-3-Clause
2577
-      sha256 = "07a9e62ffb52193da3af09adda2fbac5cc690439978520e2d03e783863f65f91",
2578
-      strip_prefix = "polymer-1.7.0",
2579
-      urls = [
2580
-          "http://mirror.bazel.build/github.com/polymer/polymer/archive/v1.7.0.tar.gz",
2581
-          "https://github.com/polymer/polymer/archive/v1.7.0.tar.gz",
2582
-      ],
2583
-      path = "/polymer",
2584
-      srcs = [
2585
-          "polymer.html",
2586
-          "polymer-micro.html",
2587
-          "polymer-mini.html",
2588
-      ],
2589
+      path = "tensorflow_third_party/org_polymer"
2590
   )
2591
 
2592
-  web_library_external(
2593
+  native.local_repository(
2594
       name = "org_polymer_prism",
2595
-      licenses = ["notice"],  # MIT
2596
-      sha256 = "e06eb54f2a80e6b3cd0bd4d59f900423bcaee53fc03998a056df63740c684683",
2597
-      urls = [
2598
-          "http://mirror.bazel.build/github.com/PrismJS/prism/archive/abee2b7587f1925e57777044270e2a1860810994.tar.gz",
2599
-          "https://github.com/PrismJS/prism/archive/abee2b7587f1925e57777044270e2a1860810994.tar.gz",
2600
-      ],
2601
-      strip_prefix = "prism-abee2b7587f1925e57777044270e2a1860810994",
2602
-      path = "/prism",
2603
-      srcs = [
2604
-          "prism.js",
2605
-          "themes/prism.css",
2606
-      ],
2607
+      path = "tensorflow_third_party/org_polymer_prism"
2608
   )
2609
 
2610
-  web_library_external(
2611
+  native.local_repository(
2612
       name = "org_polymer_prism_element",
2613
-      licenses = ["notice"],  # BSD-3-Clause
2614
-      sha256 = "ad70bf9cd5bbdf525d465e1b0658867ab4022193eb9c74087a839044b46312b4",
2615
-      urls = [
2616
-          "http://mirror.bazel.build/github.com/PolymerElements/prism-element/archive/1.0.4.tar.gz",
2617
-          "https://github.com/PolymerElements/prism-element/archive/1.0.4.tar.gz",
2618
-      ],
2619
-      strip_prefix = "prism-element-1.0.4",
2620
-      path = "/prism-element",
2621
-      srcs = [
2622
-          "prism-highlighter.html",
2623
-          "prism-import.html",
2624
-      ],
2625
-      deps = [
2626
-          "@org_polymer",
2627
-          "@org_polymer_prism",
2628
-      ],
2629
+      path = "tensorflow_third_party/org_polymer_prism_element"
2630
   )
2631
 
2632
-  web_library_external(
2633
+  native.local_repository(
2634
       name = "org_polymer_promise_polyfill",
2635
-      licenses = ["notice"],  # BSD-3-Clause
2636
-      sha256 = "4495450e5d884c3e16b537b43afead7f84d17c7dc061bcfcbf440eac083e4ef5",
2637
-      strip_prefix = "promise-polyfill-1.0.0",
2638
-      urls = [
2639
-          "http://mirror.bazel.build/github.com/PolymerLabs/promise-polyfill/archive/v1.0.0.tar.gz",
2640
-          "https://github.com/PolymerLabs/promise-polyfill/archive/v1.0.0.tar.gz",
2641
-      ],
2642
-      path = "/promise-polyfill",
2643
-      srcs = [
2644
-          "Promise.js",
2645
-          "Promise-Statics.js",
2646
-          "promise-polyfill.html",
2647
-          "promise-polyfill-lite.html"
2648
-      ],
2649
-      deps = ["@org_polymer"],
2650
+      path = "tensorflow_third_party/org_polymer_promise_polyfill"
2651
   )
2652
 
2653
-  web_library_external(
2654
+  native.local_repository(
2655
       name = "org_polymer_web_animations_js",
2656
-      licenses = ["notice"],  # BSD-3-Clause
2657
-      sha256 = "f8bd760cbdeba131f6790bd5abe170bcbf7b1755ff58ed16d0b82fa8a7f34a7f",
2658
-      urls = [
2659
-          "http://mirror.bazel.build/github.com/web-animations/web-animations-js/archive/2.2.1.tar.gz",
2660
-          "https://github.com/web-animations/web-animations-js/archive/2.2.1.tar.gz",
2661
-      ],
2662
-      strip_prefix = "web-animations-js-2.2.1",
2663
-      path = "/web-animations-js",
2664
-      srcs = ["web-animations-next-lite.min.js"],
2665
+      path = "tensorflow_third_party/org_polymer_web_animations_js"
2666
   )
2667
 
2668
-  web_library_external(
2669
+  native.local_repository(
2670
       name = "org_polymer_webcomponentsjs",
2671
-      licenses = ["notice"],  # BSD-3-Clause
2672
-      sha256 = "138c43306ee0a6d699ddca9b3c6b0f4982974ea8b7bdad291ea7276c72301df9",
2673
-      urls = [
2674
-          "http://mirror.bazel.build/github.com/webcomponents/webcomponentsjs/archive/v0.7.22.tar.gz",
2675
-          "https://github.com/webcomponents/webcomponentsjs/archive/v0.7.22.tar.gz",
2676
-      ],
2677
-      strip_prefix = "webcomponentsjs-0.7.22",
2678
-      path = "/webcomponentsjs",
2679
-      srcs = [
2680
-          "CustomElements.js",
2681
-          "CustomElements.min.js",
2682
-          "HTMLImports.js",
2683
-          "HTMLImports.min.js",
2684
-          "MutationObserver.js",
2685
-          "MutationObserver.min.js",
2686
-          "ShadowDOM.js",
2687
-          "ShadowDOM.min.js",
2688
-          "webcomponents.js",
2689
-          "webcomponents.min.js",
2690
-          "webcomponents-lite.js",
2691
-          "webcomponents-lite.min.js",
2692
-      ],
2693
+      path = "tensorflow_third_party/org_polymer_webcomponentsjs"
2694
   )
2695
 
2696
-  ##############################################################################
2697
-  # TensorBoard Testing Dependencies
2698
-
2699
-  web_library_external(
2700
+  native.local_repository(
2701
       name = "org_npmjs_registry_accessibility_developer_tools",
2702
-      licenses = ["notice"],  # Apache License 2.0
2703
-      sha256 = "1d6a72f401c9d53f68238c617dd43a05cd85ca5aa2e676a5b3c352711448e093",
2704
-      urls = [
2705
-          "http://mirror.bazel.build/registry.npmjs.org/accessibility-developer-tools/-/accessibility-developer-tools-2.10.0.tgz",
2706
-          "https://registry.npmjs.org/accessibility-developer-tools/-/accessibility-developer-tools-2.10.0.tgz",
2707
-      ],
2708
-      strip_prefix = "package",
2709
-      path = "/accessibility-developer-tools",
2710
-      suppress = ["strictDependencies"],
2711
+      path = "tensorflow_third_party/org_npmjs_registry_accessibility_developer_tools"
2712
   )
2713
 
2714
-  web_library_external(
2715
+  native.local_repository(
2716
       name = "org_npmjs_registry_async",
2717
-      licenses = ["notice"],  # MIT
2718
-      sha256 = "08655255ae810bf4d1cb1642df57658fcce823776d3ba8f4b46f4bbff6c87ece",
2719
-      urls = [
2720
-          "http://mirror.bazel.build/registry.npmjs.org/async/-/async-1.5.0.tgz",
2721
-          "https://registry.npmjs.org/async/-/async-1.5.0.tgz",
2722
-      ],
2723
-      strip_prefix = "package",
2724
-      path = "/async",
2725
+      path = "tensorflow_third_party/org_npmjs_registry_async"
2726
   )
2727
 
2728
-  web_library_external(
2729
+  native.local_repository(
2730
       name = "org_npmjs_registry_chai",
2731
-      licenses = ["notice"],  # MIT
2732
-      sha256 = "aca8137bed5bb295bd7173325b7ad604cd2aeb341d739232b4f9f0b26745be90",
2733
-      urls = [
2734
-          "http://mirror.bazel.build/registry.npmjs.org/chai/-/chai-3.5.0.tgz",
2735
-          "https://registry.npmjs.org/chai/-/chai-3.5.0.tgz",
2736
-      ],
2737
-      strip_prefix = "package",
2738
-      path = "/chai",
2739
+      path = "tensorflow_third_party/org_npmjs_registry_chai"
2740
   )
2741
 
2742
-  web_library_external(
2743
+  native.local_repository(
2744
       name = "org_npmjs_registry_mocha",
2745
-      licenses = ["notice"],  # MIT
2746
-      sha256 = "13ef37a071196a2fba680799b906555d3f0ab61e80a7e8f73f93e77914590dd4",
2747
-      urls = [
2748
-          "http://mirror.bazel.build/registry.npmjs.org/mocha/-/mocha-2.5.3.tgz",
2749
-          "https://registry.npmjs.org/mocha/-/mocha-2.5.3.tgz",
2750
-      ],
2751
-      suppress = ["strictDependencies"],
2752
-      strip_prefix = "package",
2753
-      path = "/mocha",
2754
+      path = "tensorflow_third_party/org_npmjs_registry_mocha"
2755
   )
2756
 
2757
-  web_library_external(
2758
+  native.local_repository(
2759
       name = "org_npmjs_registry_sinon",
2760
-      licenses = ["notice"],  # BSD-3-Clause
2761
-      sha256 = "49edb057695fc9019aae992bf7e677a07de7c6ce2bf9f9facde4a245045d1532",
2762
-      urls = [
2763
-          "http://mirror.bazel.build/registry.npmjs.org/sinon/-/sinon-1.17.4.tgz",
2764
-          "https://registry.npmjs.org/sinon/-/sinon-1.17.4.tgz",
2765
-      ],
2766
-      strip_prefix = "package/lib",
2767
-      path = "/sinonjs",
2768
+      path = "tensorflow_third_party/org_npmjs_registry_sinon"
2769
   )
2770
 
2771
-  web_library_external(
2772
+  native.local_repository(
2773
       name = "org_npmjs_registry_sinon_chai",
2774
-      licenses = ["notice"],  # BSD-3-Clause
2775
-      sha256 = "b85fc56f713832960b56fe9269ee4bb2cd41edd2ceb130b0936e5bdbed5dea63",
2776
-      urls = [
2777
-          "http://mirror.bazel.build/registry.npmjs.org/sinon-chai/-/sinon-chai-2.8.0.tgz",
2778
-          "https://registry.npmjs.org/sinon-chai/-/sinon-chai-2.8.0.tgz",
2779
-      ],
2780
-      strip_prefix = "package",
2781
-      path = "/sinon-chai",
2782
+      path = "tensorflow_third_party/org_npmjs_registry_sinon_chai"
2783
   )
2784
 
2785
-  web_library_external(
2786
+  native.local_repository(
2787
       name = "org_npmjs_registry_stacky",
2788
-      licenses = ["notice"],  # BSD-3-Clause
2789
-      sha256 = "c659e60f7957d9d80c23a7aacc4d71b19c6421a08f91174c0062de369595acae",
2790
-      urls = [
2791
-          "http://mirror.bazel.build/registry.npmjs.org/stacky/-/stacky-1.3.1.tgz",
2792
-          "https://registry.npmjs.org/stacky/-/stacky-1.3.1.tgz",
2793
-      ],
2794
-      strip_prefix = "package",
2795
-      path = "/stacky",
2796
+      path = "tensorflow_third_party/org_npmjs_registry_stacky"
2797
   )
2798
 
2799
-  web_library_external(
2800
+  native.local_repository(
2801
       name = "org_npmjs_registry_web_component_tester",
2802
-      licenses = ["notice"],  # BSD-3-Clause
2803
-      sha256 = "9d4ebd4945df8a936916d4d32b7f280f2a3afa35f79e7ca8ad3ed0a42770c537",
2804
-      urls = [
2805
-          "http://mirror.bazel.build/registry.npmjs.org/web-component-tester/-/web-component-tester-4.3.6.tgz",
2806
-          "https://registry.npmjs.org/web-component-tester/-/web-component-tester-4.3.6.tgz",
2807
-      ],
2808
-      strip_prefix = "package",
2809
-      path = "/web-component-tester",
2810
-      suppress = [
2811
-          "absolutePaths",
2812
-          "strictDependencies",
2813
-      ],
2814
-      deps = [
2815
-          "@com_lodash",
2816
-          "@org_npmjs_registry_accessibility_developer_tools",
2817
-          "@org_npmjs_registry_async",
2818
-          "@org_npmjs_registry_chai",
2819
-          "@org_npmjs_registry_mocha",
2820
-          "@org_npmjs_registry_sinon",
2821
-          "@org_npmjs_registry_sinon_chai",
2822
-          "@org_npmjs_registry_stacky",
2823
-          "@org_polymer_test_fixture",
2824
-      ],
2825
+      path = "tensorflow_third_party/org_npmjs_registry_web_component_tester"
2826
   )
2827
 
2828
-  web_library_external(
2829
+  native.local_repository(
2830
       name = "org_polymer_test_fixture",
2831
-      licenses = ["notice"],  # BSD-3-Clause
2832
-      sha256 = "59d6cfb1187733b71275becfea181fe0aa1f734df5ff77f5850c806bbbf9a0d9",
2833
-      strip_prefix = "test-fixture-2.0.1",
2834
-      urls = [
2835
-          "http://mirror.bazel.build/github.com/PolymerElements/test-fixture/archive/v2.0.1.tar.gz",
2836
-          "https://github.com/PolymerElements/test-fixture/archive/v2.0.1.tar.gz",
2837
-      ],
2838
-      path = "/test-fixture",
2839
-      exclude = ["test/**"],
2840
+      path = "tensorflow_third_party/org_polymer_test_fixture"
2841
+  )
2842
+
2843
+  native.bind(
2844
+      name = "xsmm_avx",
2845
+      actual = "@libxsmm_archive//third_party:xsmm_avx",
2846
+  )
2847
+
2848
+  native.bind(
2849
+      name = "farmhash",
2850
+      actual = "@farmhash//:farmhash",
2851
+  )
2852
+
2853
+  native.bind(
2854
+      name = "six",
2855
+      actual = "@six_archive//:six",
2856
+  )
2857
+
2858
+  native.bind(
2859
+      name = "gtest",
2860
+      actual = "@gmock_archive//:gtest",
2861
+  )
2862
+
2863
+  native.bind(
2864
+      name = "gtest_main",
2865
+      actual = "@gmock_archive//:gtest_main",
2866
+  )
2867
+
2868
+  native.bind(
2869
+      name = "python_headers",
2870
+      actual = str(Label("//util/python:python_headers")),
2871
+  )
2872
+
2873
+  native.bind(
2874
+      name = "protobuf_clib",
2875
+      actual = "@protobuf//:protoc_lib",
2876
+  )
2877
+
2878
+  native.bind(
2879
+      name = "protobuf_compiler",
2880
+      actual = "@protobuf//:protoc_lib",
2881
+  )
2882
+
2883
+  native.bind(
2884
+      name = "grpc_cpp_plugin",
2885
+      actual = "@grpc//:grpc_cpp_plugin",
2886
+  )
2887
+
2888
+  native.bind(
2889
+      name = "grpc_lib",
2890
+      actual = "@grpc//:grpc++_unsecure",
2891
+  )
2892
+
2893
+  native.bind(
2894
+      name = "jsoncpp",
2895
+      actual = "@jsoncpp_git//:jsoncpp",
2896
+  )
2897
+
2898
+  native.bind(
2899
+      name = "nanopb",
2900
+      actual = "@nanopb_git//:nanopb",
2901
+  )
2902
+
2903
+  native.bind(
2904
+      name = "zlib",
2905
+      actual = "@zlib_archive//:zlib",
2906
   )
(-)b/pkg-descr (+12 lines)
Added Link Here
1
TensorFlow is an open source software library for numerical computation using
2
data flow graphs. Nodes in the graph represent mathematical operations, while
3
the graph edges represent the multidimensional data arrays (tensors)
4
communicated between them. The flexible architecture allows you to deploy
5
computation to one or more CPUs or GPUs in a desktop, server, or mobile device
6
with a single API. TensorFlow was originally developed by researchers and
7
engineers working on the Google Brain Team within Google's Machine Intelligence
8
research organization for the purposes of conducting machine learning and deep
9
neural networks research, but the system is general enough to be applicable in
10
a wide variety of other domains as well.
11
12
WWW: https://www.tensorflow.org
(-)b/pkg-plist (+3840 lines)
Added Link Here
1
%%PYTHON_SITELIBDIR%%/external/__init__.py
2
%%PYTHON_SITELIBDIR%%/external/boringssl/LICENSE
3
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/LICENSE
4
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/bitmap256.h
5
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/filtered_re2.h
6
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/prefilter.h
7
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/prefilter_tree.h
8
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/prog.h
9
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/re2.h
10
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/regexp.h
11
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/set.h
12
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/stringpiece.h
13
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/unicode_casefold.h
14
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/unicode_groups.h
15
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/re2/walker-inl.h
16
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/util/flags.h
17
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/util/logging.h
18
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/util/mix.h
19
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/util/mutex.h
20
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/util/sparse_array.h
21
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/util/sparse_set.h
22
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/util/strutil.h
23
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/util/utf.h
24
%%PYTHON_SITELIBDIR%%/external/com_googlesource_code_re2/util/util.h
25
%%PYTHON_SITELIBDIR%%/external/curl/COPYING
26
%%PYTHON_SITELIBDIR%%/external/d3/d3.js
27
%%PYTHON_SITELIBDIR%%/external/d3/d3.min.js
28
%%PYTHON_SITELIBDIR%%/external/d3/package.js
29
%%PYTHON_SITELIBDIR%%/external/dagre/dist/dagre.core.js
30
%%PYTHON_SITELIBDIR%%/external/dagre/dist/dagre.core.min.js
31
%%PYTHON_SITELIBDIR%%/external/eigen_archive/COPYING.MPL2
32
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/Cholesky
33
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/CholmodSupport
34
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/Core
35
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/Dense
36
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/Eigenvalues
37
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/Geometry
38
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/Householder
39
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/Jacobi
40
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/LU
41
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/OrderingMethods
42
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/PaStiXSupport
43
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/PardisoSupport
44
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/QR
45
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/QtAlignedMalloc
46
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/SPQRSupport
47
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/SVD
48
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/SparseCore
49
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/SparseQR
50
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/StdDeque
51
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/StdList
52
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/StdVector
53
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/SuperLUSupport
54
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/UmfPackSupport
55
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Cholesky/LDLT.h
56
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Cholesky/LLT.h
57
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Cholesky/LLT_LAPACKE.h
58
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/CholmodSupport/CholmodSupport.h
59
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/ArithmeticSequence.h
60
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Array.h
61
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/ArrayBase.h
62
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/ArrayWrapper.h
63
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Assign.h
64
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/AssignEvaluator.h
65
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Assign_MKL.h
66
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/BandMatrix.h
67
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Block.h
68
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/BooleanRedux.h
69
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/CommaInitializer.h
70
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/ConditionEstimator.h
71
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/CoreEvaluators.h
72
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/CoreIterators.h
73
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/CwiseBinaryOp.h
74
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/CwiseNullaryOp.h
75
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/CwiseTernaryOp.h
76
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/CwiseUnaryOp.h
77
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/CwiseUnaryView.h
78
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/DenseBase.h
79
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/DenseCoeffsBase.h
80
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/DenseStorage.h
81
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Diagonal.h
82
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/DiagonalMatrix.h
83
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/DiagonalProduct.h
84
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Dot.h
85
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/EigenBase.h
86
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/ForceAlignedAccess.h
87
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Fuzzy.h
88
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/GeneralProduct.h
89
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/GenericPacketMath.h
90
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/GlobalFunctions.h
91
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/IO.h
92
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/IndexedView.h
93
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Inverse.h
94
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Map.h
95
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/MapBase.h
96
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/MathFunctions.h
97
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/MathFunctionsImpl.h
98
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Matrix.h
99
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/MatrixBase.h
100
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/NestByValue.h
101
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/NoAlias.h
102
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/NumTraits.h
103
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/PermutationMatrix.h
104
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/PlainObjectBase.h
105
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Product.h
106
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/ProductEvaluators.h
107
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Random.h
108
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Redux.h
109
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Ref.h
110
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Replicate.h
111
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/ReturnByValue.h
112
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Reverse.h
113
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Select.h
114
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/SelfAdjointView.h
115
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/SelfCwiseBinaryOp.h
116
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Solve.h
117
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/SolveTriangular.h
118
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/SolverBase.h
119
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/StableNorm.h
120
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Stride.h
121
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Swap.h
122
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Transpose.h
123
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Transpositions.h
124
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/TriangularMatrix.h
125
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/VectorBlock.h
126
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/VectorwiseOp.h
127
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/Visitor.h
128
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/AVX/Complex.h
129
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/AVX/MathFunctions.h
130
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/AVX/PacketMath.h
131
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/AVX/TypeCasting.h
132
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/AVX512/MathFunctions.h
133
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/AVX512/PacketMath.h
134
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/AltiVec/Complex.h
135
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/AltiVec/MathFunctions.h
136
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/AltiVec/PacketMath.h
137
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/CUDA/Complex.h
138
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/CUDA/Half.h
139
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/CUDA/MathFunctions.h
140
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/CUDA/PacketMath.h
141
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/CUDA/PacketMathHalf.h
142
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/CUDA/TypeCasting.h
143
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/Default/Settings.h
144
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/NEON/Complex.h
145
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/NEON/MathFunctions.h
146
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/NEON/PacketMath.h
147
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/SSE/Complex.h
148
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/SSE/MathFunctions.h
149
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/SSE/PacketMath.h
150
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/SSE/TypeCasting.h
151
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/ZVector/Complex.h
152
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/ZVector/MathFunctions.h
153
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/arch/ZVector/PacketMath.h
154
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/functors/AssignmentFunctors.h
155
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/functors/BinaryFunctors.h
156
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/functors/NullaryFunctors.h
157
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/functors/StlFunctors.h
158
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/functors/TernaryFunctors.h
159
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/functors/UnaryFunctors.h
160
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/GeneralBlockPanelKernel.h
161
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixMatrix.h
162
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h
163
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h
164
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h
165
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixVector.h
166
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h
167
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/Parallelizer.h
168
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/SelfadjointMatrixMatrix.h
169
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h
170
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/SelfadjointMatrixVector.h
171
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h
172
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/SelfadjointProduct.h
173
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/SelfadjointRank2Update.h
174
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/TriangularMatrixMatrix.h
175
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h
176
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/TriangularMatrixVector.h
177
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h
178
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/TriangularSolverMatrix.h
179
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h
180
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/products/TriangularSolverVector.h
181
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/BlasUtil.h
182
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/Constants.h
183
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/DisableStupidWarnings.h
184
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/ForwardDeclarations.h
185
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/IndexedViewHelper.h
186
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/IntegralConstant.h
187
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/MKL_support.h
188
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/Macros.h
189
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/Memory.h
190
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/Meta.h
191
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/ReenableStupidWarnings.h
192
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/StaticAssert.h
193
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/SymbolicIndex.h
194
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Core/util/XprHelper.h
195
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/ComplexEigenSolver.h
196
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/ComplexSchur.h
197
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h
198
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/EigenSolver.h
199
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h
200
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h
201
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/HessenbergDecomposition.h
202
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h
203
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/RealQZ.h
204
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/RealSchur.h
205
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h
206
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h
207
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h
208
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Eigenvalues/Tridiagonalization.h
209
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/AlignedBox.h
210
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/AngleAxis.h
211
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/EulerAngles.h
212
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/Homogeneous.h
213
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/Hyperplane.h
214
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/OrthoMethods.h
215
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/ParametrizedLine.h
216
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/Quaternion.h
217
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/Rotation2D.h
218
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/RotationBase.h
219
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/Scaling.h
220
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/Transform.h
221
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/Translation.h
222
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/Umeyama.h
223
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Geometry/arch/Geometry_SSE.h
224
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Householder/BlockHouseholder.h
225
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Householder/Householder.h
226
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Householder/HouseholderSequence.h
227
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h
228
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h
229
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h
230
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h
231
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h
232
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h
233
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h
234
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h
235
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/Jacobi/Jacobi.h
236
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/LU/Determinant.h
237
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/LU/FullPivLU.h
238
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/LU/InverseImpl.h
239
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/LU/PartialPivLU.h
240
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/LU/PartialPivLU_LAPACKE.h
241
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/LU/arch/Inverse_SSE.h
242
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/MetisSupport/MetisSupport.h
243
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/OrderingMethods/Eigen_Colamd.h
244
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/OrderingMethods/Ordering.h
245
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/PaStiXSupport/PaStiXSupport.h
246
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/PardisoSupport/PardisoSupport.h
247
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/QR/ColPivHouseholderQR.h
248
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h
249
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/QR/CompleteOrthogonalDecomposition.h
250
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/QR/FullPivHouseholderQR.h
251
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/QR/HouseholderQR.h
252
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/QR/HouseholderQR_LAPACKE.h
253
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h
254
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SVD/BDCSVD.h
255
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SVD/JacobiSVD.h
256
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SVD/JacobiSVD_LAPACKE.h
257
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SVD/SVDBase.h
258
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SVD/UpperBidiagonalization.h
259
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/AmbiVector.h
260
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/CompressedStorage.h
261
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h
262
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/MappedSparseMatrix.h
263
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseAssign.h
264
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseBlock.h
265
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseColEtree.h
266
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseCompressedBase.h
267
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseCwiseBinaryOp.h
268
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseCwiseUnaryOp.h
269
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseDenseProduct.h
270
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseDiagonalProduct.h
271
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseDot.h
272
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseFuzzy.h
273
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseMap.h
274
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseMatrix.h
275
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseMatrixBase.h
276
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparsePermutation.h
277
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseProduct.h
278
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseRedux.h
279
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseRef.h
280
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseSelfAdjointView.h
281
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseSolverBase.h
282
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseSparseProductWithPruning.h
283
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseTranspose.h
284
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseTriangularView.h
285
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseUtil.h
286
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseVector.h
287
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/SparseView.h
288
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseCore/TriangularSolver.h
289
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU.h
290
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLUImpl.h
291
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_Memory.h
292
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_Structs.h
293
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h
294
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_Utils.h
295
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_column_bmod.h
296
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_column_dfs.h
297
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h
298
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_gemm_kernel.h
299
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h
300
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_kernel_bmod.h
301
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_panel_bmod.h
302
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_panel_dfs.h
303
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_pivotL.h
304
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_pruneL.h
305
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseLU/SparseLU_relax_snode.h
306
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SparseQR/SparseQR.h
307
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/StlSupport/StdDeque.h
308
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/StlSupport/StdList.h
309
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/StlSupport/StdVector.h
310
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/StlSupport/details.h
311
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/SuperLUSupport/SuperLUSupport.h
312
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/UmfPackSupport/UmfPackSupport.h
313
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/misc/Image.h
314
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/misc/Kernel.h
315
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/misc/RealSvd2x2.h
316
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/misc/blas.h
317
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/misc/lapack.h
318
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/misc/lapacke.h
319
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/misc/lapacke_mangling.h
320
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/plugins/ArrayCwiseBinaryOps.h
321
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/plugins/ArrayCwiseUnaryOps.h
322
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/plugins/BlockMethods.h
323
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/plugins/CommonCwiseBinaryOps.h
324
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/plugins/CommonCwiseUnaryOps.h
325
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/plugins/IndexedViewMethods.h
326
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/plugins/MatrixCwiseBinaryOps.h
327
%%PYTHON_SITELIBDIR%%/external/eigen_archive/Eigen/src/plugins/MatrixCwiseUnaryOps.h
328
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/CMakeLists.txt
329
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/Tensor
330
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/TensorSymmetry
331
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/ThreadPool
332
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/README.md
333
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/Tensor.h
334
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h
335
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorArgMaxSycl.h
336
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h
337
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h
338
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h
339
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h
340
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h
341
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h
342
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h
343
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h
344
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h
345
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h
346
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h
347
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h
348
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h
349
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h
350
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h
351
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h
352
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h
353
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h
354
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h
355
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h
356
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h
357
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h
358
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h
359
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h
360
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h
361
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h
362
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h
363
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h
364
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h
365
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h
366
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h
367
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h
368
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h
369
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h
370
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h
371
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h
372
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h
373
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h
374
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h
375
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h
376
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h
377
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h
378
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h
379
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h
380
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h
381
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h
382
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h
383
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h
384
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h
385
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h
386
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h
387
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h
388
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h
389
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h
390
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h
391
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h
392
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h
393
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSycl.h
394
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclConvertToDeviceExpression.h
395
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExprConstructor.h
396
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExtractAccessor.h
397
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExtractFunctors.h
398
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclFunctors.h
399
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclLeafCount.h
400
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclPlaceHolderExpr.h
401
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclRun.h
402
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclTuple.h
403
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h
404
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h
405
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h
406
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h
407
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h
408
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h
409
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h
410
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h
411
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h
412
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h
413
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/SimpleThreadPool.h
414
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h
415
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h
416
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h
417
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h
418
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h
419
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/util/CXX11Meta.h
420
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h
421
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/util/EmulateArray.h
422
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/util/EmulateCXX11Meta.h
423
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h
424
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/FFT
425
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/KroneckerProduct
426
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/MatrixFunctions
427
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/SpecialFunctions
428
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/src/FFT/ei_fftw_impl.h
429
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/src/FFT/ei_kissfft_impl.h
430
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h
431
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h
432
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h
433
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h
434
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h
435
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h
436
%%PYTHON_SITELIBDIR%%/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/CudaSpecialFunctions.h
437
%%PYTHON_SITELIBDIR%%/external/es6_promise/promise.js
438
%%PYTHON_SITELIBDIR%%/external/es6_promise/promise.min.js
439
%%PYTHON_SITELIBDIR%%/external/farmhash_archive/COPYING
440
%%PYTHON_SITELIBDIR%%/external/farmhash_archive/src/farmhash.h
441
%%PYTHON_SITELIBDIR%%/external/fft2d/fft/readme.txt
442
%%PYTHON_SITELIBDIR%%/external/font_roboto/roboto.html
443
%%PYTHON_SITELIBDIR%%/external/gemmlowp/LICENSE
444
%%PYTHON_SITELIBDIR%%/external/gif_archive/COPYING
445
%%PYTHON_SITELIBDIR%%/external/gif_archive/lib/gif_hash.h
446
%%PYTHON_SITELIBDIR%%/external/gif_archive/lib/gif_lib.h
447
%%PYTHON_SITELIBDIR%%/external/gif_archive/lib/gif_lib_private.h
448
%%PYTHON_SITELIBDIR%%/external/graphlib/dist/graphlib.core.js
449
%%PYTHON_SITELIBDIR%%/external/graphlib/dist/graphlib.core.min.js
450
%%PYTHON_SITELIBDIR%%/external/grpc/LICENSE
451
%%PYTHON_SITELIBDIR%%/external/highwayhash/LICENSE
452
%%PYTHON_SITELIBDIR%%/external/highwayhash/highwayhash/arch_specific.h
453
%%PYTHON_SITELIBDIR%%/external/highwayhash/highwayhash/compiler_specific.h
454
%%PYTHON_SITELIBDIR%%/external/highwayhash/highwayhash/sip_hash.h
455
%%PYTHON_SITELIBDIR%%/external/highwayhash/highwayhash/state_helpers.h
456
%%PYTHON_SITELIBDIR%%/external/iron_a11y_announcer/index.html
457
%%PYTHON_SITELIBDIR%%/external/iron_a11y_announcer/iron-a11y-announcer.html
458
%%PYTHON_SITELIBDIR%%/external/iron_a11y_keys_behavior/index.html
459
%%PYTHON_SITELIBDIR%%/external/iron_a11y_keys_behavior/iron-a11y-keys-behavior.html
460
%%PYTHON_SITELIBDIR%%/external/iron_ajax/index.html
461
%%PYTHON_SITELIBDIR%%/external/iron_ajax/iron-ajax.html
462
%%PYTHON_SITELIBDIR%%/external/iron_ajax/iron-request.html
463
%%PYTHON_SITELIBDIR%%/external/iron_autogrow_textarea/index.html
464
%%PYTHON_SITELIBDIR%%/external/iron_autogrow_textarea/iron-autogrow-textarea.html
465
%%PYTHON_SITELIBDIR%%/external/iron_behaviors/index.html
466
%%PYTHON_SITELIBDIR%%/external/iron_behaviors/iron-button-state.html
467
%%PYTHON_SITELIBDIR%%/external/iron_behaviors/iron-control-state.html
468
%%PYTHON_SITELIBDIR%%/external/iron_checked_element_behavior/index.html
469
%%PYTHON_SITELIBDIR%%/external/iron_checked_element_behavior/iron-checked-element-behavior.html
470
%%PYTHON_SITELIBDIR%%/external/iron_collapse/index.html
471
%%PYTHON_SITELIBDIR%%/external/iron_collapse/iron-collapse.html
472
%%PYTHON_SITELIBDIR%%/external/iron_dropdown/index.html
473
%%PYTHON_SITELIBDIR%%/external/iron_dropdown/iron-dropdown-scroll-manager.html
474
%%PYTHON_SITELIBDIR%%/external/iron_dropdown/iron-dropdown.html
475
%%PYTHON_SITELIBDIR%%/external/iron_fit_behavior/index.html
476
%%PYTHON_SITELIBDIR%%/external/iron_fit_behavior/iron-fit-behavior.html
477
%%PYTHON_SITELIBDIR%%/external/iron_flex_layout/classes/iron-flex-layout.html
478
%%PYTHON_SITELIBDIR%%/external/iron_flex_layout/classes/iron-shadow-flex-layout.html
479
%%PYTHON_SITELIBDIR%%/external/iron_flex_layout/index.html
480
%%PYTHON_SITELIBDIR%%/external/iron_flex_layout/iron-flex-layout-classes.html
481
%%PYTHON_SITELIBDIR%%/external/iron_flex_layout/iron-flex-layout.html
482
%%PYTHON_SITELIBDIR%%/external/iron_form_element_behavior/index.html
483
%%PYTHON_SITELIBDIR%%/external/iron_form_element_behavior/iron-form-element-behavior.html
484
%%PYTHON_SITELIBDIR%%/external/iron_icon/index.html
485
%%PYTHON_SITELIBDIR%%/external/iron_icon/iron-icon.html
486
%%PYTHON_SITELIBDIR%%/external/iron_icons/av-icons.html
487
%%PYTHON_SITELIBDIR%%/external/iron_icons/communication-icons.html
488
%%PYTHON_SITELIBDIR%%/external/iron_icons/device-icons.html
489
%%PYTHON_SITELIBDIR%%/external/iron_icons/editor-icons.html
490
%%PYTHON_SITELIBDIR%%/external/iron_icons/hardware-icons.html
491
%%PYTHON_SITELIBDIR%%/external/iron_icons/image-icons.html
492
%%PYTHON_SITELIBDIR%%/external/iron_icons/index.html
493
%%PYTHON_SITELIBDIR%%/external/iron_icons/iron-icons.html
494
%%PYTHON_SITELIBDIR%%/external/iron_icons/maps-icons.html
495
%%PYTHON_SITELIBDIR%%/external/iron_icons/notification-icons.html
496
%%PYTHON_SITELIBDIR%%/external/iron_icons/places-icons.html
497
%%PYTHON_SITELIBDIR%%/external/iron_icons/social-icons.html
498
%%PYTHON_SITELIBDIR%%/external/iron_iconset_svg/index.html
499
%%PYTHON_SITELIBDIR%%/external/iron_iconset_svg/iron-iconset-svg.html
500
%%PYTHON_SITELIBDIR%%/external/iron_input/index.html
501
%%PYTHON_SITELIBDIR%%/external/iron_input/iron-input.html
502
%%PYTHON_SITELIBDIR%%/external/iron_list/index.html
503
%%PYTHON_SITELIBDIR%%/external/iron_list/iron-list.html
504
%%PYTHON_SITELIBDIR%%/external/iron_list/test/smoke/avg-worst-case.html
505
%%PYTHON_SITELIBDIR%%/external/iron_list/test/smoke/dummy-data.html
506
%%PYTHON_SITELIBDIR%%/external/iron_list/test/smoke/index.html
507
%%PYTHON_SITELIBDIR%%/external/iron_list/test/smoke/physical-count.html
508
%%PYTHON_SITELIBDIR%%/external/iron_menu_behavior/index.html
509
%%PYTHON_SITELIBDIR%%/external/iron_menu_behavior/iron-menu-behavior.html
510
%%PYTHON_SITELIBDIR%%/external/iron_menu_behavior/iron-menubar-behavior.html
511
%%PYTHON_SITELIBDIR%%/external/iron_meta/index.html
512
%%PYTHON_SITELIBDIR%%/external/iron_meta/iron-meta.html
513
%%PYTHON_SITELIBDIR%%/external/iron_overlay_behavior/index.html
514
%%PYTHON_SITELIBDIR%%/external/iron_overlay_behavior/iron-focusables-helper.html
515
%%PYTHON_SITELIBDIR%%/external/iron_overlay_behavior/iron-overlay-backdrop.html
516
%%PYTHON_SITELIBDIR%%/external/iron_overlay_behavior/iron-overlay-behavior.html
517
%%PYTHON_SITELIBDIR%%/external/iron_overlay_behavior/iron-overlay-manager.html
518
%%PYTHON_SITELIBDIR%%/external/iron_range_behavior/index.html
519
%%PYTHON_SITELIBDIR%%/external/iron_range_behavior/iron-range-behavior.html
520
%%PYTHON_SITELIBDIR%%/external/iron_resizable_behavior/demo/src/x-app.html
521
%%PYTHON_SITELIBDIR%%/external/iron_resizable_behavior/index.html
522
%%PYTHON_SITELIBDIR%%/external/iron_resizable_behavior/iron-resizable-behavior.html
523
%%PYTHON_SITELIBDIR%%/external/iron_scroll_target_behavior/index.html
524
%%PYTHON_SITELIBDIR%%/external/iron_scroll_target_behavior/iron-scroll-target-behavior.html
525
%%PYTHON_SITELIBDIR%%/external/iron_selector/index.html
526
%%PYTHON_SITELIBDIR%%/external/iron_selector/iron-multi-selectable.html
527
%%PYTHON_SITELIBDIR%%/external/iron_selector/iron-selectable.html
528
%%PYTHON_SITELIBDIR%%/external/iron_selector/iron-selection.html
529
%%PYTHON_SITELIBDIR%%/external/iron_selector/iron-selector.html
530
%%PYTHON_SITELIBDIR%%/external/iron_validatable_behavior/index.html
531
%%PYTHON_SITELIBDIR%%/external/iron_validatable_behavior/iron-validatable-behavior.html
532
%%PYTHON_SITELIBDIR%%/external/jemalloc/COPYING
533
%%PYTHON_SITELIBDIR%%/external/jpeg/LICENSE.md
534
%%PYTHON_SITELIBDIR%%/external/jpeg/jccolext.c
535
%%PYTHON_SITELIBDIR%%/external/jpeg/jchuff.h
536
%%PYTHON_SITELIBDIR%%/external/jpeg/jconfig.h
537
%%PYTHON_SITELIBDIR%%/external/jpeg/jconfigint.h
538
%%PYTHON_SITELIBDIR%%/external/jpeg/jdcoefct.h
539
%%PYTHON_SITELIBDIR%%/external/jpeg/jdcol565.c
540
%%PYTHON_SITELIBDIR%%/external/jpeg/jdcolext.c
541
%%PYTHON_SITELIBDIR%%/external/jpeg/jdct.h
542
%%PYTHON_SITELIBDIR%%/external/jpeg/jdhuff.h
543
%%PYTHON_SITELIBDIR%%/external/jpeg/jdmainct.h
544
%%PYTHON_SITELIBDIR%%/external/jpeg/jdmaster.h
545
%%PYTHON_SITELIBDIR%%/external/jpeg/jdmrg565.c
546
%%PYTHON_SITELIBDIR%%/external/jpeg/jdmrgext.c
547
%%PYTHON_SITELIBDIR%%/external/jpeg/jdsample.h
548
%%PYTHON_SITELIBDIR%%/external/jpeg/jerror.h
549
%%PYTHON_SITELIBDIR%%/external/jpeg/jinclude.h
550
%%PYTHON_SITELIBDIR%%/external/jpeg/jmemsys.h
551
%%PYTHON_SITELIBDIR%%/external/jpeg/jmorecfg.h
552
%%PYTHON_SITELIBDIR%%/external/jpeg/jpeg_nbits_table.h
553
%%PYTHON_SITELIBDIR%%/external/jpeg/jpegcomp.h
554
%%PYTHON_SITELIBDIR%%/external/jpeg/jpegint.h
555
%%PYTHON_SITELIBDIR%%/external/jpeg/jpeglib.h
556
%%PYTHON_SITELIBDIR%%/external/jpeg/jsimd.h
557
%%PYTHON_SITELIBDIR%%/external/jpeg/jsimddct.h
558
%%PYTHON_SITELIBDIR%%/external/jpeg/jstdhuff.c
559
%%PYTHON_SITELIBDIR%%/external/jpeg/jversion.h
560
%%PYTHON_SITELIBDIR%%/external/libxsmm_archive/LICENSE
561
%%PYTHON_SITELIBDIR%%/external/local_config_sycl/sycl/LICENSE.text
562
%%PYTHON_SITELIBDIR%%/external/lodash/lodash.js
563
%%PYTHON_SITELIBDIR%%/external/lodash/lodash.min.js
564
%%PYTHON_SITELIBDIR%%/external/nanopb_git/LICENSE.txt
565
%%PYTHON_SITELIBDIR%%/external/nccl_archive/LICENSE.txt
566
%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/cascaded-animation.html
567
%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/fade-in-animation.html
568
%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/fade-out-animation.html
569
%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/hero-animation.html
570
%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/opaque-animation.html
571
%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/reverse-ripple-animation.html
572
%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/ripple-animation.html
573
%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/scale-down-animation.html
574
%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/scale-up-animation.html
575
%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/slide-down-animation.html
576
%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/slide-from-bottom-animation.html
577
%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/slide-from-left-animation.html
578
%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/slide-from-right-animation.html
579
%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/slide-from-top-animation.html
580
%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/slide-left-animation.html
581
%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/slide-right-animation.html
582
%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/slide-up-animation.html
583
%%PYTHON_SITELIBDIR%%/external/neon_animation/animations/transform-animation.html
584
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/card/index.html
585
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/card/x-card.html
586
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/card/x-cards-list.html
587
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/declarative/index.html
588
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/doc/index.html
589
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/doc/my-animatable.html
590
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/doc/my-dialog.html
591
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/dropdown/animated-dropdown.html
592
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/dropdown/index.html
593
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/grid/animated-grid.html
594
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/grid/fullsize-page-with-card.html
595
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/grid/index.html
596
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/list/full-view.html
597
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/list/index.html
598
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/list/list-demo.html
599
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/list/list-view.html
600
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/load/animated-grid.html
601
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/load/full-page.html
602
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/load/index.html
603
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/reprojection/animated-grid.html
604
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/reprojection/fullsize-page-with-card.html
605
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/reprojection/index.html
606
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/reprojection/reprojected-pages.html
607
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/tiles/circles-page.html
608
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/tiles/index.html
609
%%PYTHON_SITELIBDIR%%/external/neon_animation/demo/tiles/squares-page.html
610
%%PYTHON_SITELIBDIR%%/external/neon_animation/index.html
611
%%PYTHON_SITELIBDIR%%/external/neon_animation/neon-animatable-behavior.html
612
%%PYTHON_SITELIBDIR%%/external/neon_animation/neon-animatable.html
613
%%PYTHON_SITELIBDIR%%/external/neon_animation/neon-animated-pages.html
614
%%PYTHON_SITELIBDIR%%/external/neon_animation/neon-animation-behavior.html
615
%%PYTHON_SITELIBDIR%%/external/neon_animation/neon-animation-runner-behavior.html
616
%%PYTHON_SITELIBDIR%%/external/neon_animation/neon-animation.html
617
%%PYTHON_SITELIBDIR%%/external/neon_animation/neon-animations.html
618
%%PYTHON_SITELIBDIR%%/external/neon_animation/neon-shared-element-animatable-behavior.html
619
%%PYTHON_SITELIBDIR%%/external/neon_animation/neon-shared-element-animation-behavior.html
620
%%PYTHON_SITELIBDIR%%/external/neon_animation/web-animations.html
621
%%PYTHON_SITELIBDIR%%/external/numericjs_numeric_min_js/file/numeric.min.js
622
%%PYTHON_SITELIBDIR%%/external/org_html5lib/LICENSE
623
%%PYTHON_SITELIBDIR%%/external/org_html5lib/__init__.py
624
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/__init__.py
625
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/constants.py
626
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/filters/__init__.py
627
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/filters/_base.py
628
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/filters/alphabeticalattributes.py
629
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/filters/inject_meta_charset.py
630
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/filters/lint.py
631
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/filters/optionaltags.py
632
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/filters/sanitizer.py
633
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/filters/whitespace.py
634
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/html5parser.py
635
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/ihatexml.py
636
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/inputstream.py
637
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/sanitizer.py
638
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/serializer/__init__.py
639
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/serializer/htmlserializer.py
640
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/tests/__init__.py
641
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/tests/mockParser.py
642
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/tests/performance/__init__.py
643
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/tests/performance/concatenation.py
644
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/tests/support.py
645
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/tests/test_encoding.py
646
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/tests/test_parser.py
647
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/tests/test_parser2.py
648
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/tests/test_sanitizer.py
649
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/tests/test_serializer.py
650
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/tests/test_stream.py
651
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/tests/test_tokenizer.py
652
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/tests/test_treeadapters.py
653
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/tests/test_treewalkers.py
654
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/tests/test_whitespace_filter.py
655
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/tests/tokenizertotree.py
656
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/tokenizer.py
657
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/treeadapters/__init__.py
658
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/treeadapters/sax.py
659
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/treebuilders/__init__.py
660
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/treebuilders/_base.py
661
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/treebuilders/dom.py
662
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/treebuilders/etree.py
663
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/treebuilders/etree_lxml.py
664
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/treewalkers/__init__.py
665
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/treewalkers/_base.py
666
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/treewalkers/dom.py
667
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/treewalkers/etree.py
668
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/treewalkers/genshistream.py
669
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/treewalkers/lxmletree.py
670
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/treewalkers/pulldom.py
671
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/trie/__init__.py
672
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/trie/_base.py
673
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/trie/datrie.py
674
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/trie/py.py
675
%%PYTHON_SITELIBDIR%%/external/org_html5lib/html5lib/utils.py
676
%%PYTHON_SITELIBDIR%%/external/org_mozilla_bleach/LICENSE
677
%%PYTHON_SITELIBDIR%%/external/org_mozilla_bleach/__init__.py
678
%%PYTHON_SITELIBDIR%%/external/org_mozilla_bleach/bleach/__init__.py
679
%%PYTHON_SITELIBDIR%%/external/org_mozilla_bleach/bleach/callbacks.py
680
%%PYTHON_SITELIBDIR%%/external/org_mozilla_bleach/bleach/encoding.py
681
%%PYTHON_SITELIBDIR%%/external/org_mozilla_bleach/bleach/sanitizer.py
682
%%PYTHON_SITELIBDIR%%/external/org_mozilla_bleach/bleach/version.py
683
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/LICENSE
684
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/__init__.py
685
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/__init__.py
686
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/_compat.py
687
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/_internal.py
688
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/_reloader.py
689
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/datastructures.py
690
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/exceptions.py
691
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/filesystem.py
692
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/formparser.py
693
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/http.py
694
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/local.py
695
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/posixemulation.py
696
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/routing.py
697
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/script.py
698
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/security.py
699
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/serving.py
700
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/test.py
701
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/testapp.py
702
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/urls.py
703
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/useragents.py
704
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/utils.py
705
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/wrappers.py
706
%%PYTHON_SITELIBDIR%%/external/org_pocoo_werkzeug/werkzeug/wsgi.py
707
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/LICENSE.md
708
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/__init__.py
709
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/__init__.py
710
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/__main__.py
711
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/__version__.py
712
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/blockparser.py
713
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/blockprocessors.py
714
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/extensions/__init__.py
715
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/extensions/abbr.py
716
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/extensions/admonition.py
717
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/extensions/attr_list.py
718
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/extensions/codehilite.py
719
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/extensions/def_list.py
720
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/extensions/extra.py
721
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/extensions/fenced_code.py
722
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/extensions/footnotes.py
723
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/extensions/headerid.py
724
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/extensions/meta.py
725
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/extensions/nl2br.py
726
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/extensions/sane_lists.py
727
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/extensions/smart_strong.py
728
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/extensions/smarty.py
729
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/extensions/tables.py
730
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/extensions/toc.py
731
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/extensions/wikilinks.py
732
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/inlinepatterns.py
733
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/odict.py
734
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/postprocessors.py
735
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/preprocessors.py
736
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/serializers.py
737
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/treeprocessors.py
738
%%PYTHON_SITELIBDIR%%/external/org_pythonhosted_markdown/markdown/util.py
739
%%PYTHON_SITELIBDIR%%/external/paper_behaviors/index.html
740
%%PYTHON_SITELIBDIR%%/external/paper_behaviors/paper-button-behavior.html
741
%%PYTHON_SITELIBDIR%%/external/paper_behaviors/paper-checked-element-behavior.html
742
%%PYTHON_SITELIBDIR%%/external/paper_behaviors/paper-inky-focus-behavior.html
743
%%PYTHON_SITELIBDIR%%/external/paper_behaviors/paper-ripple-behavior.html
744
%%PYTHON_SITELIBDIR%%/external/paper_button/index.html
745
%%PYTHON_SITELIBDIR%%/external/paper_button/paper-button.html
746
%%PYTHON_SITELIBDIR%%/external/paper_checkbox/index.html
747
%%PYTHON_SITELIBDIR%%/external/paper_checkbox/paper-checkbox.html
748
%%PYTHON_SITELIBDIR%%/external/paper_dialog/index.html
749
%%PYTHON_SITELIBDIR%%/external/paper_dialog/paper-dialog.html
750
%%PYTHON_SITELIBDIR%%/external/paper_dialog_behavior/index.html
751
%%PYTHON_SITELIBDIR%%/external/paper_dialog_behavior/paper-dialog-behavior.html
752
%%PYTHON_SITELIBDIR%%/external/paper_dialog_behavior/paper-dialog-common.css
753
%%PYTHON_SITELIBDIR%%/external/paper_dialog_behavior/paper-dialog-shared-styles.html
754
%%PYTHON_SITELIBDIR%%/external/paper_dialog_scrollable/index.html
755
%%PYTHON_SITELIBDIR%%/external/paper_dialog_scrollable/paper-dialog-scrollable.html
756
%%PYTHON_SITELIBDIR%%/external/paper_dropdown_menu/index.html
757
%%PYTHON_SITELIBDIR%%/external/paper_dropdown_menu/paper-dropdown-menu-icons.html
758
%%PYTHON_SITELIBDIR%%/external/paper_dropdown_menu/paper-dropdown-menu-light.html
759
%%PYTHON_SITELIBDIR%%/external/paper_dropdown_menu/paper-dropdown-menu-shared-styles.html
760
%%PYTHON_SITELIBDIR%%/external/paper_dropdown_menu/paper-dropdown-menu.html
761
%%PYTHON_SITELIBDIR%%/external/paper_header_panel/index.html
762
%%PYTHON_SITELIBDIR%%/external/paper_header_panel/paper-header-panel.html
763
%%PYTHON_SITELIBDIR%%/external/paper_icon_button/index.html
764
%%PYTHON_SITELIBDIR%%/external/paper_icon_button/paper-icon-button-light.html
765
%%PYTHON_SITELIBDIR%%/external/paper_icon_button/paper-icon-button.html
766
%%PYTHON_SITELIBDIR%%/external/paper_input/all-imports.html
767
%%PYTHON_SITELIBDIR%%/external/paper_input/index.html
768
%%PYTHON_SITELIBDIR%%/external/paper_input/paper-input-addon-behavior.html
769
%%PYTHON_SITELIBDIR%%/external/paper_input/paper-input-behavior.html
770
%%PYTHON_SITELIBDIR%%/external/paper_input/paper-input-char-counter.html
771
%%PYTHON_SITELIBDIR%%/external/paper_input/paper-input-container.html
772
%%PYTHON_SITELIBDIR%%/external/paper_input/paper-input-error.html
773
%%PYTHON_SITELIBDIR%%/external/paper_input/paper-input.html
774
%%PYTHON_SITELIBDIR%%/external/paper_input/paper-textarea.html
775
%%PYTHON_SITELIBDIR%%/external/paper_item/all-imports.html
776
%%PYTHON_SITELIBDIR%%/external/paper_item/index.html
777
%%PYTHON_SITELIBDIR%%/external/paper_item/paper-icon-item.html
778
%%PYTHON_SITELIBDIR%%/external/paper_item/paper-item-behavior.html
779
%%PYTHON_SITELIBDIR%%/external/paper_item/paper-item-body.html
780
%%PYTHON_SITELIBDIR%%/external/paper_item/paper-item-shared-styles.html
781
%%PYTHON_SITELIBDIR%%/external/paper_item/paper-item.html
782
%%PYTHON_SITELIBDIR%%/external/paper_listbox/index.html
783
%%PYTHON_SITELIBDIR%%/external/paper_listbox/paper-listbox.html
784
%%PYTHON_SITELIBDIR%%/external/paper_material/index.html
785
%%PYTHON_SITELIBDIR%%/external/paper_material/paper-material-shared-styles.html
786
%%PYTHON_SITELIBDIR%%/external/paper_material/paper-material.html
787
%%PYTHON_SITELIBDIR%%/external/paper_menu/index.html
788
%%PYTHON_SITELIBDIR%%/external/paper_menu/paper-menu-shared-styles.html
789
%%PYTHON_SITELIBDIR%%/external/paper_menu/paper-menu.html
790
%%PYTHON_SITELIBDIR%%/external/paper_menu/paper-submenu.html
791
%%PYTHON_SITELIBDIR%%/external/paper_menu_button/index.html
792
%%PYTHON_SITELIBDIR%%/external/paper_menu_button/paper-menu-button-animations.html
793
%%PYTHON_SITELIBDIR%%/external/paper_menu_button/paper-menu-button.html
794
%%PYTHON_SITELIBDIR%%/external/paper_progress/index.html
795
%%PYTHON_SITELIBDIR%%/external/paper_progress/paper-progress.html
796
%%PYTHON_SITELIBDIR%%/external/paper_radio_button/index.html
797
%%PYTHON_SITELIBDIR%%/external/paper_radio_button/paper-radio-button.html
798
%%PYTHON_SITELIBDIR%%/external/paper_radio_group/index.html
799
%%PYTHON_SITELIBDIR%%/external/paper_radio_group/paper-radio-group.html
800
%%PYTHON_SITELIBDIR%%/external/paper_ripple/index.html
801
%%PYTHON_SITELIBDIR%%/external/paper_ripple/paper-ripple.html
802
%%PYTHON_SITELIBDIR%%/external/paper_slider/index.html
803
%%PYTHON_SITELIBDIR%%/external/paper_slider/paper-slider.html
804
%%PYTHON_SITELIBDIR%%/external/paper_spinner/index.html
805
%%PYTHON_SITELIBDIR%%/external/paper_spinner/paper-spinner-behavior.html
806
%%PYTHON_SITELIBDIR%%/external/paper_spinner/paper-spinner-lite.html
807
%%PYTHON_SITELIBDIR%%/external/paper_spinner/paper-spinner-styles.html
808
%%PYTHON_SITELIBDIR%%/external/paper_spinner/paper-spinner.html
809
%%PYTHON_SITELIBDIR%%/external/paper_styles/classes/global.html
810
%%PYTHON_SITELIBDIR%%/external/paper_styles/classes/shadow-layout.html
811
%%PYTHON_SITELIBDIR%%/external/paper_styles/classes/shadow.html
812
%%PYTHON_SITELIBDIR%%/external/paper_styles/classes/typography.html
813
%%PYTHON_SITELIBDIR%%/external/paper_styles/color.html
814
%%PYTHON_SITELIBDIR%%/external/paper_styles/default-theme.html
815
%%PYTHON_SITELIBDIR%%/external/paper_styles/demo-pages.html
816
%%PYTHON_SITELIBDIR%%/external/paper_styles/demo.css
817
%%PYTHON_SITELIBDIR%%/external/paper_styles/index.html
818
%%PYTHON_SITELIBDIR%%/external/paper_styles/paper-styles-classes.html
819
%%PYTHON_SITELIBDIR%%/external/paper_styles/paper-styles.html
820
%%PYTHON_SITELIBDIR%%/external/paper_styles/shadow.html
821
%%PYTHON_SITELIBDIR%%/external/paper_styles/typography.html
822
%%PYTHON_SITELIBDIR%%/external/paper_tabs/index.html
823
%%PYTHON_SITELIBDIR%%/external/paper_tabs/paper-tab.html
824
%%PYTHON_SITELIBDIR%%/external/paper_tabs/paper-tabs-icons.html
825
%%PYTHON_SITELIBDIR%%/external/paper_tabs/paper-tabs.html
826
%%PYTHON_SITELIBDIR%%/external/paper_toast/index.html
827
%%PYTHON_SITELIBDIR%%/external/paper_toast/paper-toast.html
828
%%PYTHON_SITELIBDIR%%/external/paper_toggle_button/index.html
829
%%PYTHON_SITELIBDIR%%/external/paper_toggle_button/paper-toggle-button.html
830
%%PYTHON_SITELIBDIR%%/external/paper_toolbar/index.html
831
%%PYTHON_SITELIBDIR%%/external/paper_toolbar/paper-toolbar.html
832
%%PYTHON_SITELIBDIR%%/external/paper_tooltip/index.html
833
%%PYTHON_SITELIBDIR%%/external/paper_tooltip/paper-tooltip.html
834
%%PYTHON_SITELIBDIR%%/external/plottable/plottable.css
835
%%PYTHON_SITELIBDIR%%/external/plottable/plottable.js
836
%%PYTHON_SITELIBDIR%%/external/plottable/plottable.min.js
837
%%PYTHON_SITELIBDIR%%/external/png_archive/LICENSE
838
%%PYTHON_SITELIBDIR%%/external/png_archive/png.h
839
%%PYTHON_SITELIBDIR%%/external/png_archive/pngconf.h
840
%%PYTHON_SITELIBDIR%%/external/polymer/polymer-micro.html
841
%%PYTHON_SITELIBDIR%%/external/polymer/polymer-mini.html
842
%%PYTHON_SITELIBDIR%%/external/polymer/polymer.html
843
%%PYTHON_SITELIBDIR%%/external/promise_polyfill/Gruntfile.js
844
%%PYTHON_SITELIBDIR%%/external/promise_polyfill/Promise-Statics.js
845
%%PYTHON_SITELIBDIR%%/external/promise_polyfill/Promise.js
846
%%PYTHON_SITELIBDIR%%/external/promise_polyfill/Promise.min.js
847
%%PYTHON_SITELIBDIR%%/external/promise_polyfill/promise-polyfill-lite.html
848
%%PYTHON_SITELIBDIR%%/external/promise_polyfill/promise-polyfill.html
849
%%PYTHON_SITELIBDIR%%/external/protobuf/LICENSE
850
%%PYTHON_SITELIBDIR%%/external/protobuf/__init__.py
851
%%PYTHON_SITELIBDIR%%/external/protobuf/python/__init__.py
852
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/__init__.py
853
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/__init__.py
854
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/any_pb2.py
855
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/api_pb2.py
856
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/compiler/__init__.py
857
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/compiler/plugin_pb2.py
858
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/descriptor.py
859
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/descriptor_database.py
860
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/descriptor_pb2.py
861
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/descriptor_pool.py
862
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/duration_pb2.py
863
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/empty_pb2.py
864
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/field_mask_pb2.py
865
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/__init__.py
866
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/_api_implementation.so
867
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/_parameterized.py
868
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/api_implementation.py
869
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/containers.py
870
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/decoder.py
871
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/encoder.py
872
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/enum_type_wrapper.py
873
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/message_listener.py
874
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/python_message.py
875
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/testing_refleaks.py
876
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/type_checkers.py
877
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/well_known_types.py
878
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/internal/wire_format.py
879
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/json_format.py
880
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/message.py
881
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/message_factory.py
882
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/proto_builder.py
883
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/pyext/__init__.py
884
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/pyext/_message.so
885
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/pyext/cpp_message.py
886
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/reflection.py
887
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/service.py
888
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/service_reflection.py
889
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/source_context_pb2.py
890
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/struct_pb2.py
891
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/symbol_database.py
892
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/text_encoding.py
893
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/text_format.py
894
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/timestamp_pb2.py
895
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/type_pb2.py
896
%%PYTHON_SITELIBDIR%%/external/protobuf/python/google/protobuf/wrappers_pb2.py
897
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/any.h
898
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/any.pb.h
899
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/api.pb.h
900
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/arena.h
901
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/arena_test_util.h
902
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/arenastring.h
903
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/code_generator.h
904
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/command_line_interface.h
905
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_enum.h
906
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_enum_field.h
907
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_extension.h
908
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_field.h
909
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_file.h
910
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_generator.h
911
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.h
912
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_map_field.h
913
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_message.h
914
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_message_field.h
915
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_options.h
916
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_primitive_field.h
917
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_service.h
918
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_string_field.h
919
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/cpp/cpp_unittest.h
920
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_doc_comment.h
921
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_enum.h
922
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_enum_field.h
923
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_field_base.h
924
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_generator.h
925
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_helpers.h
926
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_map_field.h
927
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_message.h
928
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_message_field.h
929
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_names.h
930
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_options.h
931
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_primitive_field.h
932
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_reflection_class.h
933
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.h
934
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.h
935
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.h
936
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_source_generator_base.h
937
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/csharp/csharp_wrapper_field.h
938
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/importer.h
939
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_context.h
940
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_doc_comment.h
941
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_enum.h
942
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_enum_field.h
943
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_enum_field_lite.h
944
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_enum_lite.h
945
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_extension.h
946
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_extension_lite.h
947
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_field.h
948
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_file.h
949
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_generator.h
950
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_generator_factory.h
951
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_helpers.h
952
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_lazy_message_field.h
953
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_lazy_message_field_lite.h
954
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_map_field.h
955
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_map_field_lite.h
956
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_message.h
957
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_message_builder.h
958
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_message_builder_lite.h
959
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_message_field.h
960
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_message_field_lite.h
961
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_message_lite.h
962
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_name_resolver.h
963
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_names.h
964
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_options.h
965
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_primitive_field.h
966
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_primitive_field_lite.h
967
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_service.h
968
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_shared_code_generator.h
969
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_string_field.h
970
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/java/java_string_field_lite.h
971
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_enum.h
972
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_enum_field.h
973
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_extension.h
974
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_field.h
975
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_file.h
976
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_generator.h
977
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_helpers.h
978
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_map_field.h
979
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_message.h
980
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_message_field.h
981
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_params.h
982
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/javanano/javanano_primitive_field.h
983
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/js/js_generator.h
984
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/js/well_known_types_embed.h
985
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/mock_code_generator.h
986
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_enum.h
987
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_enum_field.h
988
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_extension.h
989
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_field.h
990
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_file.h
991
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_generator.h
992
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_helpers.h
993
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_map_field.h
994
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_message.h
995
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_message_field.h
996
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_oneof.h
997
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.h
998
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/package_info.h
999
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/parser.h
1000
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/php/php_generator.h
1001
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/plugin.h
1002
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/plugin.pb.h
1003
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/python/python_generator.h
1004
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/ruby/ruby_generator.h
1005
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/subprocess.h
1006
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/compiler/zip_writer.h
1007
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/descriptor.h
1008
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/descriptor.pb.h
1009
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/descriptor_database.h
1010
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/duration.pb.h
1011
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/dynamic_message.h
1012
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/empty.pb.h
1013
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/extension_set.h
1014
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/field_mask.pb.h
1015
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/generated_enum_reflection.h
1016
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/generated_enum_util.h
1017
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/generated_message_reflection.h
1018
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/generated_message_util.h
1019
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/has_bits.h
1020
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/io/coded_stream.h
1021
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/io/coded_stream_inl.h
1022
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/io/gzip_stream.h
1023
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/io/package_info.h
1024
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/io/printer.h
1025
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/io/strtod.h
1026
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/io/tokenizer.h
1027
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/io/zero_copy_stream.h
1028
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/io/zero_copy_stream_impl.h
1029
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.h
1030
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/map.h
1031
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/map_entry.h
1032
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/map_entry_lite.h
1033
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/map_field.h
1034
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/map_field_inl.h
1035
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/map_field_lite.h
1036
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/map_lite_test_util.h
1037
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/map_test_util.h
1038
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/map_test_util_impl.h
1039
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/map_type_handler.h
1040
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/message.h
1041
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/message_lite.h
1042
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/metadata.h
1043
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/package_info.h
1044
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/reflection.h
1045
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/reflection_internal.h
1046
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/reflection_ops.h
1047
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/repeated_field.h
1048
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/service.h
1049
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/source_context.pb.h
1050
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/struct.pb.h
1051
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomic_sequence_num.h
1052
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops.h
1053
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_arm64_gcc.h
1054
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_arm_gcc.h
1055
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_arm_qnx.h
1056
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_atomicword_compat.h
1057
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_generic_c11_atomic.h
1058
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_generic_gcc.h
1059
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_mips_gcc.h
1060
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_power.h
1061
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_ppc_gcc.h
1062
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_solaris.h
1063
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_tsan.h
1064
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_x86_gcc.h
1065
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/atomicops_internals_x86_msvc.h
1066
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/bytestream.h
1067
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/callback.h
1068
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/casts.h
1069
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/common.h
1070
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/fastmem.h
1071
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/hash.h
1072
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/int128.h
1073
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/logging.h
1074
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/macros.h
1075
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/map_util.h
1076
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/mathlimits.h
1077
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/mathutil.h
1078
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/mutex.h
1079
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/once.h
1080
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/platform_macros.h
1081
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/port.h
1082
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/scoped_ptr.h
1083
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/shared_ptr.h
1084
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/singleton.h
1085
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/status.h
1086
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/status_macros.h
1087
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/statusor.h
1088
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/stl_util.h
1089
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/stringpiece.h
1090
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/stringprintf.h
1091
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/strutil.h
1092
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/substitute.h
1093
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/template_util.h
1094
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/time.h
1095
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/stubs/type_traits.h
1096
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/test_util.h
1097
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/test_util_lite.h
1098
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/testing/file.h
1099
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/testing/googletest.h
1100
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/text_format.h
1101
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/timestamp.pb.h
1102
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/type.pb.h
1103
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/unknown_field_set.h
1104
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/field_comparator.h
1105
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/field_mask_util.h
1106
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/constants.h
1107
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/datapiece.h
1108
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/default_value_objectwriter.h
1109
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/error_listener.h
1110
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/expecting_objectwriter.h
1111
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/field_mask_utility.h
1112
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/json_escaping.h
1113
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/json_objectwriter.h
1114
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/json_stream_parser.h
1115
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/location_tracker.h
1116
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/mock_error_listener.h
1117
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/object_location_tracker.h
1118
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/object_source.h
1119
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/object_writer.h
1120
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/proto_writer.h
1121
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/protostream_objectsource.h
1122
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/protostream_objectwriter.h
1123
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/structured_objectwriter.h
1124
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/type_info.h
1125
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/type_info_test_helper.h
1126
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/internal/utility.h
1127
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/json_util.h
1128
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/message_differencer.h
1129
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/package_info.h
1130
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/time_util.h
1131
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/type_resolver.h
1132
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/util/type_resolver_util.h
1133
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/wire_format.h
1134
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/wire_format_lite.h
1135
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/wire_format_lite_inl.h
1136
%%PYTHON_SITELIBDIR%%/external/protobuf/src/google/protobuf/wrappers.pb.h
1137
%%PYTHON_SITELIBDIR%%/external/six_archive/LICENSE
1138
%%PYTHON_SITELIBDIR%%/external/six_archive/__init__.py
1139
%%PYTHON_SITELIBDIR%%/external/six_archive/six.py
1140
%%PYTHON_SITELIBDIR%%/external/snappy/COPYING
1141
%%PYTHON_SITELIBDIR%%/external/snappy/snappy-c.h
1142
%%PYTHON_SITELIBDIR%%/external/snappy/snappy-internal.h
1143
%%PYTHON_SITELIBDIR%%/external/snappy/snappy-sinksource.h
1144
%%PYTHON_SITELIBDIR%%/external/snappy/snappy-stubs-internal.h
1145
%%PYTHON_SITELIBDIR%%/external/snappy/snappy-stubs-public.h
1146
%%PYTHON_SITELIBDIR%%/external/snappy/snappy.h
1147
%%PYTHON_SITELIBDIR%%/external/three_js_orbitcontrols_js/file/OrbitControls.js
1148
%%PYTHON_SITELIBDIR%%/external/three_js_three_min_js/file/three.min.js
1149
%%PYTHON_SITELIBDIR%%/external/web_animations_js/web-animations-next-lite.min.js
1150
%%PYTHON_SITELIBDIR%%/external/web_animations_js/web-animations-next.min.js
1151
%%PYTHON_SITELIBDIR%%/external/web_animations_js/web-animations.html
1152
%%PYTHON_SITELIBDIR%%/external/web_animations_js/web-animations.min.js
1153
%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/CustomElements.js
1154
%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/CustomElements.min.js
1155
%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/HTMLImports.js
1156
%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/HTMLImports.min.js
1157
%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/MutationObserver.js
1158
%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/MutationObserver.min.js
1159
%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/ShadowDOM.js
1160
%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/ShadowDOM.min.js
1161
%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/webcomponents-lite.js
1162
%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/webcomponents-lite.min.js
1163
%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/webcomponents.js
1164
%%PYTHON_SITELIBDIR%%/external/webcomponentsjs/webcomponents.min.js
1165
%%PYTHON_SITELIBDIR%%/external/weblas_weblas_js/file/weblas.js
1166
%%PYTHON_SITELIBDIR%%/external/zlib_archive/crc32.h
1167
%%PYTHON_SITELIBDIR%%/external/zlib_archive/deflate.h
1168
%%PYTHON_SITELIBDIR%%/external/zlib_archive/gzguts.h
1169
%%PYTHON_SITELIBDIR%%/external/zlib_archive/inffast.h
1170
%%PYTHON_SITELIBDIR%%/external/zlib_archive/inffixed.h
1171
%%PYTHON_SITELIBDIR%%/external/zlib_archive/inflate.h
1172
%%PYTHON_SITELIBDIR%%/external/zlib_archive/inftrees.h
1173
%%PYTHON_SITELIBDIR%%/external/zlib_archive/trees.h
1174
%%PYTHON_SITELIBDIR%%/external/zlib_archive/zconf.h
1175
%%PYTHON_SITELIBDIR%%/external/zlib_archive/zlib.h
1176
%%PYTHON_SITELIBDIR%%/external/zlib_archive/zutil.h
1177
%%PYTHON_SITELIBDIR%%/tensorflow-1.2.0.dist-info/DESCRIPTION.rst
1178
%%PYTHON_SITELIBDIR%%/tensorflow-1.2.0.dist-info/METADATA
1179
%%PYTHON_SITELIBDIR%%/tensorflow-1.2.0.dist-info/RECORD
1180
%%PYTHON_SITELIBDIR%%/tensorflow-1.2.0.dist-info/WHEEL
1181
%%PYTHON_SITELIBDIR%%/tensorflow-1.2.0.dist-info/entry_points.txt
1182
%%PYTHON_SITELIBDIR%%/tensorflow-1.2.0.dist-info/metadata.json
1183
%%PYTHON_SITELIBDIR%%/tensorflow-1.2.0.dist-info/top_level.txt
1184
%%PYTHON_SITELIBDIR%%/tensorflow/__init__.py
1185
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/__init__.py
1186
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/batching/__init__.py
1187
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/batching/ops/__init__.py
1188
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/batching/ops/gen_batch_ops.py
1189
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/batching/python/__init__.py
1190
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/batching/python/ops/__init__.py
1191
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/batching/python/ops/_batch_ops.so
1192
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/batching/python/ops/batch_ops.py
1193
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/batching/python/ops/batch_ops_test.py
1194
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/__init__.py
1195
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/__init__.py
1196
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/__init__.py
1197
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/entropy.py
1198
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/entropy_impl.py
1199
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/monte_carlo.py
1200
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/monte_carlo_impl.py
1201
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/stochastic_gradient_estimators.py
1202
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/stochastic_graph.py
1203
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/stochastic_graph_impl.py
1204
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/stochastic_tensor.py
1205
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/stochastic_tensor_impl.py
1206
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/stochastic_variables.py
1207
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/variational_inference.py
1208
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/bayesflow/python/ops/variational_inference_impl.py
1209
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cloud/__init__.py
1210
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cloud/python/__init__.py
1211
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cloud/python/ops/__init__.py
1212
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cloud/python/ops/bigquery_reader_ops.py
1213
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cloud/python/ops/gen_bigquery_reader_ops.py
1214
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cmake/__init__.py
1215
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cmake/tools/__init__.py
1216
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cmake/tools/create_def_file.py
1217
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/compiler/__init__.py
1218
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/compiler/jit.py
1219
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/copy_graph/__init__.py
1220
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/copy_graph/python/__init__.py
1221
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/copy_graph/python/util/__init__.py
1222
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/copy_graph/python/util/copy_elements.py
1223
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/crf/__init__.py
1224
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/crf/python/__init__.py
1225
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/crf/python/ops/__init__.py
1226
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/crf/python/ops/crf.py
1227
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cudnn_rnn/__init__.py
1228
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cudnn_rnn/ops/__init__.py
1229
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cudnn_rnn/ops/gen_cudnn_rnn_ops.py
1230
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cudnn_rnn/python/__init__.py
1231
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cudnn_rnn/python/ops/__init__.py
1232
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cudnn_rnn/python/ops/_cudnn_rnn_ops.so
1233
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/cudnn_rnn/python/ops/cudnn_rnn_ops.py
1234
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/data/__init__.py
1235
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/data/python/__init__.py
1236
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/data/python/framework/__init__.py
1237
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/data/python/framework/function.py
1238
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/data/python/ops/__init__.py
1239
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/data/python/ops/dataset_ops.py
1240
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/deprecated/__init__.py
1241
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/__init__.py
1242
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/__init__.py
1243
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/__init__.py
1244
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/__init__.py
1245
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/affine.py
1246
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/affine_impl.py
1247
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/affine_linear_operator.py
1248
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/affine_linear_operator_impl.py
1249
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/chain.py
1250
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/chain_impl.py
1251
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/cholesky_outer_product.py
1252
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/cholesky_outer_product_impl.py
1253
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/conditional_bijector.py
1254
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/conditional_bijector_impl.py
1255
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/exp.py
1256
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/exp_impl.py
1257
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/inline.py
1258
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/inline_impl.py
1259
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/invert.py
1260
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/invert_impl.py
1261
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/power_transform.py
1262
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/power_transform_impl.py
1263
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/sigmoid.py
1264
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/sigmoid_centered.py
1265
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/sigmoid_centered_impl.py
1266
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/sigmoid_impl.py
1267
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/softmax_centered.py
1268
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/softmax_centered_impl.py
1269
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/softplus.py
1270
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/bijectors/softplus_impl.py
1271
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/binomial.py
1272
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/chi2.py
1273
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/conditional_distribution.py
1274
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/conditional_transformed_distribution.py
1275
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/deterministic.py
1276
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/distribution_util.py
1277
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/geometric.py
1278
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/gumbel.py
1279
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/inverse_gamma.py
1280
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/logistic.py
1281
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/mixture.py
1282
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/mvn_diag.py
1283
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/mvn_diag_plus_low_rank.py
1284
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/mvn_full_covariance.py
1285
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/mvn_linear_operator.py
1286
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/mvn_tril.py
1287
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/negative_binomial.py
1288
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/normal_conjugate_posteriors.py
1289
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/onehot_categorical.py
1290
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/operator_pd.py
1291
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/operator_pd_cholesky.py
1292
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/operator_pd_diag.py
1293
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/operator_pd_full.py
1294
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/operator_pd_identity.py
1295
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/operator_pd_vdvt_update.py
1296
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/operator_test_util.py
1297
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/poisson.py
1298
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/quantized_distribution.py
1299
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/relaxed_bernoulli.py
1300
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/relaxed_onehot_categorical.py
1301
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/sample_stats.py
1302
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/shape.py
1303
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/vector_laplace_diag.py
1304
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/vector_laplace_linear_operator.py
1305
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/vector_student_t.py
1306
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/distributions/python/ops/wishart.py
1307
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/__init__.py
1308
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/__init__.py
1309
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/ops/__init__.py
1310
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/ops/_clustering_ops.so
1311
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/ops/_factorization_ops.so
1312
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/ops/clustering_ops.py
1313
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/ops/factorization_ops.py
1314
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/ops/factorization_ops_test_utils.py
1315
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/ops/gen_clustering_ops.py
1316
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/ops/gen_factorization_ops.py
1317
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/ops/gmm.py
1318
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/ops/gmm_ops.py
1319
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/factorization/python/ops/wals.py
1320
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ffmpeg/__init__.py
1321
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ffmpeg/ffmpeg.so
1322
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ffmpeg/ffmpeg_ops.py
1323
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ffmpeg/ops/__init__.py
1324
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ffmpeg/ops/gen_decode_audio_op_py.py
1325
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ffmpeg/ops/gen_encode_audio_op_py.py
1326
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/__init__.py
1327
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/__init__.py
1328
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/framework/__init__.py
1329
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/framework/checkpoint_utils.py
1330
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/framework/experimental.py
1331
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/framework/tensor_util.py
1332
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/ops/__init__.py
1333
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/ops/_variable_ops.so
1334
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/ops/arg_scope.py
1335
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/ops/gen_variable_ops.py
1336
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/ops/ops.py
1337
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/ops/prettyprint_ops.py
1338
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/framework/python/ops/variables.py
1339
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/graph_editor/__init__.py
1340
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/graph_editor/edit.py
1341
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/graph_editor/reroute.py
1342
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/graph_editor/select.py
1343
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/graph_editor/subgraph.py
1344
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/graph_editor/tests/__init__.py
1345
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/graph_editor/tests/match.py
1346
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/graph_editor/transform.py
1347
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/graph_editor/util.py
1348
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/grid_rnn/__init__.py
1349
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/grid_rnn/python/__init__.py
1350
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/grid_rnn/python/ops/__init__.py
1351
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/grid_rnn/python/ops/grid_rnn_cell.py
1352
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/hooks/__init__.py
1353
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/hooks/python/__init__.py
1354
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/hooks/python/training/__init__.py
1355
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/hooks/python/training/profiler_hook.py
1356
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/image/__init__.py
1357
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/image/ops/__init__.py
1358
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/image/ops/gen_image_ops.py
1359
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/image/ops/gen_single_image_random_dot_stereograms_ops.py
1360
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/image/python/__init__.py
1361
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/image/python/ops/__init__.py
1362
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/image/python/ops/_image_ops.so
1363
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/image/python/ops/_single_image_random_dot_stereograms.so
1364
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/image/python/ops/image_ops.py
1365
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/image/python/ops/single_image_random_dot_stereograms.py
1366
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/imperative/__init__.py
1367
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/imperative/imperative_graph.py
1368
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/imperative/imperative_mode.py
1369
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/input_pipeline/__init__.py
1370
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/input_pipeline/ops/__init__.py
1371
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/input_pipeline/ops/gen_input_pipeline_ops.py
1372
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/input_pipeline/python/__init__.py
1373
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/input_pipeline/python/ops/__init__.py
1374
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/input_pipeline/python/ops/_input_pipeline_ops.so
1375
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/input_pipeline/python/ops/input_pipeline_ops.py
1376
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/input_pipeline/python/ops/input_pipeline_ops_test.py
1377
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/integrate/__init__.py
1378
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/integrate/python/__init__.py
1379
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/integrate/python/ops/__init__.py
1380
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/integrate/python/ops/odes.py
1381
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/__init__.py
1382
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/__init__.py
1383
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/__init__.py
1384
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/activations/__init__.py
1385
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/applications/__init__.py
1386
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/applications/inception_v3/__init__.py
1387
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/applications/resnet50/__init__.py
1388
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/applications/vgg16/__init__.py
1389
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/applications/vgg19/__init__.py
1390
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/applications/xception/__init__.py
1391
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/backend/__init__.py
1392
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/callbacks/__init__.py
1393
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/constraints/__init__.py
1394
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/datasets/__init__.py
1395
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/datasets/boston_housing/__init__.py
1396
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/datasets/cifar10/__init__.py
1397
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/datasets/cifar100/__init__.py
1398
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/datasets/imdb/__init__.py
1399
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/datasets/mnist/__init__.py
1400
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/datasets/reuters/__init__.py
1401
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/initializers/__init__.py
1402
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/layers/__init__.py
1403
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/losses/__init__.py
1404
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/metrics/__init__.py
1405
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/models/__init__.py
1406
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/optimizers/__init__.py
1407
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/preprocessing/__init__.py
1408
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/preprocessing/image/__init__.py
1409
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/preprocessing/sequence/__init__.py
1410
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/preprocessing/text/__init__.py
1411
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/regularizers/__init__.py
1412
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/utils/__init__.py
1413
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/wrappers/__init__.py
1414
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/api/keras/wrappers/scikit_learn/__init__.py
1415
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/__init__.py
1416
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/__init__.py
1417
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/activations.py
1418
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/applications/__init__.py
1419
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/applications/imagenet_utils.py
1420
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/applications/inception_v3.py
1421
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/applications/resnet50.py
1422
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/applications/vgg16.py
1423
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/applications/vgg19.py
1424
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/applications/xception.py
1425
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/backend.py
1426
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/callbacks.py
1427
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/constraints.py
1428
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/datasets/__init__.py
1429
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/datasets/boston_housing.py
1430
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/datasets/cifar.py
1431
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/datasets/cifar10.py
1432
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/datasets/cifar100.py
1433
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/datasets/imdb.py
1434
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/datasets/mnist.py
1435
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/datasets/reuters.py
1436
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/engine/__init__.py
1437
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/engine/topology.py
1438
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/engine/training.py
1439
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/initializers.py
1440
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/__init__.py
1441
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/advanced_activations.py
1442
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/convolutional.py
1443
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/convolutional_recurrent.py
1444
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/core.py
1445
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/embeddings.py
1446
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/local.py
1447
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/merge.py
1448
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/noise.py
1449
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/normalization.py
1450
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/pooling.py
1451
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/recurrent.py
1452
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/serialization.py
1453
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/layers/wrappers.py
1454
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/losses.py
1455
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/metrics.py
1456
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/models.py
1457
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/optimizers.py
1458
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/preprocessing/__init__.py
1459
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/preprocessing/image.py
1460
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/preprocessing/sequence.py
1461
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/preprocessing/text.py
1462
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/regularizers.py
1463
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/testing_utils.py
1464
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/utils/__init__.py
1465
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/utils/conv_utils.py
1466
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/utils/data_utils.py
1467
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/utils/generic_utils.py
1468
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/utils/io_utils.py
1469
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/utils/layer_utils.py
1470
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/utils/np_utils.py
1471
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/utils/vis_utils.py
1472
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/wrappers/__init__.py
1473
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/keras/python/keras/wrappers/scikit_learn.py
1474
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/kernel_methods/__init__.py
1475
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/kernel_methods/python/__init__.py
1476
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/kernel_methods/python/kernel_estimators.py
1477
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/kernel_methods/python/mappers/__init__.py
1478
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/kernel_methods/python/mappers/dense_kernel_mapper.py
1479
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/kernel_methods/python/mappers/random_fourier_features.py
1480
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/labeled_tensor/__init__.py
1481
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/labeled_tensor/python/__init__.py
1482
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/labeled_tensor/python/ops/__init__.py
1483
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/labeled_tensor/python/ops/_typecheck.py
1484
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/labeled_tensor/python/ops/core.py
1485
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/labeled_tensor/python/ops/io_ops.py
1486
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/labeled_tensor/python/ops/nn.py
1487
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/labeled_tensor/python/ops/ops.py
1488
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/labeled_tensor/python/ops/sugar.py
1489
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/labeled_tensor/python/ops/test_util.py
1490
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/__init__.py
1491
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/ops/__init__.py
1492
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/ops/gen_sparse_feature_cross_op.py
1493
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/__init__.py
1494
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/__init__.py
1495
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/embedding_ops.py
1496
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/encoders.py
1497
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/feature_column.py
1498
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/feature_column_ops.py
1499
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/initializers.py
1500
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/layers.py
1501
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/optimizers.py
1502
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/regularizers.py
1503
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/summaries.py
1504
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/target_column.py
1505
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/layers/utils.py
1506
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/ops/__init__.py
1507
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/ops/_sparse_feature_cross_op.so
1508
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/ops/bucketization_op.py
1509
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/ops/sparse_feature_cross_op.py
1510
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/layers/python/ops/sparse_ops.py
1511
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/__init__.py
1512
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/__init__.py
1513
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/__init__.py
1514
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/basic_session_run_hooks.py
1515
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/__init__.py
1516
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/dataframe.py
1517
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/estimator_utils.py
1518
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/queues/__init__.py
1519
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/queues/feeding_functions.py
1520
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/queues/feeding_queue_runner.py
1521
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/series.py
1522
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/tensorflow_dataframe.py
1523
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transform.py
1524
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/__init__.py
1525
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/batch.py
1526
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/binary_transforms.py
1527
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/boolean_mask.py
1528
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/csv_parser.py
1529
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/densify.py
1530
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/difference.py
1531
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/example_parser.py
1532
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/hashes.py
1533
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/in_memory_source.py
1534
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/reader_source.py
1535
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/sparsify.py
1536
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/split_mask.py
1537
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/sum.py
1538
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/dataframe/transforms/unary_transforms.py
1539
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/datasets/__init__.py
1540
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/datasets/base.py
1541
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/datasets/data/boston_house_prices.csv
1542
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/datasets/data/iris.csv
1543
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/datasets/data/text_test.csv
1544
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/datasets/data/text_train.csv
1545
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/datasets/mnist.py
1546
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/datasets/produce_small_datasets.py
1547
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/datasets/synthetic.py
1548
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/datasets/text_datasets.py
1549
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/__init__.py
1550
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/_sklearn.py
1551
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/composable_model.py
1552
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/constants.py
1553
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/dnn.py
1554
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/dnn_linear_combined.py
1555
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/dynamic_rnn_estimator.py
1556
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/estimator.py
1557
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/estimator_test_utils.py
1558
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/head.py
1559
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/kmeans.py
1560
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/linear.py
1561
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/logistic_regressor.py
1562
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/metric_key.py
1563
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/model_fn.py
1564
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/prediction_key.py
1565
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/rnn_common.py
1566
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/run_config.py
1567
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/state_saving_rnn_estimator.py
1568
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/svm.py
1569
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/tensor_signature.py
1570
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/estimators/test_data.py
1571
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/evaluable.py
1572
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/experiment.py
1573
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/export_strategy.py
1574
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/graph_actions.py
1575
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/learn_io/__init__.py
1576
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/learn_io/dask_io.py
1577
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/learn_io/data_feeder.py
1578
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/learn_io/generator_io.py
1579
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/learn_io/graph_io.py
1580
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/learn_io/numpy_io.py
1581
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/learn_io/pandas_io.py
1582
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/learn_runner.py
1583
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/learn_runner_lib.py
1584
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/metric_spec.py
1585
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/models.py
1586
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/monitored_session.py
1587
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/monitors.py
1588
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/ops/__init__.py
1589
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/ops/embeddings_ops.py
1590
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/ops/losses_ops.py
1591
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/ops/seq2seq_ops.py
1592
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/preprocessing/__init__.py
1593
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/preprocessing/categorical.py
1594
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/preprocessing/categorical_vocabulary.py
1595
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/preprocessing/tests/__init__.py
1596
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/preprocessing/text.py
1597
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/session_run_hook.py
1598
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/summary_writer_cache.py
1599
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/tests/__init__.py
1600
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/tests/dataframe/__init__.py
1601
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/tests/dataframe/mocks.py
1602
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/trainable.py
1603
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/utils/__init__.py
1604
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/utils/export.py
1605
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/utils/gc.py
1606
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/utils/input_fn_utils.py
1607
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/utils/inspect_checkpoint.py
1608
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/learn/python/learn/utils/saved_model_export_utils.py
1609
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/legacy_seq2seq/__init__.py
1610
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/legacy_seq2seq/python/__init__.py
1611
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/legacy_seq2seq/python/ops/__init__.py
1612
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/legacy_seq2seq/python/ops/seq2seq.py
1613
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/__init__.py
1614
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/__init__.py
1615
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/__init__.py
1616
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/linear_operator.py
1617
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/linear_operator_addition.py
1618
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/linear_operator_composition.py
1619
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/linear_operator_diag.py
1620
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/linear_operator_full_matrix.py
1621
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/linear_operator_identity.py
1622
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/linear_operator_test_util.py
1623
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/linear_operator_tril.py
1624
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/linear_operator_udvh_update.py
1625
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linalg/python/ops/linear_operator_util.py
1626
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linear_optimizer/__init__.py
1627
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linear_optimizer/python/__init__.py
1628
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linear_optimizer/python/ops/__init__.py
1629
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linear_optimizer/python/ops/sdca_ops.py
1630
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linear_optimizer/python/ops/sharded_mutable_dense_hashtable.py
1631
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linear_optimizer/python/ops/sparse_feature_column.py
1632
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linear_optimizer/python/sdca_estimator.py
1633
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/linear_optimizer/python/sdca_optimizer.py
1634
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/lookup/__init__.py
1635
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/lookup/lookup_ops.py
1636
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/losses/__init__.py
1637
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/losses/python/__init__.py
1638
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/losses/python/losses/__init__.py
1639
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/losses/python/losses/loss_ops.py
1640
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/memory_stats/__init__.py
1641
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/memory_stats/ops/__init__.py
1642
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/memory_stats/ops/gen_memory_stats_ops.py
1643
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/memory_stats/python/__init__.py
1644
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/memory_stats/python/ops/__init__.py
1645
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/memory_stats/python/ops/_memory_stats_ops.so
1646
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/memory_stats/python/ops/memory_stats_ops.py
1647
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/metrics/__init__.py
1648
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/metrics/python/__init__.py
1649
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/metrics/python/metrics/__init__.py
1650
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/metrics/python/metrics/classification.py
1651
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/metrics/python/ops/__init__.py
1652
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/metrics/python/ops/confusion_matrix_ops.py
1653
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/metrics/python/ops/histogram_ops.py
1654
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/metrics/python/ops/metric_ops.py
1655
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/metrics/python/ops/set_ops.py
1656
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nccl/__init__.py
1657
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nccl/ops/__init__.py
1658
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nccl/ops/gen_nccl_ops.py
1659
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nccl/python/__init__.py
1660
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nccl/python/ops/__init__.py
1661
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nccl/python/ops/_nccl_ops.so
1662
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nccl/python/ops/nccl_ops.py
1663
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ndlstm/__init__.py
1664
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ndlstm/python/__init__.py
1665
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ndlstm/python/lstm1d.py
1666
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ndlstm/python/lstm2d.py
1667
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/ndlstm/python/misc.py
1668
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nn/__init__.py
1669
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nn/python/__init__.py
1670
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nn/python/ops/__init__.py
1671
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/nn/python/ops/cross_entropy.py
1672
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/opt/__init__.py
1673
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/opt/python/__init__.py
1674
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/opt/python/training/__init__.py
1675
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/opt/python/training/drop_stale_gradient_optimizer.py
1676
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/opt/python/training/external_optimizer.py
1677
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/opt/python/training/lazy_adam_optimizer.py
1678
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/opt/python/training/moving_average_optimizer.py
1679
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/opt/python/training/nadam_optimizer.py
1680
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/opt/python/training/variable_clipping_optimizer.py
1681
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/quantization/__init__.py
1682
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/quantization/python/__init__.py
1683
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/quantization/python/array_ops.py
1684
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/quantization/python/math_ops.py
1685
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/quantization/python/nn_ops.py
1686
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/__init__.py
1687
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/ops/__init__.py
1688
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/ops/gen_gru_ops.py
1689
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/ops/gen_lstm_ops.py
1690
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/__init__.py
1691
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/ops/__init__.py
1692
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/ops/_gru_ops.so
1693
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/ops/_lstm_ops.so
1694
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/ops/core_rnn_cell.py
1695
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/ops/fused_rnn_cell.py
1696
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/ops/gru_ops.py
1697
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/ops/lstm_ops.py
1698
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/ops/rnn.py
1699
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/rnn/python/ops/rnn_cell.py
1700
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/saved_model/__init__.py
1701
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/saved_model/python/__init__.py
1702
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/saved_model/python/saved_model/__init__.py
1703
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/saved_model/python/saved_model/reader.py
1704
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/saved_model/python/saved_model/signature_def_utils.py
1705
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/__init__.py
1706
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/ops/__init__.py
1707
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/ops/gen_beam_search_ops.py
1708
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/python/__init__.py
1709
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/python/ops/__init__.py
1710
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/python/ops/_beam_search_ops.so
1711
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/python/ops/attention_wrapper.py
1712
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/python/ops/basic_decoder.py
1713
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/python/ops/beam_search_decoder.py
1714
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/python/ops/beam_search_ops.py
1715
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/python/ops/decoder.py
1716
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/python/ops/helper.py
1717
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/seq2seq/python/ops/loss.py
1718
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/session_bundle/__init__.py
1719
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/session_bundle/bundle_shim.py
1720
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/session_bundle/constants.py
1721
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/session_bundle/exporter.py
1722
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/session_bundle/gc.py
1723
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/session_bundle/manifest_pb2.py
1724
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/session_bundle/session_bundle.py
1725
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/signal/__init__.py
1726
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/signal/python/__init__.py
1727
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/signal/python/ops/__init__.py
1728
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/signal/python/ops/shape_ops.py
1729
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/__init__.py
1730
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/nets.py
1731
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/__init__.py
1732
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/__init__.py
1733
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/data/__init__.py
1734
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/data/data_decoder.py
1735
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/data/data_provider.py
1736
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/data/dataset.py
1737
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/data/dataset_data_provider.py
1738
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/data/parallel_reader.py
1739
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/data/prefetch_queue.py
1740
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/data/test_utils.py
1741
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/data/tfexample_decoder.py
1742
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/evaluation.py
1743
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/learning.py
1744
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/model_analyzer.py
1745
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/__init__.py
1746
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/alexnet.py
1747
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/inception.py
1748
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/inception_v1.py
1749
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/inception_v2.py
1750
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/inception_v3.py
1751
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/overfeat.py
1752
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/resnet_utils.py
1753
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/resnet_v1.py
1754
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/resnet_v2.py
1755
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/nets/vgg.py
1756
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/slim/python/slim/queues.py
1757
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/solvers/__init__.py
1758
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/solvers/python/__init__.py
1759
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/solvers/python/ops/__init__.py
1760
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/solvers/python/ops/lanczos.py
1761
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/solvers/python/ops/least_squares.py
1762
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/solvers/python/ops/linear_equations.py
1763
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/solvers/python/ops/util.py
1764
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/sparsemax/__init__.py
1765
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/sparsemax/python/__init__.py
1766
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/sparsemax/python/ops/__init__.py
1767
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/sparsemax/python/ops/sparsemax.py
1768
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/sparsemax/python/ops/sparsemax_loss.py
1769
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/specs/__init__.py
1770
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/specs/python/__init__.py
1771
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/specs/python/params_ops.py
1772
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/specs/python/specs.py
1773
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/specs/python/specs_lib.py
1774
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/specs/python/specs_ops.py
1775
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/specs/python/summaries.py
1776
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/staging/__init__.py
1777
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/stat_summarizer/__init__.py
1778
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/stateless/__init__.py
1779
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/stateless/gen_stateless_random_ops.py
1780
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/__init__.py
1781
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/client/__init__.py
1782
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/client/eval_metrics.py
1783
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/client/random_forest.py
1784
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/__init__.py
1785
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/ops/__init__.py
1786
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/ops/gen_training_ops.py
1787
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/__init__.py
1788
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/hybrid_layer.py
1789
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/hybrid_model.py
1790
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/layers/__init__.py
1791
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/layers/decisions_to_data.py
1792
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/layers/fully_connected.py
1793
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/models/__init__.py
1794
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/models/decisions_to_data_then_nn.py
1795
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/models/forest_to_data_then_nn.py
1796
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/models/hard_decisions_to_data_then_nn.py
1797
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/models/k_feature_decisions_to_data_then_nn.py
1798
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/models/nn.py
1799
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/models/stochastic_hard_decisions_to_data_then_nn.py
1800
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/models/stochastic_soft_decisions_to_data_then_nn.py
1801
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/ops/__init__.py
1802
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/ops/_training_ops.so
1803
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/hybrid/python/ops/training_ops.py
1804
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/python/__init__.py
1805
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/python/constants.py
1806
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/python/ops/__init__.py
1807
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/python/ops/_tensor_forest_ops.so
1808
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/python/ops/data_ops.py
1809
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/python/ops/gen_tensor_forest_ops.py
1810
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/python/ops/tensor_forest_ops.py
1811
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensor_forest/python/tensor_forest.py
1812
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensorboard/__init__.py
1813
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensorboard/graph_explorer/__init__.py
1814
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensorboard/graph_explorer/proto/__init__.py
1815
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensorboard/graph_explorer/proto/graph_explorer_pb2.py
1816
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensorboard/plugins/__init__.py
1817
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensorboard/plugins/projector/__init__.py
1818
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensorboard/plugins/trace/__init__.py
1819
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensorboard/plugins/trace/trace.py
1820
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tensorboard/plugins/trace/trace_info_pb2.py
1821
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/testing/__init__.py
1822
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/testing/python/__init__.py
1823
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/testing/python/framework/__init__.py
1824
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/testing/python/framework/fake_summary_writer.py
1825
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/testing/python/framework/util_test.py
1826
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tfprof/__init__.py
1827
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tfprof/python/__init__.py
1828
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tfprof/python/tools/__init__.py
1829
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tfprof/python/tools/tfprof/__init__.py
1830
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tfprof/python/tools/tfprof/_pywrap_tensorflow_print_model_analysis_lib.so
1831
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tfprof/python/tools/tfprof/model_analyzer.py
1832
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tfprof/python/tools/tfprof/pywrap_tensorflow_print_model_analysis_lib.py
1833
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/tfprof/python/tools/tfprof/tfprof_logger.py
1834
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/__init__.py
1835
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/__init__.py
1836
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/__init__.py
1837
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/bucket_ops.py
1838
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/device_setter.py
1839
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/evaluation.py
1840
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/failure_tolerator.py
1841
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/feeder.py
1842
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/hparam.py
1843
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/hparam_pb2.py
1844
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/python_input.py
1845
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/resample.py
1846
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/sampling_ops.py
1847
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/sequence_queueing_state_saver.py
1848
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/training.py
1849
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/training/python/training/tuner.py
1850
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/util/__init__.py
1851
%%PYTHON_SITELIBDIR%%/tensorflow/contrib/util/loader.py
1852
%%PYTHON_SITELIBDIR%%/tensorflow/core/__init__.py
1853
%%PYTHON_SITELIBDIR%%/tensorflow/core/example/__init__.py
1854
%%PYTHON_SITELIBDIR%%/tensorflow/core/example/example_parser_configuration_pb2.py
1855
%%PYTHON_SITELIBDIR%%/tensorflow/core/example/example_pb2.py
1856
%%PYTHON_SITELIBDIR%%/tensorflow/core/example/feature_pb2.py
1857
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/__init__.py
1858
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/allocation_description_pb2.py
1859
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/attr_value_pb2.py
1860
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/cost_graph_pb2.py
1861
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/device_attributes_pb2.py
1862
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/function_pb2.py
1863
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/graph_pb2.py
1864
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/graph_transfer_info_pb2.py
1865
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/kernel_def_pb2.py
1866
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/log_memory_pb2.py
1867
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/node_def_pb2.py
1868
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/op_def_pb2.py
1869
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/remote_fused_graph_execute_info_pb2.py
1870
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/resource_handle_pb2.py
1871
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/step_stats_pb2.py
1872
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/summary_pb2.py
1873
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/tensor_description_pb2.py
1874
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/tensor_pb2.py
1875
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/tensor_shape_pb2.py
1876
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/tensor_slice_pb2.py
1877
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/types_pb2.py
1878
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/variable_pb2.py
1879
%%PYTHON_SITELIBDIR%%/tensorflow/core/framework/versions_pb2.py
1880
%%PYTHON_SITELIBDIR%%/tensorflow/core/lib/__init__.py
1881
%%PYTHON_SITELIBDIR%%/tensorflow/core/lib/core/__init__.py
1882
%%PYTHON_SITELIBDIR%%/tensorflow/core/lib/core/error_codes_pb2.py
1883
%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/__init__.py
1884
%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/cluster_pb2.py
1885
%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/config_pb2.py
1886
%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/control_flow_pb2.py
1887
%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/debug_pb2.py
1888
%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/device_properties_pb2.py
1889
%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/meta_graph_pb2.py
1890
%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/named_tensor_pb2.py
1891
%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/queue_runner_pb2.py
1892
%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/rewriter_config_pb2.py
1893
%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/saved_model_pb2.py
1894
%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/saver_pb2.py
1895
%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/tensor_bundle_pb2.py
1896
%%PYTHON_SITELIBDIR%%/tensorflow/core/protobuf/tensorflow_server_pb2.py
1897
%%PYTHON_SITELIBDIR%%/tensorflow/core/util/__init__.py
1898
%%PYTHON_SITELIBDIR%%/tensorflow/core/util/event_pb2.py
1899
%%PYTHON_SITELIBDIR%%/tensorflow/core/util/memmapped_file_system_pb2.py
1900
%%PYTHON_SITELIBDIR%%/tensorflow/core/util/saved_tensor_slice_pb2.py
1901
%%PYTHON_SITELIBDIR%%/tensorflow/core/util/test_log_pb2.py
1902
%%PYTHON_SITELIBDIR%%/tensorflow/examples/__init__.py
1903
%%PYTHON_SITELIBDIR%%/tensorflow/examples/tutorials/__init__.py
1904
%%PYTHON_SITELIBDIR%%/tensorflow/examples/tutorials/mnist/__init__.py
1905
%%PYTHON_SITELIBDIR%%/tensorflow/examples/tutorials/mnist/input_data.py
1906
%%PYTHON_SITELIBDIR%%/tensorflow/examples/tutorials/mnist/mnist.py
1907
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/Cholesky
1908
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/CholmodSupport
1909
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/Core
1910
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/Dense
1911
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/Eigenvalues
1912
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/Geometry
1913
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/Householder
1914
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/Jacobi
1915
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/LU
1916
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/OrderingMethods
1917
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/PaStiXSupport
1918
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/PardisoSupport
1919
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/QR
1920
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/QtAlignedMalloc
1921
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/SPQRSupport
1922
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/SVD
1923
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/SparseCore
1924
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/SparseQR
1925
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/StdDeque
1926
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/StdList
1927
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/StdVector
1928
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/SuperLUSupport
1929
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/UmfPackSupport
1930
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Cholesky/LDLT.h
1931
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Cholesky/LLT.h
1932
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Cholesky/LLT_LAPACKE.h
1933
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/CholmodSupport/CholmodSupport.h
1934
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/ArithmeticSequence.h
1935
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Array.h
1936
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/ArrayBase.h
1937
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/ArrayWrapper.h
1938
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Assign.h
1939
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/AssignEvaluator.h
1940
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Assign_MKL.h
1941
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/BandMatrix.h
1942
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Block.h
1943
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/BooleanRedux.h
1944
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/CommaInitializer.h
1945
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/ConditionEstimator.h
1946
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/CoreEvaluators.h
1947
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/CoreIterators.h
1948
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/CwiseBinaryOp.h
1949
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/CwiseNullaryOp.h
1950
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/CwiseTernaryOp.h
1951
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/CwiseUnaryOp.h
1952
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/CwiseUnaryView.h
1953
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/DenseBase.h
1954
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/DenseCoeffsBase.h
1955
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/DenseStorage.h
1956
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Diagonal.h
1957
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/DiagonalMatrix.h
1958
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/DiagonalProduct.h
1959
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Dot.h
1960
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/EigenBase.h
1961
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/ForceAlignedAccess.h
1962
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Fuzzy.h
1963
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/GeneralProduct.h
1964
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/GenericPacketMath.h
1965
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/GlobalFunctions.h
1966
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/IO.h
1967
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/IndexedView.h
1968
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Inverse.h
1969
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Map.h
1970
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/MapBase.h
1971
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/MathFunctions.h
1972
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/MathFunctionsImpl.h
1973
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Matrix.h
1974
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/MatrixBase.h
1975
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/NestByValue.h
1976
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/NoAlias.h
1977
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/NumTraits.h
1978
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/PermutationMatrix.h
1979
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/PlainObjectBase.h
1980
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Product.h
1981
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/ProductEvaluators.h
1982
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Random.h
1983
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Redux.h
1984
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Ref.h
1985
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Replicate.h
1986
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/ReturnByValue.h
1987
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Reverse.h
1988
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Select.h
1989
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/SelfAdjointView.h
1990
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/SelfCwiseBinaryOp.h
1991
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Solve.h
1992
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/SolveTriangular.h
1993
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/SolverBase.h
1994
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/StableNorm.h
1995
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Stride.h
1996
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Swap.h
1997
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Transpose.h
1998
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Transpositions.h
1999
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/TriangularMatrix.h
2000
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/VectorBlock.h
2001
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/VectorwiseOp.h
2002
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/Visitor.h
2003
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/AVX/Complex.h
2004
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/AVX/MathFunctions.h
2005
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/AVX/PacketMath.h
2006
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/AVX/TypeCasting.h
2007
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/AVX512/MathFunctions.h
2008
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/AVX512/PacketMath.h
2009
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/AltiVec/Complex.h
2010
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/AltiVec/MathFunctions.h
2011
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/AltiVec/PacketMath.h
2012
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/CUDA/Complex.h
2013
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/CUDA/Half.h
2014
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/CUDA/MathFunctions.h
2015
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/CUDA/PacketMath.h
2016
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/CUDA/PacketMathHalf.h
2017
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/CUDA/TypeCasting.h
2018
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/Default/Settings.h
2019
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/NEON/Complex.h
2020
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/NEON/MathFunctions.h
2021
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/NEON/PacketMath.h
2022
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/SSE/Complex.h
2023
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/SSE/MathFunctions.h
2024
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/SSE/PacketMath.h
2025
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/SSE/TypeCasting.h
2026
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/ZVector/Complex.h
2027
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/ZVector/MathFunctions.h
2028
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/arch/ZVector/PacketMath.h
2029
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/functors/AssignmentFunctors.h
2030
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/functors/BinaryFunctors.h
2031
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/functors/NullaryFunctors.h
2032
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/functors/StlFunctors.h
2033
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/functors/TernaryFunctors.h
2034
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/functors/UnaryFunctors.h
2035
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h
2036
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/GeneralMatrixMatrix.h
2037
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h
2038
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h
2039
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h
2040
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/GeneralMatrixVector.h
2041
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h
2042
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/Parallelizer.h
2043
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/SelfadjointMatrixMatrix.h
2044
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h
2045
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/SelfadjointMatrixVector.h
2046
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h
2047
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/SelfadjointProduct.h
2048
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/SelfadjointRank2Update.h
2049
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/TriangularMatrixMatrix.h
2050
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h
2051
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/TriangularMatrixVector.h
2052
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h
2053
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/TriangularSolverMatrix.h
2054
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h
2055
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/products/TriangularSolverVector.h
2056
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/BlasUtil.h
2057
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/Constants.h
2058
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/DisableStupidWarnings.h
2059
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/ForwardDeclarations.h
2060
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/IndexedViewHelper.h
2061
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/IntegralConstant.h
2062
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/MKL_support.h
2063
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/Macros.h
2064
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/Memory.h
2065
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/Meta.h
2066
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/ReenableStupidWarnings.h
2067
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/StaticAssert.h
2068
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/SymbolicIndex.h
2069
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Core/util/XprHelper.h
2070
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/ComplexEigenSolver.h
2071
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/ComplexSchur.h
2072
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h
2073
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/EigenSolver.h
2074
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h
2075
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h
2076
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/HessenbergDecomposition.h
2077
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h
2078
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/RealQZ.h
2079
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/RealSchur.h
2080
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h
2081
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h
2082
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h
2083
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Eigenvalues/Tridiagonalization.h
2084
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/AlignedBox.h
2085
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/AngleAxis.h
2086
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/EulerAngles.h
2087
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/Homogeneous.h
2088
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/Hyperplane.h
2089
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/OrthoMethods.h
2090
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/ParametrizedLine.h
2091
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/Quaternion.h
2092
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/Rotation2D.h
2093
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/RotationBase.h
2094
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/Scaling.h
2095
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/Transform.h
2096
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/Translation.h
2097
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/Umeyama.h
2098
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Geometry/arch/Geometry_SSE.h
2099
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Householder/BlockHouseholder.h
2100
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Householder/Householder.h
2101
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Householder/HouseholderSequence.h
2102
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h
2103
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h
2104
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h
2105
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h
2106
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h
2107
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h
2108
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h
2109
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h
2110
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/Jacobi/Jacobi.h
2111
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/LU/Determinant.h
2112
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/LU/FullPivLU.h
2113
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/LU/InverseImpl.h
2114
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/LU/PartialPivLU.h
2115
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/LU/PartialPivLU_LAPACKE.h
2116
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/LU/arch/Inverse_SSE.h
2117
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/MetisSupport/MetisSupport.h
2118
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/OrderingMethods/Eigen_Colamd.h
2119
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/OrderingMethods/Ordering.h
2120
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/PaStiXSupport/PaStiXSupport.h
2121
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/PardisoSupport/PardisoSupport.h
2122
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/QR/ColPivHouseholderQR.h
2123
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h
2124
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/QR/CompleteOrthogonalDecomposition.h
2125
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/QR/FullPivHouseholderQR.h
2126
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/QR/HouseholderQR.h
2127
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/QR/HouseholderQR_LAPACKE.h
2128
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h
2129
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SVD/BDCSVD.h
2130
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SVD/JacobiSVD.h
2131
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SVD/JacobiSVD_LAPACKE.h
2132
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SVD/SVDBase.h
2133
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SVD/UpperBidiagonalization.h
2134
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/AmbiVector.h
2135
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/CompressedStorage.h
2136
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h
2137
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/MappedSparseMatrix.h
2138
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseAssign.h
2139
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseBlock.h
2140
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseColEtree.h
2141
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseCompressedBase.h
2142
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h
2143
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseCwiseUnaryOp.h
2144
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseDenseProduct.h
2145
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseDiagonalProduct.h
2146
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseDot.h
2147
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseFuzzy.h
2148
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseMap.h
2149
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseMatrix.h
2150
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseMatrixBase.h
2151
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparsePermutation.h
2152
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseProduct.h
2153
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseRedux.h
2154
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseRef.h
2155
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseSelfAdjointView.h
2156
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseSolverBase.h
2157
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseSparseProductWithPruning.h
2158
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseTranspose.h
2159
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseTriangularView.h
2160
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseUtil.h
2161
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseVector.h
2162
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/SparseView.h
2163
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseCore/TriangularSolver.h
2164
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU.h
2165
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLUImpl.h
2166
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_Memory.h
2167
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_Structs.h
2168
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h
2169
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_Utils.h
2170
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_column_bmod.h
2171
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_column_dfs.h
2172
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h
2173
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_gemm_kernel.h
2174
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h
2175
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_kernel_bmod.h
2176
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_panel_bmod.h
2177
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_panel_dfs.h
2178
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_pivotL.h
2179
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_pruneL.h
2180
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseLU/SparseLU_relax_snode.h
2181
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SparseQR/SparseQR.h
2182
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/StlSupport/StdDeque.h
2183
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/StlSupport/StdList.h
2184
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/StlSupport/StdVector.h
2185
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/StlSupport/details.h
2186
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/SuperLUSupport/SuperLUSupport.h
2187
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/UmfPackSupport/UmfPackSupport.h
2188
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/misc/Image.h
2189
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/misc/Kernel.h
2190
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/misc/RealSvd2x2.h
2191
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/misc/blas.h
2192
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/misc/lapack.h
2193
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/misc/lapacke.h
2194
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/misc/lapacke_mangling.h
2195
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/plugins/ArrayCwiseBinaryOps.h
2196
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/plugins/ArrayCwiseUnaryOps.h
2197
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/plugins/BlockMethods.h
2198
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/plugins/CommonCwiseBinaryOps.h
2199
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/plugins/CommonCwiseUnaryOps.h
2200
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/plugins/IndexedViewMethods.h
2201
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/plugins/MatrixCwiseBinaryOps.h
2202
%%PYTHON_SITELIBDIR%%/tensorflow/include/Eigen/src/plugins/MatrixCwiseUnaryOps.h
2203
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/COPYING.MPL2
2204
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/Cholesky
2205
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/CholmodSupport
2206
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/Core
2207
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/Dense
2208
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/Eigenvalues
2209
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/Geometry
2210
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/Householder
2211
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/Jacobi
2212
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/LU
2213
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/OrderingMethods
2214
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/PaStiXSupport
2215
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/PardisoSupport
2216
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/QR
2217
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/QtAlignedMalloc
2218
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/SPQRSupport
2219
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/SVD
2220
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/SparseCore
2221
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/SparseQR
2222
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/StdDeque
2223
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/StdList
2224
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/StdVector
2225
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/SuperLUSupport
2226
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/UmfPackSupport
2227
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Cholesky/LDLT.h
2228
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Cholesky/LLT.h
2229
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Cholesky/LLT_LAPACKE.h
2230
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/CholmodSupport/CholmodSupport.h
2231
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/ArithmeticSequence.h
2232
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Array.h
2233
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/ArrayBase.h
2234
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/ArrayWrapper.h
2235
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Assign.h
2236
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/AssignEvaluator.h
2237
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Assign_MKL.h
2238
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/BandMatrix.h
2239
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Block.h
2240
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/BooleanRedux.h
2241
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/CommaInitializer.h
2242
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/ConditionEstimator.h
2243
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/CoreEvaluators.h
2244
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/CoreIterators.h
2245
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/CwiseBinaryOp.h
2246
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/CwiseNullaryOp.h
2247
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/CwiseTernaryOp.h
2248
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/CwiseUnaryOp.h
2249
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/CwiseUnaryView.h
2250
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/DenseBase.h
2251
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/DenseCoeffsBase.h
2252
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/DenseStorage.h
2253
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Diagonal.h
2254
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/DiagonalMatrix.h
2255
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/DiagonalProduct.h
2256
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Dot.h
2257
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/EigenBase.h
2258
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/ForceAlignedAccess.h
2259
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Fuzzy.h
2260
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/GeneralProduct.h
2261
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/GenericPacketMath.h
2262
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/GlobalFunctions.h
2263
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/IO.h
2264
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/IndexedView.h
2265
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Inverse.h
2266
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Map.h
2267
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/MapBase.h
2268
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/MathFunctions.h
2269
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/MathFunctionsImpl.h
2270
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Matrix.h
2271
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/MatrixBase.h
2272
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/NestByValue.h
2273
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/NoAlias.h
2274
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/NumTraits.h
2275
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/PermutationMatrix.h
2276
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/PlainObjectBase.h
2277
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Product.h
2278
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/ProductEvaluators.h
2279
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Random.h
2280
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Redux.h
2281
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Ref.h
2282
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Replicate.h
2283
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/ReturnByValue.h
2284
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Reverse.h
2285
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Select.h
2286
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/SelfAdjointView.h
2287
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/SelfCwiseBinaryOp.h
2288
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Solve.h
2289
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/SolveTriangular.h
2290
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/SolverBase.h
2291
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/StableNorm.h
2292
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Stride.h
2293
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Swap.h
2294
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Transpose.h
2295
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Transpositions.h
2296
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/TriangularMatrix.h
2297
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/VectorBlock.h
2298
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/VectorwiseOp.h
2299
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/Visitor.h
2300
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/AVX/Complex.h
2301
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/AVX/MathFunctions.h
2302
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/AVX/PacketMath.h
2303
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/AVX/TypeCasting.h
2304
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/AVX512/MathFunctions.h
2305
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/AVX512/PacketMath.h
2306
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/AltiVec/Complex.h
2307
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/AltiVec/MathFunctions.h
2308
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/AltiVec/PacketMath.h
2309
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/CUDA/Complex.h
2310
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/CUDA/Half.h
2311
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/CUDA/MathFunctions.h
2312
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/CUDA/PacketMath.h
2313
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/CUDA/PacketMathHalf.h
2314
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/CUDA/TypeCasting.h
2315
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/Default/Settings.h
2316
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/NEON/Complex.h
2317
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/NEON/MathFunctions.h
2318
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/NEON/PacketMath.h
2319
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/SSE/Complex.h
2320
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/SSE/MathFunctions.h
2321
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/SSE/PacketMath.h
2322
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/SSE/TypeCasting.h
2323
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/ZVector/Complex.h
2324
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/ZVector/MathFunctions.h
2325
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/arch/ZVector/PacketMath.h
2326
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/functors/AssignmentFunctors.h
2327
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/functors/BinaryFunctors.h
2328
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/functors/NullaryFunctors.h
2329
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/functors/StlFunctors.h
2330
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/functors/TernaryFunctors.h
2331
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/functors/UnaryFunctors.h
2332
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/GeneralBlockPanelKernel.h
2333
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixMatrix.h
2334
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h
2335
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h
2336
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h
2337
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixVector.h
2338
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h
2339
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/Parallelizer.h
2340
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/SelfadjointMatrixMatrix.h
2341
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h
2342
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/SelfadjointMatrixVector.h
2343
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h
2344
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/SelfadjointProduct.h
2345
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/SelfadjointRank2Update.h
2346
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/TriangularMatrixMatrix.h
2347
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h
2348
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/TriangularMatrixVector.h
2349
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h
2350
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/TriangularSolverMatrix.h
2351
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h
2352
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/products/TriangularSolverVector.h
2353
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/BlasUtil.h
2354
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/Constants.h
2355
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/DisableStupidWarnings.h
2356
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/ForwardDeclarations.h
2357
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/IndexedViewHelper.h
2358
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/IntegralConstant.h
2359
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/MKL_support.h
2360
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/Macros.h
2361
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/Memory.h
2362
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/Meta.h
2363
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/ReenableStupidWarnings.h
2364
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/StaticAssert.h
2365
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/SymbolicIndex.h
2366
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Core/util/XprHelper.h
2367
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/ComplexEigenSolver.h
2368
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/ComplexSchur.h
2369
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h
2370
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/EigenSolver.h
2371
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h
2372
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h
2373
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/HessenbergDecomposition.h
2374
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h
2375
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/RealQZ.h
2376
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/RealSchur.h
2377
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h
2378
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h
2379
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h
2380
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Eigenvalues/Tridiagonalization.h
2381
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/AlignedBox.h
2382
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/AngleAxis.h
2383
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/EulerAngles.h
2384
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/Homogeneous.h
2385
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/Hyperplane.h
2386
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/OrthoMethods.h
2387
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/ParametrizedLine.h
2388
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/Quaternion.h
2389
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/Rotation2D.h
2390
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/RotationBase.h
2391
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/Scaling.h
2392
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/Transform.h
2393
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/Translation.h
2394
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/Umeyama.h
2395
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Geometry/arch/Geometry_SSE.h
2396
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Householder/BlockHouseholder.h
2397
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Householder/Householder.h
2398
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Householder/HouseholderSequence.h
2399
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h
2400
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h
2401
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h
2402
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h
2403
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h
2404
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h
2405
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h
2406
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h
2407
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/Jacobi/Jacobi.h
2408
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/LU/Determinant.h
2409
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/LU/FullPivLU.h
2410
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/LU/InverseImpl.h
2411
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/LU/PartialPivLU.h
2412
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/LU/PartialPivLU_LAPACKE.h
2413
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/LU/arch/Inverse_SSE.h
2414
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/MetisSupport/MetisSupport.h
2415
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/OrderingMethods/Eigen_Colamd.h
2416
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/OrderingMethods/Ordering.h
2417
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/PaStiXSupport/PaStiXSupport.h
2418
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/PardisoSupport/PardisoSupport.h
2419
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/QR/ColPivHouseholderQR.h
2420
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h
2421
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/QR/CompleteOrthogonalDecomposition.h
2422
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/QR/FullPivHouseholderQR.h
2423
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/QR/HouseholderQR.h
2424
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/QR/HouseholderQR_LAPACKE.h
2425
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h
2426
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SVD/BDCSVD.h
2427
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SVD/JacobiSVD.h
2428
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SVD/JacobiSVD_LAPACKE.h
2429
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SVD/SVDBase.h
2430
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SVD/UpperBidiagonalization.h
2431
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/AmbiVector.h
2432
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/CompressedStorage.h
2433
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h
2434
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/MappedSparseMatrix.h
2435
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseAssign.h
2436
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseBlock.h
2437
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseColEtree.h
2438
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseCompressedBase.h
2439
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseCwiseBinaryOp.h
2440
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseCwiseUnaryOp.h
2441
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseDenseProduct.h
2442
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseDiagonalProduct.h
2443
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseDot.h
2444
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseFuzzy.h
2445
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseMap.h
2446
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseMatrix.h
2447
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseMatrixBase.h
2448
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparsePermutation.h
2449
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseProduct.h
2450
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseRedux.h
2451
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseRef.h
2452
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseSelfAdjointView.h
2453
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseSolverBase.h
2454
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseSparseProductWithPruning.h
2455
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseTranspose.h
2456
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseTriangularView.h
2457
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseUtil.h
2458
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseVector.h
2459
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/SparseView.h
2460
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseCore/TriangularSolver.h
2461
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU.h
2462
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLUImpl.h
2463
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_Memory.h
2464
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_Structs.h
2465
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h
2466
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_Utils.h
2467
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_column_bmod.h
2468
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_column_dfs.h
2469
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h
2470
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_gemm_kernel.h
2471
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h
2472
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_kernel_bmod.h
2473
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_panel_bmod.h
2474
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_panel_dfs.h
2475
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_pivotL.h
2476
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_pruneL.h
2477
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseLU/SparseLU_relax_snode.h
2478
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SparseQR/SparseQR.h
2479
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/StlSupport/StdDeque.h
2480
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/StlSupport/StdList.h
2481
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/StlSupport/StdVector.h
2482
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/StlSupport/details.h
2483
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/SuperLUSupport/SuperLUSupport.h
2484
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/UmfPackSupport/UmfPackSupport.h
2485
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/misc/Image.h
2486
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/misc/Kernel.h
2487
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/misc/RealSvd2x2.h
2488
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/misc/blas.h
2489
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/misc/lapack.h
2490
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/misc/lapacke.h
2491
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/misc/lapacke_mangling.h
2492
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/plugins/ArrayCwiseBinaryOps.h
2493
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/plugins/ArrayCwiseUnaryOps.h
2494
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/plugins/BlockMethods.h
2495
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/plugins/CommonCwiseBinaryOps.h
2496
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/plugins/CommonCwiseUnaryOps.h
2497
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/plugins/IndexedViewMethods.h
2498
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/plugins/MatrixCwiseBinaryOps.h
2499
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/Eigen/src/plugins/MatrixCwiseUnaryOps.h
2500
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/CMakeLists.txt
2501
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/Tensor
2502
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/TensorSymmetry
2503
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/ThreadPool
2504
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/README.md
2505
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/Tensor.h
2506
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h
2507
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorArgMaxSycl.h
2508
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h
2509
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h
2510
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h
2511
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h
2512
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h
2513
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h
2514
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h
2515
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h
2516
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h
2517
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h
2518
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h
2519
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h
2520
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h
2521
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h
2522
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h
2523
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h
2524
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h
2525
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h
2526
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h
2527
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h
2528
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h
2529
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h
2530
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h
2531
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h
2532
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h
2533
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h
2534
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h
2535
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h
2536
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h
2537
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h
2538
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h
2539
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h
2540
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h
2541
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h
2542
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h
2543
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h
2544
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h
2545
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h
2546
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h
2547
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h
2548
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h
2549
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h
2550
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h
2551
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h
2552
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h
2553
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h
2554
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h
2555
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h
2556
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h
2557
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h
2558
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h
2559
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h
2560
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h
2561
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h
2562
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h
2563
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h
2564
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h
2565
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSycl.h
2566
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclConvertToDeviceExpression.h
2567
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExprConstructor.h
2568
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExtractAccessor.h
2569
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExtractFunctors.h
2570
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclFunctors.h
2571
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclLeafCount.h
2572
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclPlaceHolderExpr.h
2573
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclRun.h
2574
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorSyclTuple.h
2575
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h
2576
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h
2577
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h
2578
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h
2579
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h
2580
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h
2581
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h
2582
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h
2583
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h
2584
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h
2585
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/SimpleThreadPool.h
2586
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h
2587
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h
2588
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h
2589
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h
2590
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h
2591
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/util/CXX11Meta.h
2592
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h
2593
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/util/EmulateArray.h
2594
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/util/EmulateCXX11Meta.h
2595
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h
2596
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/FFT
2597
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/KroneckerProduct
2598
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/MatrixFunctions
2599
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/SpecialFunctions
2600
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/src/FFT/ei_fftw_impl.h
2601
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/src/FFT/ei_kissfft_impl.h
2602
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h
2603
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h
2604
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h
2605
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h
2606
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h
2607
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h
2608
%%PYTHON_SITELIBDIR%%/tensorflow/include/external/eigen_archive/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/CudaSpecialFunctions.h
2609
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/any.h
2610
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/any.pb.h
2611
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/api.pb.h
2612
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/arena.h
2613
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/arena_test_util.h
2614
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/arenastring.h
2615
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/code_generator.h
2616
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/command_line_interface.h
2617
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_enum.h
2618
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_enum_field.h
2619
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_extension.h
2620
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_field.h
2621
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_file.h
2622
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_generator.h
2623
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_helpers.h
2624
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_map_field.h
2625
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_message.h
2626
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_message_field.h
2627
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_options.h
2628
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_primitive_field.h
2629
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_service.h
2630
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_string_field.h
2631
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/cpp/cpp_unittest.h
2632
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_doc_comment.h
2633
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_enum.h
2634
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_enum_field.h
2635
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_field_base.h
2636
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_generator.h
2637
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_helpers.h
2638
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_map_field.h
2639
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_message.h
2640
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_message_field.h
2641
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_names.h
2642
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_options.h
2643
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_primitive_field.h
2644
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_reflection_class.h
2645
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_repeated_enum_field.h
2646
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_repeated_message_field.h
2647
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.h
2648
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_source_generator_base.h
2649
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/csharp/csharp_wrapper_field.h
2650
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/importer.h
2651
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_context.h
2652
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_doc_comment.h
2653
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_enum.h
2654
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_enum_field.h
2655
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_enum_field_lite.h
2656
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_enum_lite.h
2657
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_extension.h
2658
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_extension_lite.h
2659
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_field.h
2660
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_file.h
2661
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_generator.h
2662
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_generator_factory.h
2663
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_helpers.h
2664
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_lazy_message_field.h
2665
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_lazy_message_field_lite.h
2666
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_map_field.h
2667
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_map_field_lite.h
2668
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_message.h
2669
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_message_builder.h
2670
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_message_builder_lite.h
2671
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_message_field.h
2672
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_message_field_lite.h
2673
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_message_lite.h
2674
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_name_resolver.h
2675
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_names.h
2676
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_options.h
2677
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_primitive_field.h
2678
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_primitive_field_lite.h
2679
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_service.h
2680
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_shared_code_generator.h
2681
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_string_field.h
2682
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/java/java_string_field_lite.h
2683
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_enum.h
2684
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_enum_field.h
2685
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_extension.h
2686
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_field.h
2687
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_file.h
2688
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_generator.h
2689
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_helpers.h
2690
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_map_field.h
2691
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_message.h
2692
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_message_field.h
2693
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_params.h
2694
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/javanano/javanano_primitive_field.h
2695
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/js/js_generator.h
2696
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/js/well_known_types_embed.h
2697
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/mock_code_generator.h
2698
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_enum.h
2699
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_enum_field.h
2700
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_extension.h
2701
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_field.h
2702
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_file.h
2703
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_generator.h
2704
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_helpers.h
2705
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_map_field.h
2706
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_message.h
2707
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_message_field.h
2708
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_oneof.h
2709
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/objectivec/objectivec_primitive_field.h
2710
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/package_info.h
2711
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/parser.h
2712
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/php/php_generator.h
2713
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/plugin.h
2714
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/plugin.pb.h
2715
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/python/python_generator.h
2716
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/ruby/ruby_generator.h
2717
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/subprocess.h
2718
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/compiler/zip_writer.h
2719
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/descriptor.h
2720
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/descriptor.pb.h
2721
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/descriptor_database.h
2722
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/duration.pb.h
2723
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/dynamic_message.h
2724
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/empty.pb.h
2725
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/extension_set.h
2726
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/field_mask.pb.h
2727
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/generated_enum_reflection.h
2728
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/generated_enum_util.h
2729
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/generated_message_reflection.h
2730
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/generated_message_util.h
2731
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/has_bits.h
2732
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/io/coded_stream.h
2733
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/io/coded_stream_inl.h
2734
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/io/gzip_stream.h
2735
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/io/package_info.h
2736
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/io/printer.h
2737
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/io/strtod.h
2738
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/io/tokenizer.h
2739
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/io/zero_copy_stream.h
2740
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/io/zero_copy_stream_impl.h
2741
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/io/zero_copy_stream_impl_lite.h
2742
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/map.h
2743
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/map_entry.h
2744
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/map_entry_lite.h
2745
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/map_field.h
2746
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/map_field_inl.h
2747
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/map_field_lite.h
2748
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/map_lite_test_util.h
2749
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/map_test_util.h
2750
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/map_test_util_impl.h
2751
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/map_type_handler.h
2752
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/message.h
2753
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/message_lite.h
2754
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/metadata.h
2755
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/package_info.h
2756
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/reflection.h
2757
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/reflection_internal.h
2758
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/reflection_ops.h
2759
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/repeated_field.h
2760
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/service.h
2761
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/source_context.pb.h
2762
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/struct.pb.h
2763
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomic_sequence_num.h
2764
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops.h
2765
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_arm64_gcc.h
2766
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_arm_gcc.h
2767
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_arm_qnx.h
2768
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_atomicword_compat.h
2769
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_generic_c11_atomic.h
2770
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_generic_gcc.h
2771
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_mips_gcc.h
2772
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_power.h
2773
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_ppc_gcc.h
2774
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_solaris.h
2775
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_tsan.h
2776
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_x86_gcc.h
2777
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/atomicops_internals_x86_msvc.h
2778
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/bytestream.h
2779
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/callback.h
2780
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/casts.h
2781
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/common.h
2782
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/fastmem.h
2783
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/hash.h
2784
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/int128.h
2785
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/logging.h
2786
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/macros.h
2787
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/map_util.h
2788
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/mathlimits.h
2789
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/mathutil.h
2790
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/mutex.h
2791
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/once.h
2792
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/platform_macros.h
2793
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/port.h
2794
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/scoped_ptr.h
2795
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/shared_ptr.h
2796
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/singleton.h
2797
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/status.h
2798
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/status_macros.h
2799
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/statusor.h
2800
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/stl_util.h
2801
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/stringpiece.h
2802
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/stringprintf.h
2803
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/strutil.h
2804
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/substitute.h
2805
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/template_util.h
2806
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/time.h
2807
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/stubs/type_traits.h
2808
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/test_util.h
2809
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/test_util_lite.h
2810
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/testing/file.h
2811
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/testing/googletest.h
2812
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/text_format.h
2813
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/timestamp.pb.h
2814
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/type.pb.h
2815
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/unknown_field_set.h
2816
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/field_comparator.h
2817
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/field_mask_util.h
2818
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/constants.h
2819
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/datapiece.h
2820
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/default_value_objectwriter.h
2821
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/error_listener.h
2822
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/expecting_objectwriter.h
2823
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/field_mask_utility.h
2824
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/json_escaping.h
2825
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/json_objectwriter.h
2826
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/json_stream_parser.h
2827
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/location_tracker.h
2828
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/mock_error_listener.h
2829
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/object_location_tracker.h
2830
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/object_source.h
2831
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/object_writer.h
2832
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/proto_writer.h
2833
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/protostream_objectsource.h
2834
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/protostream_objectwriter.h
2835
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/structured_objectwriter.h
2836
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/type_info.h
2837
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/type_info_test_helper.h
2838
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/internal/utility.h
2839
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/json_util.h
2840
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/message_differencer.h
2841
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/package_info.h
2842
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/time_util.h
2843
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/type_resolver.h
2844
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/util/type_resolver_util.h
2845
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/wire_format.h
2846
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/wire_format_lite.h
2847
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/wire_format_lite_inl.h
2848
%%PYTHON_SITELIBDIR%%/tensorflow/include/google/protobuf/wrappers.pb.h
2849
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/allocator_retry.h
2850
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/bfc_allocator.h
2851
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/build_graph_options.h
2852
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/constant_folding.h
2853
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/copy_tensor.h
2854
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/costmodel_manager.h
2855
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/debugger_state_interface.h
2856
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/device.h
2857
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/device_factory.h
2858
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/device_mgr.h
2859
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/device_set.h
2860
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/dma_helper.h
2861
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/eigen_thread_pool.h
2862
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/executor.h
2863
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/function.h
2864
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/gpu/gpu_init.h
2865
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/graph_optimizer.h
2866
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/graph_runner.h
2867
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/local_device.h
2868
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/memory_types.h
2869
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/mkl_cpu_allocator.h
2870
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/optimization_registry.h
2871
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/pending_counts.h
2872
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/process_util.h
2873
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/profile_handler.h
2874
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/renamed_device.h
2875
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/rendezvous_mgr.h
2876
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/session_factory.h
2877
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/shape_refiner.h
2878
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/simple_graph_execution_state.h
2879
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/simple_placer.h
2880
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/stats_publisher_interface.h
2881
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/step_stats_collector.h
2882
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/threadpool_device.h
2883
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/common_runtime/visitable_allocator.h
2884
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/example/example.pb.h
2885
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/example/example.pb_text-impl.h
2886
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/example/example.pb_text.h
2887
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/example/example_parser_configuration.pb.h
2888
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/example/feature.pb.h
2889
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/example/feature.pb_text-impl.h
2890
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/example/feature.pb_text.h
2891
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/example/feature_util.h
2892
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/allocation_description.pb.h
2893
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/allocation_description.pb_text-impl.h
2894
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/allocation_description.pb_text.h
2895
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/allocator.h
2896
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/allocator_registry.h
2897
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/attr_value.pb.h
2898
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/attr_value.pb_text-impl.h
2899
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/attr_value.pb_text.h
2900
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/attr_value_util.h
2901
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/bfloat16.h
2902
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/cancellation.h
2903
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/common_shape_fns.h
2904
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/control_flow.h
2905
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/cost_graph.pb.h
2906
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/cost_graph.pb_text-impl.h
2907
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/cost_graph.pb_text.h
2908
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/device_attributes.pb.h
2909
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/device_attributes.pb_text-impl.h
2910
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/device_attributes.pb_text.h
2911
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/device_base.h
2912
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/function.h
2913
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/function.pb.h
2914
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/function.pb_text-impl.h
2915
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/function.pb_text.h
2916
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/graph.pb.h
2917
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/graph.pb_text-impl.h
2918
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/graph.pb_text.h
2919
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/graph_def_util.h
2920
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/graph_transfer_info.pb.h
2921
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/graph_transfer_info.pb_text-impl.h
2922
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/graph_transfer_info.pb_text.h
2923
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/kernel_def.pb.h
2924
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/kernel_def.pb_text-impl.h
2925
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/kernel_def.pb_text.h
2926
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/kernel_def_builder.h
2927
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/log_memory.h
2928
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/log_memory.pb.h
2929
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/log_memory.pb_text-impl.h
2930
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/log_memory.pb_text.h
2931
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/lookup_interface.h
2932
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/memory_types.h
2933
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/node_def.pb.h
2934
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/node_def.pb_text-impl.h
2935
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/node_def.pb_text.h
2936
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/node_def_builder.h
2937
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/node_def_util.h
2938
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/numeric_op.h
2939
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/numeric_types.h
2940
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/op.h
2941
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/op_def.pb.h
2942
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/op_def.pb_text-impl.h
2943
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/op_def.pb_text.h
2944
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/op_def_builder.h
2945
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/op_def_util.h
2946
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/op_kernel.h
2947
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/op_segment.h
2948
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/partial_tensor_shape.h
2949
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/queue_interface.h
2950
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/reader_interface.h
2951
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/reader_op_kernel.h
2952
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/register_types.h
2953
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/register_types_traits.h
2954
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/remote_fused_graph_execute_info.pb.h
2955
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/remote_fused_graph_execute_info.pb_text-impl.h
2956
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/remote_fused_graph_execute_info.pb_text.h
2957
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/rendezvous.h
2958
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/resource_handle.pb.h
2959
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/resource_handle.pb_text-impl.h
2960
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/resource_handle.pb_text.h
2961
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/resource_mgr.h
2962
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/resource_op_kernel.h
2963
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/selective_registration.h
2964
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/session_state.h
2965
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/shape_inference.h
2966
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/step_stats.pb.h
2967
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/step_stats.pb_text-impl.h
2968
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/step_stats.pb_text.h
2969
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/summary.pb.h
2970
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/summary.pb_text-impl.h
2971
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/summary.pb_text.h
2972
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor.h
2973
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor.pb.h
2974
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor.pb_text-impl.h
2975
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor.pb_text.h
2976
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_description.pb.h
2977
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_description.pb_text-impl.h
2978
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_description.pb_text.h
2979
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_reference.h
2980
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_shape.h
2981
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_shape.pb.h
2982
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_shape.pb_text-impl.h
2983
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_shape.pb_text.h
2984
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_slice.h
2985
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_slice.pb.h
2986
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_slice.pb_text-impl.h
2987
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_slice.pb_text.h
2988
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_types.h
2989
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tensor_util.h
2990
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/tracking_allocator.h
2991
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/type_index.h
2992
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/type_traits.h
2993
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/types.h
2994
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/types.pb.h
2995
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/types.pb_text-impl.h
2996
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/types.pb_text.h
2997
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/unique_tensor_references.h
2998
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/variable.pb.h
2999
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/variable.pb_text-impl.h
3000
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/variable.pb_text.h
3001
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/versions.h
3002
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/versions.pb.h
3003
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/versions.pb_text-impl.h
3004
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/framework/versions.pb_text.h
3005
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/algorithm.h
3006
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/colors.h
3007
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/control_flow.h
3008
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/costmodel.h
3009
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/default_device.h
3010
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/edgeset.h
3011
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/gradients.h
3012
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/graph.h
3013
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/graph_constructor.h
3014
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/graph_def_builder.h
3015
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/graph_partition.h
3016
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/mkl_layout_pass.h
3017
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/mkl_tfconversion_pass.h
3018
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/node_builder.h
3019
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/optimizer_cse.h
3020
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/quantize_training.h
3021
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/subgraph.h
3022
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/tensor_id.h
3023
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/testlib.h
3024
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/types.h
3025
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/graph/validate.h
3026
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/clusters/cluster.h
3027
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/clusters/utils.h
3028
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/clusters/virtual_cluster.h
3029
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/costs/cost_estimator.h
3030
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/costs/graph_properties.h
3031
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/costs/op_level_cost_estimator.h
3032
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/costs/op_performance_data.pb.h
3033
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/costs/utils.h
3034
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/costs/virtual_placer.h
3035
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/devices.h
3036
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/grappler_item.h
3037
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/op_types.h
3038
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/optimizers/auto_parallel.h
3039
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/optimizers/constant_folding.h
3040
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/optimizers/graph_optimizer.h
3041
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/optimizers/graph_rewriter.h
3042
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/optimizers/layout_optimizer.h
3043
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/optimizers/memory_optimizer.h
3044
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/optimizers/meta_optimizer.h
3045
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/optimizers/model_pruner.h
3046
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/optimizers/static_schedule.h
3047
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/utils.h
3048
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/grappler/utils/topological_sort.h
3049
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/kernels/bounds_check.h
3050
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/kernels/no_op.h
3051
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/kernels/sendrecv_ops.h
3052
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/arena.h
3053
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/bitmap.h
3054
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/bits.h
3055
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/blocking_counter.h
3056
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/casts.h
3057
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/coding.h
3058
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/error_codes.pb.h
3059
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/error_codes.pb_text-impl.h
3060
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/error_codes.pb_text.h
3061
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/errors.h
3062
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/notification.h
3063
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/raw_coding.h
3064
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/refcount.h
3065
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/status.h
3066
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/stringpiece.h
3067
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/core/threadpool.h
3068
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/array_slice.h
3069
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/array_slice_internal.h
3070
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/cleanup.h
3071
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/edit_distance.h
3072
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/flatmap.h
3073
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/flatrep.h
3074
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/flatset.h
3075
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/inlined_vector.h
3076
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/int_type.h
3077
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/iterator_range.h
3078
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/manual_constructor.h
3079
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/map_util.h
3080
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/optional.h
3081
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/priority_queue_util.h
3082
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/stl_util.h
3083
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/gtl/top_n.h
3084
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/hash/crc32c.h
3085
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/hash/hash.h
3086
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/histogram/histogram.h
3087
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/block.h
3088
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/block_builder.h
3089
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/buffered_inputstream.h
3090
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/compression.h
3091
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/format.h
3092
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/inputbuffer.h
3093
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/inputstream_interface.h
3094
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/iterator.h
3095
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/path.h
3096
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/proto_encode_helper.h
3097
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/random_inputstream.h
3098
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/record_reader.h
3099
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/record_writer.h
3100
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/snappy/snappy_inputbuffer.h
3101
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/snappy/snappy_outputbuffer.h
3102
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/table.h
3103
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/table_builder.h
3104
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/table_options.h
3105
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/two_level_iterator.h
3106
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/zlib_compression_options.h
3107
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/zlib_inputstream.h
3108
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/io/zlib_outputbuffer.h
3109
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/math/math_util.h
3110
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/monitoring/collected_metrics.h
3111
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/monitoring/collection_registry.h
3112
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/monitoring/counter.h
3113
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/monitoring/metric_def.h
3114
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/monitoring/mobile_counter.h
3115
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/monitoring/mobile_sampler.h
3116
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/monitoring/sampler.h
3117
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/png/png_io.h
3118
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/random/distribution_sampler.h
3119
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/random/exact_uniform_int.h
3120
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/random/philox_random.h
3121
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/random/random.h
3122
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/random/random_distributions.h
3123
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/random/simple_philox.h
3124
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/random/weighted_picker.h
3125
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/strings/base64.h
3126
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/strings/numbers.h
3127
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/strings/ordered_code.h
3128
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/strings/proto_text_util.h
3129
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/strings/scanner.h
3130
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/strings/str_util.h
3131
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/strings/strcat.h
3132
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/strings/stringprintf.h
3133
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/lib/wav/wav_io.h
3134
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/context.h
3135
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/cpu_feature_guard.h
3136
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/cpu_info.h
3137
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/cuda.h
3138
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/cuda_libdevice_path.h
3139
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/cupti_wrapper.h
3140
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/context.h
3141
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/dynamic_annotations.h
3142
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/fingerprint.h
3143
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/from_stream_executor_status.h
3144
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/integral_types.h
3145
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/logging.h
3146
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/mutex.h
3147
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/notification.h
3148
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/protobuf.h
3149
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/stacktrace.h
3150
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/stream_executor.h
3151
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/stream_executor_no_cuda.h
3152
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/strong_hash.h
3153
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/thread_annotations.h
3154
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/default/tracing_impl.h
3155
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/demangle.h
3156
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/denormal.h
3157
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/dynamic_annotations.h
3158
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/env.h
3159
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/env_time.h
3160
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/file_statistics.h
3161
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/file_system.h
3162
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/fingerprint.h
3163
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/host_info.h
3164
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/init_main.h
3165
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/load_library.h
3166
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/logging.h
3167
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/macros.h
3168
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/mem.h
3169
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/mutex.h
3170
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/net.h
3171
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/notification.h
3172
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/platform.h
3173
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/png.h
3174
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/posix/error.h
3175
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/posix/posix_file_system.h
3176
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/posix/subprocess.h
3177
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/prefetch.h
3178
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/profile_utils/android_armv7a_cpu_utils_helper.h
3179
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/profile_utils/clock_cycle_profiler.h
3180
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/profile_utils/cpu_utils.h
3181
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/profile_utils/i_cpu_utils_helper.h
3182
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/protobuf.h
3183
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/protobuf_internal.h
3184
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/regexp.h
3185
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/setround.h
3186
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/snappy.h
3187
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/stacktrace.h
3188
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/stream_executor.h
3189
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/stream_executor_no_cuda.h
3190
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/strong_hash.h
3191
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/subprocess.h
3192
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/tensor_coding.h
3193
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/thread_annotations.h
3194
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/tracing.h
3195
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/types.h
3196
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/platform/windows/cpu_info.h
3197
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/cluster.pb.h
3198
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/cluster.pb_text-impl.h
3199
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/cluster.pb_text.h
3200
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/config.pb.h
3201
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/config.pb_text-impl.h
3202
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/config.pb_text.h
3203
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/control_flow.pb.h
3204
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/debug.pb.h
3205
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/debug.pb_text-impl.h
3206
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/debug.pb_text.h
3207
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/device_properties.pb.h
3208
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/device_properties.pb_text-impl.h
3209
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/device_properties.pb_text.h
3210
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/meta_graph.pb.h
3211
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/named_tensor.pb.h
3212
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/queue_runner.pb.h
3213
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/queue_runner.pb_text-impl.h
3214
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/queue_runner.pb_text.h
3215
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb.h
3216
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb_text-impl.h
3217
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/rewriter_config.pb_text.h
3218
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/saved_model.pb.h
3219
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/saver.pb.h
3220
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/saver.pb_text-impl.h
3221
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/saver.pb_text.h
3222
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/tensor_bundle.pb.h
3223
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/tensor_bundle.pb_text-impl.h
3224
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/tensor_bundle.pb_text.h
3225
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/protobuf/tensorflow_server.pb.h
3226
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/public/session.h
3227
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/public/session_options.h
3228
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/public/version.h
3229
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/bcast.h
3230
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/command_line_flags.h
3231
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/cuda_kernel_helper.h
3232
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/device_name_utils.h
3233
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/env_var.h
3234
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/equal_graph_def.h
3235
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/event.pb.h
3236
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/events_writer.h
3237
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/example_proto_fast_parsing.h
3238
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/example_proto_helper.h
3239
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/guarded_philox_random.h
3240
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/memmapped_file_system.h
3241
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/memmapped_file_system.pb.h
3242
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/memmapped_file_system.pb_text-impl.h
3243
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/memmapped_file_system.pb_text.h
3244
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/memmapped_file_system_writer.h
3245
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/mirror_pad_mode.h
3246
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/mkl_util.h
3247
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/overflow.h
3248
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/padding.h
3249
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/port.h
3250
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/presized_cuckoo_map.h
3251
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/saved_tensor_slice.pb.h
3252
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/saved_tensor_slice.pb_text-impl.h
3253
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/saved_tensor_slice.pb_text.h
3254
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/saved_tensor_slice_util.h
3255
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/sparse/dim_comparator.h
3256
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/sparse/group_iterator.h
3257
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/sparse/sparse_tensor.h
3258
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/stat_summarizer.h
3259
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/stream_executor_util.h
3260
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/strided_slice_op.h
3261
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/tensor_format.h
3262
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/tensor_slice_reader.h
3263
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/tensor_slice_reader_cache.h
3264
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/tensor_slice_set.h
3265
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/tensor_slice_util.h
3266
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/tensor_slice_writer.h
3267
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/test_log.pb.h
3268
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/use_cudnn.h
3269
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/util.h
3270
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/core/util/work_sharder.h
3271
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/blas.h
3272
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_activation.h
3273
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_blas.h
3274
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_diagnostics.h
3275
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_dnn.h
3276
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_driver.h
3277
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_event.h
3278
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_fft.h
3279
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_gpu_executor.h
3280
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_helpers.h
3281
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_kernel.h
3282
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_platform.h
3283
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_platform_id.h
3284
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_rng.h
3285
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_stream.h
3286
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/cuda/cuda_timer.h
3287
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/device_description.h
3288
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/device_memory.h
3289
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/device_options.h
3290
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/dnn.h
3291
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/dso_loader.h
3292
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/event.h
3293
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/executor_cache.h
3294
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/fft.h
3295
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/gpu_launch_dim.h
3296
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/host/host_gpu_executor.h
3297
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/host/host_platform.h
3298
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/host/host_platform_id.h
3299
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/host/host_stream.h
3300
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/host/host_timer.h
3301
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/host_buffer.h
3302
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/kernel.h
3303
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/kernel_cache_config.h
3304
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/kernel_spec.h
3305
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/launch_dim.h
3306
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/array_slice.h
3307
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/casts.h
3308
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/demangle.h
3309
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/env.h
3310
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/error.h
3311
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/human_readable.h
3312
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/initialize.h
3313
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/inlined_vector.h
3314
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/mathutil.h
3315
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/notification.h
3316
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/numbers.h
3317
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/path.h
3318
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/process_state.h
3319
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/ptr_util.h
3320
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/stacktrace.h
3321
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/static_threadlocal.h
3322
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/status.h
3323
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/status_macros.h
3324
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/statusor.h
3325
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/str_util.h
3326
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/strcat.h
3327
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/stringpiece.h
3328
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/stringprintf.h
3329
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/thread_options.h
3330
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/lib/threadpool.h
3331
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/machine_manager.h
3332
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/multi_platform_manager.h
3333
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/platform.h
3334
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/platform/default/mutex.h
3335
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/platform/logging.h
3336
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/platform/mutex.h
3337
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/platform/port.h
3338
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/platform/thread_annotations.h
3339
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/plugin.h
3340
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/plugin_registry.h
3341
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/rng.h
3342
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/scratch_allocator.h
3343
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/shared_memory_config.h
3344
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/stream.h
3345
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/stream_executor.h
3346
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/stream_executor_internal.h
3347
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/stream_executor_pimpl.h
3348
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/temporary_device_memory.h
3349
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/temporary_memory_manager.h
3350
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/timer.h
3351
%%PYTHON_SITELIBDIR%%/tensorflow/include/tensorflow/stream_executor/trace_listener.h
3352
%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/Eigen/Cholesky
3353
%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/Eigen/Core
3354
%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/Eigen/Eigenvalues
3355
%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/Eigen/LU
3356
%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/Eigen/QR
3357
%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/Eigen/SVD
3358
%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/LICENSE
3359
%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/FixedPoint
3360
%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/Tensor
3361
%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/ThreadPool
3362
%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/FixedPointTypes.h
3363
%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/MatMatProduct.h
3364
%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/MatMatProductAVX2.h
3365
%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/MatMatProductNEON.h
3366
%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/MatVecProduct.h
3367
%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/PacketMathAVX2.h
3368
%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/PacketMathAVX512.h
3369
%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/TypeCastingAVX2.h
3370
%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/TypeCastingAVX512.h
3371
%%PYTHON_SITELIBDIR%%/tensorflow/include/third_party/eigen3/unsupported/Eigen/SpecialFunctions
3372
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/CMakeLists.txt
3373
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/Tensor
3374
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/TensorSymmetry
3375
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/ThreadPool
3376
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/README.md
3377
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/Tensor.h
3378
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h
3379
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorArgMaxSycl.h
3380
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h
3381
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h
3382
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h
3383
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h
3384
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h
3385
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h
3386
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h
3387
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h
3388
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h
3389
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h
3390
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h
3391
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h
3392
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h
3393
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h
3394
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h
3395
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h
3396
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h
3397
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h
3398
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h
3399
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h
3400
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h
3401
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h
3402
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h
3403
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h
3404
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h
3405
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h
3406
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h
3407
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h
3408
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h
3409
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h
3410
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h
3411
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h
3412
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h
3413
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h
3414
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h
3415
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h
3416
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h
3417
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h
3418
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h
3419
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h
3420
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h
3421
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h
3422
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h
3423
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h
3424
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h
3425
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h
3426
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h
3427
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h
3428
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h
3429
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h
3430
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h
3431
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h
3432
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h
3433
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h
3434
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h
3435
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h
3436
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h
3437
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorSycl.h
3438
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorSyclConvertToDeviceExpression.h
3439
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExprConstructor.h
3440
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExtractAccessor.h
3441
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorSyclExtractFunctors.h
3442
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorSyclFunctors.h
3443
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorSyclLeafCount.h
3444
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorSyclPlaceHolderExpr.h
3445
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorSyclRun.h
3446
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorSyclTuple.h
3447
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h
3448
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h
3449
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h
3450
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h
3451
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h
3452
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h
3453
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h
3454
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h
3455
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h
3456
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h
3457
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/ThreadPool/SimpleThreadPool.h
3458
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h
3459
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h
3460
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h
3461
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h
3462
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h
3463
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/util/CXX11Meta.h
3464
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h
3465
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/util/EmulateArray.h
3466
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/util/EmulateCXX11Meta.h
3467
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h
3468
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/FFT
3469
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/KroneckerProduct
3470
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/MatrixFunctions
3471
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/SpecialFunctions
3472
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/src/FFT/ei_fftw_impl.h
3473
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/src/FFT/ei_kissfft_impl.h
3474
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h
3475
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h
3476
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h
3477
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h
3478
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h
3479
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h
3480
%%PYTHON_SITELIBDIR%%/tensorflow/include/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/CudaSpecialFunctions.h
3481
%%PYTHON_SITELIBDIR%%/tensorflow/python/__init__.py
3482
%%PYTHON_SITELIBDIR%%/tensorflow/python/_pywrap_tensorflow_internal.so
3483
%%PYTHON_SITELIBDIR%%/tensorflow/python/client/__init__.py
3484
%%PYTHON_SITELIBDIR%%/tensorflow/python/client/client_lib.py
3485
%%PYTHON_SITELIBDIR%%/tensorflow/python/client/device_lib.py
3486
%%PYTHON_SITELIBDIR%%/tensorflow/python/client/session.py
3487
%%PYTHON_SITELIBDIR%%/tensorflow/python/client/timeline.py
3488
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/__init__.py
3489
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/__init__.py
3490
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/analyzer_cli.py
3491
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/base_ui.py
3492
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/cli_shared.py
3493
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/command_parser.py
3494
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/curses_ui.py
3495
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/curses_widgets.py
3496
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/debugger_cli_common.py
3497
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/offline_analyzer.py
3498
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/profile_analyzer_cli.py
3499
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/readline_ui.py
3500
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/stepper_cli.py
3501
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/tensor_format.py
3502
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/cli/ui_factory.py
3503
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/examples/__init__.py
3504
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/examples/debug_errors.py
3505
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/examples/debug_fibonacci.py
3506
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/examples/debug_mnist.py
3507
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/examples/debug_tflearn_iris.py
3508
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/lib/__init__.py
3509
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/lib/debug_data.py
3510
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/lib/debug_utils.py
3511
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/lib/session_debug_testlib.py
3512
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/lib/source_utils.py
3513
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/lib/stepper.py
3514
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/wrappers/__init__.py
3515
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/wrappers/dumping_wrapper.py
3516
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/wrappers/framework.py
3517
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/wrappers/grpc_wrapper.py
3518
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/wrappers/hooks.py
3519
%%PYTHON_SITELIBDIR%%/tensorflow/python/debug/wrappers/local_cli_wrapper.py
3520
%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/__init__.py
3521
%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/estimator.py
3522
%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/estimator_lib.py
3523
%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/export/__init__.py
3524
%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/export/export.py
3525
%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/export/export_lib.py
3526
%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/export/export_output.py
3527
%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/inputs/__init__.py
3528
%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/inputs/inputs.py
3529
%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/inputs/numpy_io.py
3530
%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/inputs/pandas_io.py
3531
%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/inputs/queues/__init__.py
3532
%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/inputs/queues/feeding_functions.py
3533
%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/inputs/queues/feeding_queue_runner.py
3534
%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/model_fn.py
3535
%%PYTHON_SITELIBDIR%%/tensorflow/python/estimator/run_config.py
3536
%%PYTHON_SITELIBDIR%%/tensorflow/python/feature_column/__init__.py
3537
%%PYTHON_SITELIBDIR%%/tensorflow/python/feature_column/feature_column.py
3538
%%PYTHON_SITELIBDIR%%/tensorflow/python/feature_column/feature_column_lib.py
3539
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/__init__.py
3540
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/common_shapes.py
3541
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/constant_op.py
3542
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/cpp_shape_inference_pb2.py
3543
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/device.py
3544
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/dtypes.py
3545
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/errors.py
3546
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/errors_impl.py
3547
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/framework_lib.py
3548
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/function.py
3549
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/graph_io.py
3550
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/graph_util.py
3551
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/graph_util_impl.py
3552
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/importer.py
3553
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/load_library.py
3554
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/meta_graph.py
3555
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/op_def_library.py
3556
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/op_def_registry.py
3557
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/ops.py
3558
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/random_seed.py
3559
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/registry.py
3560
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/sparse_tensor.py
3561
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/subscribe.py
3562
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/tensor_shape.py
3563
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/tensor_util.py
3564
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/test_ops.py
3565
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/test_util.py
3566
%%PYTHON_SITELIBDIR%%/tensorflow/python/framework/versions.py
3567
%%PYTHON_SITELIBDIR%%/tensorflow/python/grappler/__init__.py
3568
%%PYTHON_SITELIBDIR%%/tensorflow/python/grappler/tf_optimizer.py
3569
%%PYTHON_SITELIBDIR%%/tensorflow/python/layers/__init__.py
3570
%%PYTHON_SITELIBDIR%%/tensorflow/python/layers/base.py
3571
%%PYTHON_SITELIBDIR%%/tensorflow/python/layers/convolutional.py
3572
%%PYTHON_SITELIBDIR%%/tensorflow/python/layers/core.py
3573
%%PYTHON_SITELIBDIR%%/tensorflow/python/layers/layers.py
3574
%%PYTHON_SITELIBDIR%%/tensorflow/python/layers/normalization.py
3575
%%PYTHON_SITELIBDIR%%/tensorflow/python/layers/pooling.py
3576
%%PYTHON_SITELIBDIR%%/tensorflow/python/layers/utils.py
3577
%%PYTHON_SITELIBDIR%%/tensorflow/python/lib/__init__.py
3578
%%PYTHON_SITELIBDIR%%/tensorflow/python/lib/io/__init__.py
3579
%%PYTHON_SITELIBDIR%%/tensorflow/python/lib/io/file_io.py
3580
%%PYTHON_SITELIBDIR%%/tensorflow/python/lib/io/python_io.py
3581
%%PYTHON_SITELIBDIR%%/tensorflow/python/lib/io/tf_record.py
3582
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/__init__.py
3583
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/array_grad.py
3584
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/array_ops.py
3585
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/candidate_sampling_ops.py
3586
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/check_ops.py
3587
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/clip_ops.py
3588
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/confusion_matrix.py
3589
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/control_flow_grad.py
3590
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/control_flow_ops.py
3591
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/ctc_ops.py
3592
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/data_flow_grad.py
3593
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/data_flow_ops.py
3594
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/__init__.py
3595
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/bernoulli.py
3596
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/beta.py
3597
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/bijector.py
3598
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/bijector_impl.py
3599
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/bijector_test_util.py
3600
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/categorical.py
3601
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/dirichlet.py
3602
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/dirichlet_multinomial.py
3603
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/distribution.py
3604
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/exponential.py
3605
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/gamma.py
3606
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/identity_bijector.py
3607
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/kullback_leibler.py
3608
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/laplace.py
3609
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/multinomial.py
3610
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/normal.py
3611
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/special_math.py
3612
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/student_t.py
3613
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/transformed_distribution.py
3614
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/uniform.py
3615
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/distributions/util.py
3616
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/embedding_ops.py
3617
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/functional_ops.py
3618
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_array_ops.py
3619
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_candidate_sampling_ops.py
3620
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_control_flow_ops.py
3621
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_ctc_ops.py
3622
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_data_flow_ops.py
3623
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_dataset_ops.py
3624
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_functional_ops.py
3625
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_image_ops.py
3626
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_io_ops.py
3627
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_linalg_ops.py
3628
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_logging_ops.py
3629
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_lookup_ops.py
3630
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_math_ops.py
3631
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_nn_ops.py
3632
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_parsing_ops.py
3633
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_random_ops.py
3634
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_resource_variable_ops.py
3635
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_script_ops.py
3636
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_sdca_ops.py
3637
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_set_ops.py
3638
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_sparse_ops.py
3639
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_spectral_ops.py
3640
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_state_ops.py
3641
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_string_ops.py
3642
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gen_user_ops.py
3643
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gradient_checker.py
3644
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gradients.py
3645
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/gradients_impl.py
3646
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/histogram_ops.py
3647
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/image_grad.py
3648
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/image_ops.py
3649
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/image_ops_impl.py
3650
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/init_ops.py
3651
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/io_ops.py
3652
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/linalg_grad.py
3653
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/linalg_ops.py
3654
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/logging_ops.py
3655
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/lookup_ops.py
3656
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/losses/__init__.py
3657
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/losses/losses.py
3658
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/losses/losses_impl.py
3659
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/losses/util.py
3660
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/math_grad.py
3661
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/math_ops.py
3662
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/metrics.py
3663
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/metrics_impl.py
3664
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/nn.py
3665
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/nn_grad.py
3666
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/nn_impl.py
3667
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/nn_ops.py
3668
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/numerics.py
3669
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/parsing_ops.py
3670
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/partitioned_variables.py
3671
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/random_ops.py
3672
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/resource_variable_ops.py
3673
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/resources.py
3674
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/rnn.py
3675
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/rnn_cell.py
3676
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/rnn_cell_impl.py
3677
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/script_ops.py
3678
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/sdca_ops.py
3679
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/session_ops.py
3680
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/sets.py
3681
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/sets_impl.py
3682
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/sparse_grad.py
3683
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/sparse_ops.py
3684
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/special_math_ops.py
3685
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/spectral_grad.py
3686
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/spectral_ops.py
3687
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/standard_ops.py
3688
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/state_grad.py
3689
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/state_ops.py
3690
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/string_ops.py
3691
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/summary_ops.py
3692
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/template.py
3693
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/tensor_array_grad.py
3694
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/tensor_array_ops.py
3695
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/variable_scope.py
3696
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/variables.py
3697
%%PYTHON_SITELIBDIR%%/tensorflow/python/ops/weights_broadcast_ops.py
3698
%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/__init__.py
3699
%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/app.py
3700
%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/benchmark.py
3701
%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/control_imports.py
3702
%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/flags.py
3703
%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/gfile.py
3704
%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/googletest.py
3705
%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/parameterized.py
3706
%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/resource_loader.py
3707
%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/status_bar.py
3708
%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/sysconfig.py
3709
%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/test.py
3710
%%PYTHON_SITELIBDIR%%/tensorflow/python/platform/tf_logging.py
3711
%%PYTHON_SITELIBDIR%%/tensorflow/python/pywrap_tensorflow.py
3712
%%PYTHON_SITELIBDIR%%/tensorflow/python/pywrap_tensorflow_internal.py
3713
%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/__init__.py
3714
%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/builder.py
3715
%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/builder_impl.py
3716
%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/constants.py
3717
%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/loader.py
3718
%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/loader_impl.py
3719
%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/main_op.py
3720
%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/main_op_impl.py
3721
%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/saved_model.py
3722
%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/signature_constants.py
3723
%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/signature_def_utils.py
3724
%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/signature_def_utils_impl.py
3725
%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/tag_constants.py
3726
%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/utils.py
3727
%%PYTHON_SITELIBDIR%%/tensorflow/python/saved_model/utils_impl.py
3728
%%PYTHON_SITELIBDIR%%/tensorflow/python/summary/__init__.py
3729
%%PYTHON_SITELIBDIR%%/tensorflow/python/summary/plugin_asset.py
3730
%%PYTHON_SITELIBDIR%%/tensorflow/python/summary/summary.py
3731
%%PYTHON_SITELIBDIR%%/tensorflow/python/summary/summary_iterator.py
3732
%%PYTHON_SITELIBDIR%%/tensorflow/python/summary/text_summary.py
3733
%%PYTHON_SITELIBDIR%%/tensorflow/python/summary/writer/__init__.py
3734
%%PYTHON_SITELIBDIR%%/tensorflow/python/summary/writer/event_file_writer.py
3735
%%PYTHON_SITELIBDIR%%/tensorflow/python/summary/writer/writer.py
3736
%%PYTHON_SITELIBDIR%%/tensorflow/python/summary/writer/writer_cache.py
3737
%%PYTHON_SITELIBDIR%%/tensorflow/python/tools/__init__.py
3738
%%PYTHON_SITELIBDIR%%/tensorflow/python/tools/freeze_graph.py
3739
%%PYTHON_SITELIBDIR%%/tensorflow/python/tools/inspect_checkpoint.py
3740
%%PYTHON_SITELIBDIR%%/tensorflow/python/tools/optimize_for_inference.py
3741
%%PYTHON_SITELIBDIR%%/tensorflow/python/tools/optimize_for_inference_lib.py
3742
%%PYTHON_SITELIBDIR%%/tensorflow/python/tools/print_selective_registration_header.py
3743
%%PYTHON_SITELIBDIR%%/tensorflow/python/tools/saved_model_cli.py
3744
%%PYTHON_SITELIBDIR%%/tensorflow/python/tools/selective_registration_header_lib.py
3745
%%PYTHON_SITELIBDIR%%/tensorflow/python/tools/strip_unused.py
3746
%%PYTHON_SITELIBDIR%%/tensorflow/python/tools/strip_unused_lib.py
3747
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/__init__.py
3748
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/adadelta.py
3749
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/adagrad.py
3750
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/adagrad_da.py
3751
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/adam.py
3752
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/basic_loops.py
3753
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/basic_session_run_hooks.py
3754
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/checkpoint_state_pb2.py
3755
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/checkpoint_utils.py
3756
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/coordinator.py
3757
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/device_setter.py
3758
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/evaluation.py
3759
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/ftrl.py
3760
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/gen_training_ops.py
3761
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/gradient_descent.py
3762
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/input.py
3763
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/learning_rate_decay.py
3764
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/momentum.py
3765
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/monitored_session.py
3766
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/moving_averages.py
3767
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/optimizer.py
3768
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/proximal_adagrad.py
3769
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/proximal_gradient_descent.py
3770
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/queue_runner.py
3771
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/queue_runner_impl.py
3772
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/rmsprop.py
3773
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/saver.py
3774
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/saver_test_utils.py
3775
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/server_lib.py
3776
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/session_manager.py
3777
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/session_run_hook.py
3778
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/slot_creator.py
3779
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/summary_io.py
3780
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/supervisor.py
3781
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/sync_replicas_optimizer.py
3782
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/tensorboard_logging.py
3783
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/training.py
3784
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/training_ops.py
3785
%%PYTHON_SITELIBDIR%%/tensorflow/python/training/training_util.py
3786
%%PYTHON_SITELIBDIR%%/tensorflow/python/user_ops/__init__.py
3787
%%PYTHON_SITELIBDIR%%/tensorflow/python/user_ops/user_ops.py
3788
%%PYTHON_SITELIBDIR%%/tensorflow/python/util/__init__.py
3789
%%PYTHON_SITELIBDIR%%/tensorflow/python/util/all_util.py
3790
%%PYTHON_SITELIBDIR%%/tensorflow/python/util/compat.py
3791
%%PYTHON_SITELIBDIR%%/tensorflow/python/util/decorator_utils.py
3792
%%PYTHON_SITELIBDIR%%/tensorflow/python/util/deprecation.py
3793
%%PYTHON_SITELIBDIR%%/tensorflow/python/util/example_parser_configuration.py
3794
%%PYTHON_SITELIBDIR%%/tensorflow/python/util/future_api.py
3795
%%PYTHON_SITELIBDIR%%/tensorflow/python/util/keyword_args.py
3796
%%PYTHON_SITELIBDIR%%/tensorflow/python/util/lazy_loader.py
3797
%%PYTHON_SITELIBDIR%%/tensorflow/python/util/nest.py
3798
%%PYTHON_SITELIBDIR%%/tensorflow/python/util/protobuf/__init__.py
3799
%%PYTHON_SITELIBDIR%%/tensorflow/python/util/protobuf/compare.py
3800
%%PYTHON_SITELIBDIR%%/tensorflow/python/util/tf_contextlib.py
3801
%%PYTHON_SITELIBDIR%%/tensorflow/python/util/tf_decorator.py
3802
%%PYTHON_SITELIBDIR%%/tensorflow/python/util/tf_inspect.py
3803
%%PYTHON_SITELIBDIR%%/tensorflow/python/util/tf_should_use.py
3804
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/TAG
3805
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/__init__.py
3806
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/__main__.py
3807
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/__init__.py
3808
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/application.py
3809
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/event_processing/__init__.py
3810
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/event_processing/directory_watcher.py
3811
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/event_processing/event_accumulator.py
3812
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/event_processing/event_file_inspector.py
3813
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/event_processing/event_file_loader.py
3814
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/event_processing/event_multiplexer.py
3815
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/event_processing/io_wrapper.py
3816
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/event_processing/plugin_asset_util.py
3817
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/event_processing/reservoir.py
3818
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/http_util.py
3819
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/json_util.py
3820
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/backend/process_graph.py
3821
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/dist/bazel-html-imports.html
3822
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/dist/index.html
3823
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/dist/tf-tensorboard.html
3824
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/lib/css/global.css
3825
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/plugins/__init__.py
3826
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/plugins/base_plugin.py
3827
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/plugins/projector/__init__.py
3828
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/plugins/projector/projector_config_pb2.py
3829
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/plugins/projector/projector_plugin.py
3830
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/plugins/text/__init__.py
3831
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/plugins/text/text_plugin.py
3832
%%PYTHON_SITELIBDIR%%/tensorflow/tensorboard/tensorboard.py
3833
%%PYTHON_SITELIBDIR%%/tensorflow/tools/__init__.py
3834
%%PYTHON_SITELIBDIR%%/tensorflow/tools/pip_package/__init__.py
3835
%%PYTHON_SITELIBDIR%%/tensorflow/tools/pip_package/setup.py
3836
%%PYTHON_SITELIBDIR%%/tensorflow/tools/pip_package/simple_console.py
3837
%%PYTHON_SITELIBDIR%%/tensorflow/tools/tfprof/__init__.py
3838
%%PYTHON_SITELIBDIR%%/tensorflow/tools/tfprof/tfprof_log_pb2.py
3839
%%PYTHON_SITELIBDIR%%/tensorflow/tools/tfprof/tfprof_options_pb2.py
3840
%%PYTHON_SITELIBDIR%%/tensorflow/tools/tfprof/tfprof_output_pb2.py

Return to bug 219609