blob: d4ba73bc2b2595267d7d84765067fbd545cc1f50 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
|
include/tensorflow/c/c_api.h
include/tensorflow/c/c_api_experimental.h
include/tensorflow/c/c_api_macros.h
include/tensorflow/c/c_api_macros_internal.h
include/tensorflow/c/eager/c_api.h
include/tensorflow/c/eager/c_api_experimental.h
include/tensorflow/c/eager/dlpack.h
include/tensorflow/c/ops.h
include/tensorflow/c/tensor_interface.h
include/tensorflow/c/tf_attrtype.h
include/tensorflow/c/tf_buffer.h
include/tensorflow/c/tf_datatype.h
include/tensorflow/c/tf_file_statistics.h
include/tensorflow/c/tf_status.h
include/tensorflow/c/tf_status_helper.h
include/tensorflow/c/tf_status_internal.h
include/tensorflow/c/tf_tensor.h
include/tensorflow/c/tf_tensor_internal.h
include/tensorflow/c/tf_tstring.h
include/tensorflow/cc/client/client_session.h
include/tensorflow/cc/framework/grad_op_registry.h
include/tensorflow/cc/framework/gradient_checker.h
include/tensorflow/cc/framework/gradients.h
include/tensorflow/cc/framework/ops.h
include/tensorflow/cc/framework/scope.h
include/tensorflow/cc/framework/scope_internal.h
include/tensorflow/cc/framework/while_gradients.h
include/tensorflow/cc/ops/array_ops.h
include/tensorflow/cc/ops/array_ops_internal.h
include/tensorflow/cc/ops/audio_ops.h
include/tensorflow/cc/ops/audio_ops_internal.h
include/tensorflow/cc/ops/candidate_sampling_ops.h
include/tensorflow/cc/ops/candidate_sampling_ops_internal.h
include/tensorflow/cc/ops/const_op.h
include/tensorflow/cc/ops/control_flow_ops.h
include/tensorflow/cc/ops/control_flow_ops_internal.h
include/tensorflow/cc/ops/data_flow_ops.h
include/tensorflow/cc/ops/data_flow_ops_internal.h
include/tensorflow/cc/ops/dataset_ops.h
include/tensorflow/cc/ops/dataset_ops_internal.h
include/tensorflow/cc/ops/experimental_dataset_ops.h
include/tensorflow/cc/ops/experimental_dataset_ops_internal.h
include/tensorflow/cc/ops/image_ops.h
include/tensorflow/cc/ops/image_ops_internal.h
include/tensorflow/cc/ops/io_ops.h
include/tensorflow/cc/ops/io_ops_internal.h
include/tensorflow/cc/ops/linalg_ops.h
include/tensorflow/cc/ops/linalg_ops_internal.h
include/tensorflow/cc/ops/list_ops.h
include/tensorflow/cc/ops/list_ops_internal.h
include/tensorflow/cc/ops/logging_ops.h
include/tensorflow/cc/ops/logging_ops_internal.h
include/tensorflow/cc/ops/lookup_ops.h
include/tensorflow/cc/ops/lookup_ops_internal.h
include/tensorflow/cc/ops/manip_ops.h
include/tensorflow/cc/ops/manip_ops_internal.h
include/tensorflow/cc/ops/map_ops.h
include/tensorflow/cc/ops/map_ops_internal.h
include/tensorflow/cc/ops/math_ops.h
include/tensorflow/cc/ops/math_ops_internal.h
include/tensorflow/cc/ops/nn_ops.h
include/tensorflow/cc/ops/nn_ops_internal.h
include/tensorflow/cc/ops/no_op.h
include/tensorflow/cc/ops/no_op_internal.h
include/tensorflow/cc/ops/parsing_ops.h
include/tensorflow/cc/ops/parsing_ops_internal.h
include/tensorflow/cc/ops/random_ops.h
include/tensorflow/cc/ops/random_ops_internal.h
include/tensorflow/cc/ops/resource_variable_ops.h
include/tensorflow/cc/ops/sparse_ops.h
include/tensorflow/cc/ops/sparse_ops_internal.h
include/tensorflow/cc/ops/standard_ops.h
include/tensorflow/cc/ops/state_ops.h
include/tensorflow/cc/ops/state_ops_internal.h
include/tensorflow/cc/ops/string_ops.h
include/tensorflow/cc/ops/string_ops_internal.h
include/tensorflow/cc/ops/training_ops.h
include/tensorflow/cc/ops/training_ops_internal.h
include/tensorflow/cc/ops/user_ops.h
include/tensorflow/cc/ops/user_ops_internal.h
include/tensorflow/cc/ops/while_loop.h
include/tensorflow/cc/saved_model/constants.h
include/tensorflow/cc/saved_model/loader.h
include/tensorflow/cc/saved_model/metrics.h
include/tensorflow/cc/saved_model/reader.h
include/tensorflow/cc/saved_model/signature_constants.h
include/tensorflow/cc/saved_model/tag_constants.h
include/tensorflow/cc/saved_model/util.h
include/tensorflow/cc/tools/freeze_saved_model.h
include/tensorflow/cc/training/coordinator.h
include/tensorflow/cc/training/queue_runner.h
include/tensorflow/compiler/jit/defs.h
include/tensorflow/compiler/mlir/tensorflow/utils/error_util.h
include/tensorflow/compiler/xla/array.h
include/tensorflow/compiler/xla/array2d.h
include/tensorflow/compiler/xla/array3d.h
include/tensorflow/compiler/xla/array4d.h
include/tensorflow/compiler/xla/autotune_results.pb.h
include/tensorflow/compiler/xla/comparison_util.h
include/tensorflow/compiler/xla/debug_options_flags.h
include/tensorflow/compiler/xla/debug_options_parsers.h
include/tensorflow/compiler/xla/hlo/ir/dfs_hlo_visitor.h
include/tensorflow/compiler/xla/hlo/ir/dfs_hlo_visitor_with_default.h
include/tensorflow/compiler/xla/hlo/ir/dynamic_parameter_binding.h
include/tensorflow/compiler/xla/hlo/ir/hlo_casting_utils.h
include/tensorflow/compiler/xla/hlo/ir/hlo_clone_context.h
include/tensorflow/compiler/xla/hlo/ir/hlo_computation.h
include/tensorflow/compiler/xla/hlo/ir/hlo_domain_metadata.h
include/tensorflow/compiler/xla/hlo/ir/hlo_input_output_alias_config.h
include/tensorflow/compiler/xla/hlo/ir/hlo_instruction.h
include/tensorflow/compiler/xla/hlo/ir/hlo_instructions.h
include/tensorflow/compiler/xla/hlo/ir/hlo_module.h
include/tensorflow/compiler/xla/hlo/ir/hlo_module_metadata.h
include/tensorflow/compiler/xla/hlo/ir/hlo_op_metadata.h
include/tensorflow/compiler/xla/hlo/ir/hlo_opcode.h
include/tensorflow/compiler/xla/hlo/ir/hlo_schedule.h
include/tensorflow/compiler/xla/hlo/ir/hlo_sharding.h
include/tensorflow/compiler/xla/hlo/ir/hlo_sharding_metadata.h
include/tensorflow/compiler/xla/index_util.h
include/tensorflow/compiler/xla/iterator_util.h
include/tensorflow/compiler/xla/layout.h
include/tensorflow/compiler/xla/layout_util.h
include/tensorflow/compiler/xla/literal.h
include/tensorflow/compiler/xla/literal_util.h
include/tensorflow/compiler/xla/map_util.h
include/tensorflow/compiler/xla/mlir/utils/error_util.h
include/tensorflow/compiler/xla/overflow_util.h
include/tensorflow/compiler/xla/parse_flags_from_env.h
include/tensorflow/compiler/xla/permutation_util.h
include/tensorflow/compiler/xla/primitive_util.h
include/tensorflow/compiler/xla/printer.h
include/tensorflow/compiler/xla/protobuf_util.h
include/tensorflow/compiler/xla/service/compilation_environments.h
include/tensorflow/compiler/xla/service/computation_layout.h
include/tensorflow/compiler/xla/service/computation_placer.h
include/tensorflow/compiler/xla/service/global_device_id.h
include/tensorflow/compiler/xla/service/hlo.pb.h
include/tensorflow/compiler/xla/service/hlo_module_config.h
include/tensorflow/compiler/xla/service/mapped_ptr_container_sorter.h
include/tensorflow/compiler/xla/service/name_uniquer.h
include/tensorflow/compiler/xla/shape.h
include/tensorflow/compiler/xla/shape_layout.h
include/tensorflow/compiler/xla/shape_tree.h
include/tensorflow/compiler/xla/shape_util.h
include/tensorflow/compiler/xla/status.h
include/tensorflow/compiler/xla/status_macros.h
include/tensorflow/compiler/xla/statusor.h
include/tensorflow/compiler/xla/stream_executor/allocator_stats.h
include/tensorflow/compiler/xla/stream_executor/blas.h
include/tensorflow/compiler/xla/stream_executor/cuda/cuda_activation.h
include/tensorflow/compiler/xla/stream_executor/cuda/cuda_platform_id.h
include/tensorflow/compiler/xla/stream_executor/data_type.h
include/tensorflow/compiler/xla/stream_executor/device_description.h
include/tensorflow/compiler/xla/stream_executor/device_description.pb.h
include/tensorflow/compiler/xla/stream_executor/device_host_allocator.h
include/tensorflow/compiler/xla/stream_executor/device_id_utils.h
include/tensorflow/compiler/xla/stream_executor/device_mem_allocator.h
include/tensorflow/compiler/xla/stream_executor/device_memory.h
include/tensorflow/compiler/xla/stream_executor/device_memory_allocator.h
include/tensorflow/compiler/xla/stream_executor/device_options.h
include/tensorflow/compiler/xla/stream_executor/dnn.h
include/tensorflow/compiler/xla/stream_executor/dnn.pb.h
include/tensorflow/compiler/xla/stream_executor/event.h
include/tensorflow/compiler/xla/stream_executor/executor_cache.h
include/tensorflow/compiler/xla/stream_executor/fft.h
include/tensorflow/compiler/xla/stream_executor/gpu/gpu_activation.h
include/tensorflow/compiler/xla/stream_executor/gpu/gpu_init.h
include/tensorflow/compiler/xla/stream_executor/gpu_launch_dim.h
include/tensorflow/compiler/xla/stream_executor/host/host_platform_id.h
include/tensorflow/compiler/xla/stream_executor/host_or_device_scalar.h
include/tensorflow/compiler/xla/stream_executor/kernel.h
include/tensorflow/compiler/xla/stream_executor/kernel_cache_config.h
include/tensorflow/compiler/xla/stream_executor/kernel_spec.h
include/tensorflow/compiler/xla/stream_executor/launch_dim.h
include/tensorflow/compiler/xla/stream_executor/module_spec.h
include/tensorflow/compiler/xla/stream_executor/multi_platform_manager.h
include/tensorflow/compiler/xla/stream_executor/numeric_options.h
include/tensorflow/compiler/xla/stream_executor/platform.h
include/tensorflow/compiler/xla/stream_executor/platform/default/dso_loader.h
include/tensorflow/compiler/xla/stream_executor/platform/default/initialize.h
include/tensorflow/compiler/xla/stream_executor/platform/dso_loader.h
include/tensorflow/compiler/xla/stream_executor/platform/initialize.h
include/tensorflow/compiler/xla/stream_executor/platform/logging.h
include/tensorflow/compiler/xla/stream_executor/platform/platform.h
include/tensorflow/compiler/xla/stream_executor/platform/port.h
include/tensorflow/compiler/xla/stream_executor/plugin.h
include/tensorflow/compiler/xla/stream_executor/plugin_registry.h
include/tensorflow/compiler/xla/stream_executor/rng.h
include/tensorflow/compiler/xla/stream_executor/rocm/rocm_platform_id.h
include/tensorflow/compiler/xla/stream_executor/scratch_allocator.h
include/tensorflow/compiler/xla/stream_executor/stream.h
include/tensorflow/compiler/xla/stream_executor/stream_executor.h
include/tensorflow/compiler/xla/stream_executor/stream_executor_internal.h
include/tensorflow/compiler/xla/stream_executor/stream_executor_pimpl.h
include/tensorflow/compiler/xla/stream_executor/temporary_device_memory.h
include/tensorflow/compiler/xla/stream_executor/temporary_memory_manager.h
include/tensorflow/compiler/xla/stream_executor/timer.h
include/tensorflow/compiler/xla/stream_executor/trace_listener.h
include/tensorflow/compiler/xla/types.h
include/tensorflow/compiler/xla/util.h
include/tensorflow/compiler/xla/window_util.h
include/tensorflow/compiler/xla/xla.pb.h
include/tensorflow/compiler/xla/xla_data.pb.h
include/tensorflow/core/common_runtime/all_to_all.h
include/tensorflow/core/common_runtime/allocator_retry.h
include/tensorflow/core/common_runtime/arg_ret_placement.h
include/tensorflow/core/common_runtime/base_collective_executor.h
include/tensorflow/core/common_runtime/bfc_allocator.h
include/tensorflow/core/common_runtime/buf_rendezvous.h
include/tensorflow/core/common_runtime/build_graph_options.h
include/tensorflow/core/common_runtime/collective_executor_mgr.h
include/tensorflow/core/common_runtime/collective_param_resolver_local.h
include/tensorflow/core/common_runtime/collective_rma_local.h
include/tensorflow/core/common_runtime/collective_util.h
include/tensorflow/core/common_runtime/colocation_graph.h
include/tensorflow/core/common_runtime/composite_device.h
include/tensorflow/core/common_runtime/constant_folding.h
include/tensorflow/core/common_runtime/copy_tensor.h
include/tensorflow/core/common_runtime/costmodel_manager.h
include/tensorflow/core/common_runtime/debugger_state_interface.h
include/tensorflow/core/common_runtime/device.h
include/tensorflow/core/common_runtime/device/device_event_mgr.h
include/tensorflow/core/common_runtime/device/device_host_allocator.h
include/tensorflow/core/common_runtime/device/device_id.h
include/tensorflow/core/common_runtime/device/device_id_manager.h
include/tensorflow/core/common_runtime/device/device_mem_allocator.h
include/tensorflow/core/common_runtime/device_factory.h
include/tensorflow/core/common_runtime/device_mgr.h
include/tensorflow/core/common_runtime/device_resolver_local.h
include/tensorflow/core/common_runtime/device_set.h
include/tensorflow/core/common_runtime/dma_helper.h
include/tensorflow/core/common_runtime/eval_const_tensor.h
include/tensorflow/core/common_runtime/executor.h
include/tensorflow/core/common_runtime/executor_factory.h
include/tensorflow/core/common_runtime/function.h
include/tensorflow/core/common_runtime/function_body.h
include/tensorflow/core/common_runtime/function_def_utils.h
include/tensorflow/core/common_runtime/function_optimization_registry.h
include/tensorflow/core/common_runtime/function_utils.h
include/tensorflow/core/common_runtime/gpu/gpu_bfc_allocator.h
include/tensorflow/core/common_runtime/gpu/gpu_cudamalloc_allocator.h
include/tensorflow/core/common_runtime/gpu/gpu_debug_allocator.h
include/tensorflow/core/common_runtime/gpu/gpu_device.h
include/tensorflow/core/common_runtime/gpu/gpu_id.h
include/tensorflow/core/common_runtime/gpu/gpu_id_manager.h
include/tensorflow/core/common_runtime/gpu/gpu_managed_allocator.h
include/tensorflow/core/common_runtime/gpu/gpu_process_state.h
include/tensorflow/core/common_runtime/gpu/gpu_util.h
include/tensorflow/core/common_runtime/gpu/gpu_virtual_mem_allocator.h
include/tensorflow/core/common_runtime/gpu_device_context.h
include/tensorflow/core/common_runtime/gradients.h
include/tensorflow/core/common_runtime/graph_constructor.h
include/tensorflow/core/common_runtime/graph_def_builder_util.h
include/tensorflow/core/common_runtime/graph_execution_state.h
include/tensorflow/core/common_runtime/graph_optimizer.h
include/tensorflow/core/common_runtime/graph_runner.h
include/tensorflow/core/common_runtime/hierarchical_tree_broadcaster.h
include/tensorflow/core/common_runtime/inline_function_utils.h
include/tensorflow/core/common_runtime/input_colocation_exemption_registry.h
include/tensorflow/core/common_runtime/inspecting_placer.h
include/tensorflow/core/common_runtime/int32_fulltype.h
include/tensorflow/core/common_runtime/isolate_placer_inspection_required_ops_pass.h
include/tensorflow/core/common_runtime/local_device.h
include/tensorflow/core/common_runtime/local_executor_params.h
include/tensorflow/core/common_runtime/lower_case_op.h
include/tensorflow/core/common_runtime/lower_function_call_inline_policy.h
include/tensorflow/core/common_runtime/lower_function_call_op.h
include/tensorflow/core/common_runtime/lower_functional_ops.h
include/tensorflow/core/common_runtime/lower_if_op.h
include/tensorflow/core/common_runtime/lower_while_op.h
include/tensorflow/core/common_runtime/memory_types.h
include/tensorflow/core/common_runtime/mkl_cpu_allocator.h
include/tensorflow/core/common_runtime/mkl_layout_pass.h
include/tensorflow/core/common_runtime/node_file_writer.h
include/tensorflow/core/common_runtime/optimization_registry.h
include/tensorflow/core/common_runtime/optimized_function_graph_info.h
include/tensorflow/core/common_runtime/partitioning_utils.h
include/tensorflow/core/common_runtime/permuter.h
include/tensorflow/core/common_runtime/placer.h
include/tensorflow/core/common_runtime/placer_inspection_required_ops_utils.h
include/tensorflow/core/common_runtime/pluggable_device/pluggable_device.h
include/tensorflow/core/common_runtime/pluggable_device/pluggable_device_bfc_allocator.h
include/tensorflow/core/common_runtime/pluggable_device/pluggable_device_context.h
include/tensorflow/core/common_runtime/pluggable_device/pluggable_device_factory.h
include/tensorflow/core/common_runtime/pluggable_device/pluggable_device_init.h
include/tensorflow/core/common_runtime/pluggable_device/pluggable_device_process_state.h
include/tensorflow/core/common_runtime/pluggable_device/pluggable_device_simple_allocator.h
include/tensorflow/core/common_runtime/pluggable_device/pluggable_device_util.h
include/tensorflow/core/common_runtime/pool_allocator.h
include/tensorflow/core/common_runtime/process_function_library_runtime.h
include/tensorflow/core/common_runtime/process_state.h
include/tensorflow/core/common_runtime/process_util.h
include/tensorflow/core/common_runtime/profile_handler.h
include/tensorflow/core/common_runtime/quantize_training.h
include/tensorflow/core/common_runtime/renamed_device.h
include/tensorflow/core/common_runtime/rendezvous_mgr.h
include/tensorflow/core/common_runtime/rendezvous_util.h
include/tensorflow/core/common_runtime/replicate_per_replica_nodes.h
include/tensorflow/core/common_runtime/ring_alg.h
include/tensorflow/core/common_runtime/ring_gatherer.h
include/tensorflow/core/common_runtime/ring_reducer.h
include/tensorflow/core/common_runtime/scoped_allocator.h
include/tensorflow/core/common_runtime/scoped_allocator_mgr.h
include/tensorflow/core/common_runtime/session_factory.h
include/tensorflow/core/common_runtime/shape_refiner.h
include/tensorflow/core/common_runtime/shared_counter.h
include/tensorflow/core/common_runtime/single_threaded_cpu_device.h
include/tensorflow/core/common_runtime/stats_publisher_interface.h
include/tensorflow/core/common_runtime/step_stats_collector.h
include/tensorflow/core/common_runtime/threadpool_device.h
include/tensorflow/core/example/example.pb.h
include/tensorflow/core/example/example_parser_configuration.pb.h
include/tensorflow/core/example/feature.pb.h
include/tensorflow/core/example/feature_util.h
include/tensorflow/core/framework/allocation_description.pb.h
include/tensorflow/core/framework/allocator.h
include/tensorflow/core/framework/allocator_registry.h
include/tensorflow/core/framework/api_def.pb.h
include/tensorflow/core/framework/attr_value.pb.h
include/tensorflow/core/framework/attr_value_util.h
include/tensorflow/core/framework/bfloat16.h
include/tensorflow/core/framework/bounds_check.h
include/tensorflow/core/framework/cancellation.h
include/tensorflow/core/framework/collective.h
include/tensorflow/core/framework/common_shape_fns.h
include/tensorflow/core/framework/control_flow.h
include/tensorflow/core/framework/cost_graph.pb.h
include/tensorflow/core/framework/dataset.h
include/tensorflow/core/framework/dataset.pb.h
include/tensorflow/core/framework/dataset_metadata.pb.h
include/tensorflow/core/framework/dataset_options.pb.h
include/tensorflow/core/framework/dataset_stateful_op_allowlist.h
include/tensorflow/core/framework/device.h
include/tensorflow/core/framework/device_attributes.pb.h
include/tensorflow/core/framework/device_base.h
include/tensorflow/core/framework/device_factory.h
include/tensorflow/core/framework/full_type.pb.h
include/tensorflow/core/framework/full_type_inference_util.h
include/tensorflow/core/framework/full_type_util.h
include/tensorflow/core/framework/function.h
include/tensorflow/core/framework/function.pb.h
include/tensorflow/core/framework/function_handle_cache.h
include/tensorflow/core/framework/graph.pb.h
include/tensorflow/core/framework/graph_debug_info.pb.h
include/tensorflow/core/framework/graph_def_util.h
include/tensorflow/core/framework/graph_to_functiondef.h
include/tensorflow/core/framework/graph_transfer_info.pb.h
include/tensorflow/core/framework/kernel_def.pb.h
include/tensorflow/core/framework/kernel_def_builder.h
include/tensorflow/core/framework/kernel_def_util.h
include/tensorflow/core/framework/kernel_shape_util.h
include/tensorflow/core/framework/local_rendezvous.h
include/tensorflow/core/framework/log_memory.h
include/tensorflow/core/framework/log_memory.pb.h
include/tensorflow/core/framework/logging.h
include/tensorflow/core/framework/lookup_interface.h
include/tensorflow/core/framework/memory_types.h
include/tensorflow/core/framework/metrics.h
include/tensorflow/core/framework/model.h
include/tensorflow/core/framework/model.pb.h
include/tensorflow/core/framework/node_def.pb.h
include/tensorflow/core/framework/node_def_builder.h
include/tensorflow/core/framework/node_def_util.h
include/tensorflow/core/framework/node_properties.h
include/tensorflow/core/framework/numeric_op.h
include/tensorflow/core/framework/numeric_types.h
include/tensorflow/core/framework/op.h
include/tensorflow/core/framework/op_def.pb.h
include/tensorflow/core/framework/op_def_builder.h
include/tensorflow/core/framework/op_def_util.h
include/tensorflow/core/framework/op_kernel.h
include/tensorflow/core/framework/op_requires.h
include/tensorflow/core/framework/op_segment.h
include/tensorflow/core/framework/ops_util.h
include/tensorflow/core/framework/optimized_function_graph.pb.h
include/tensorflow/core/framework/partial_tensor_shape.h
include/tensorflow/core/framework/queue_interface.h
include/tensorflow/core/framework/reader_base.pb.h
include/tensorflow/core/framework/reader_interface.h
include/tensorflow/core/framework/reader_op_kernel.h
include/tensorflow/core/framework/ref_var.h
include/tensorflow/core/framework/register_types.h
include/tensorflow/core/framework/register_types_traits.h
include/tensorflow/core/framework/registration/options.h
include/tensorflow/core/framework/registration/registration.h
include/tensorflow/core/framework/rendezvous.h
include/tensorflow/core/framework/resource_base.h
include/tensorflow/core/framework/resource_handle.h
include/tensorflow/core/framework/resource_handle.pb.h
include/tensorflow/core/framework/resource_mgr.h
include/tensorflow/core/framework/resource_op_kernel.h
include/tensorflow/core/framework/resource_var.h
include/tensorflow/core/framework/rng_alg.h
include/tensorflow/core/framework/run_handler.h
include/tensorflow/core/framework/run_handler_util.h
include/tensorflow/core/framework/session_state.h
include/tensorflow/core/framework/shape_inference.h
include/tensorflow/core/framework/shared_ptr_variant.h
include/tensorflow/core/framework/stats_aggregator.h
include/tensorflow/core/framework/step_stats.pb.h
include/tensorflow/core/framework/summary.pb.h
include/tensorflow/core/framework/tensor.h
include/tensorflow/core/framework/tensor.pb.h
include/tensorflow/core/framework/tensor_description.pb.h
include/tensorflow/core/framework/tensor_key.h
include/tensorflow/core/framework/tensor_reference.h
include/tensorflow/core/framework/tensor_shape.h
include/tensorflow/core/framework/tensor_shape.pb.h
include/tensorflow/core/framework/tensor_slice.h
include/tensorflow/core/framework/tensor_slice.pb.h
include/tensorflow/core/framework/tensor_types.h
include/tensorflow/core/framework/tensor_util.h
include/tensorflow/core/framework/thread_factory.h
include/tensorflow/core/framework/tracking_allocator.h
include/tensorflow/core/framework/type_index.h
include/tensorflow/core/framework/type_traits.h
include/tensorflow/core/framework/typed_allocator.h
include/tensorflow/core/framework/types.h
include/tensorflow/core/framework/types.pb.h
include/tensorflow/core/framework/variable.pb.h
include/tensorflow/core/framework/variant.h
include/tensorflow/core/framework/variant_encode_decode.h
include/tensorflow/core/framework/variant_op_registry.h
include/tensorflow/core/framework/variant_tensor_data.h
include/tensorflow/core/framework/versions.h
include/tensorflow/core/framework/versions.pb.h
include/tensorflow/core/graph/algorithm.h
include/tensorflow/core/graph/collective_order.h
include/tensorflow/core/graph/colors.h
include/tensorflow/core/graph/control_flow.h
include/tensorflow/core/graph/costmodel.h
include/tensorflow/core/graph/default_device.h
include/tensorflow/core/graph/edgeset.h
include/tensorflow/core/graph/graph.h
include/tensorflow/core/graph/graph_def_builder.h
include/tensorflow/core/graph/graph_node_util.h
include/tensorflow/core/graph/graph_partition.h
include/tensorflow/core/graph/node_builder.h
include/tensorflow/core/graph/optimizer_cse.h
include/tensorflow/core/graph/subgraph.h
include/tensorflow/core/graph/tensor_id.h
include/tensorflow/core/graph/testlib.h
include/tensorflow/core/graph/types.h
include/tensorflow/core/graph/validate.h
include/tensorflow/core/graph/while_context.h
include/tensorflow/core/grappler/clusters/cluster.h
include/tensorflow/core/grappler/clusters/utils.h
include/tensorflow/core/grappler/clusters/virtual_cluster.h
include/tensorflow/core/grappler/costs/analytical_cost_estimator.h
include/tensorflow/core/grappler/costs/cost_estimator.h
include/tensorflow/core/grappler/costs/graph_memory.h
include/tensorflow/core/grappler/costs/graph_properties.h
include/tensorflow/core/grappler/costs/op_context.h
include/tensorflow/core/grappler/costs/op_level_cost_estimator.h
include/tensorflow/core/grappler/costs/op_performance_data.pb.h
include/tensorflow/core/grappler/costs/utils.h
include/tensorflow/core/grappler/costs/virtual_placer.h
include/tensorflow/core/grappler/costs/virtual_scheduler.h
include/tensorflow/core/grappler/devices.h
include/tensorflow/core/grappler/graph_topology_view.h
include/tensorflow/core/grappler/graph_view.h
include/tensorflow/core/grappler/grappler_item.h
include/tensorflow/core/grappler/mutable_graph_view.h
include/tensorflow/core/grappler/op_types.h
include/tensorflow/core/grappler/optimizers/arithmetic_optimizer.h
include/tensorflow/core/grappler/optimizers/auto_mixed_precision.h
include/tensorflow/core/grappler/optimizers/auto_mixed_precision_lists.h
include/tensorflow/core/grappler/optimizers/auto_parallel.h
include/tensorflow/core/grappler/optimizers/common_subgraph_elimination.h
include/tensorflow/core/grappler/optimizers/constant_folding.h
include/tensorflow/core/grappler/optimizers/custom_graph_optimizer.h
include/tensorflow/core/grappler/optimizers/custom_graph_optimizer_registry.h
include/tensorflow/core/grappler/optimizers/debug_stripper.h
include/tensorflow/core/grappler/optimizers/dependency_optimizer.h
include/tensorflow/core/grappler/optimizers/evaluation_utils.h
include/tensorflow/core/grappler/optimizers/function_api_info.h
include/tensorflow/core/grappler/optimizers/function_optimizer.h
include/tensorflow/core/grappler/optimizers/generic_layout_optimizer.h
include/tensorflow/core/grappler/optimizers/generic_layout_optimizer_transposer.h
include/tensorflow/core/grappler/optimizers/generic_layout_optimizer_transposer_factory.h
include/tensorflow/core/grappler/optimizers/graph_optimizer.h
include/tensorflow/core/grappler/optimizers/graph_optimizer_stage.h
include/tensorflow/core/grappler/optimizers/implementation_selector.h
include/tensorflow/core/grappler/optimizers/loop_optimizer.h
include/tensorflow/core/grappler/optimizers/memory_optimizer.h
include/tensorflow/core/grappler/optimizers/meta_optimizer.h
include/tensorflow/core/grappler/optimizers/model_pruner.h
include/tensorflow/core/grappler/optimizers/pin_to_host_optimizer.h
include/tensorflow/core/grappler/optimizers/remapper.h
include/tensorflow/core/grappler/optimizers/scoped_allocator_optimizer.h
include/tensorflow/core/grappler/optimizers/shape_optimizer.h
include/tensorflow/core/grappler/optimizers/static_schedule.h
include/tensorflow/core/grappler/optimizers/tfg_optimizer_hook.h
include/tensorflow/core/grappler/optimizers/tfg_passes_builder.h
include/tensorflow/core/grappler/utils.h
include/tensorflow/core/grappler/utils/canonicalizer.h
include/tensorflow/core/grappler/utils/colocation.h
include/tensorflow/core/grappler/utils/frame.h
include/tensorflow/core/grappler/utils/functions.h
include/tensorflow/core/grappler/utils/graph_view.h
include/tensorflow/core/grappler/utils/graph_view_internal.h
include/tensorflow/core/grappler/utils/pattern_utils.h
include/tensorflow/core/grappler/utils/symbolic_shapes.h
include/tensorflow/core/grappler/utils/topological_sort.h
include/tensorflow/core/grappler/utils/tpu.h
include/tensorflow/core/grappler/utils/transitive_fanin.h
include/tensorflow/core/grappler/utils/traversal.h
include/tensorflow/core/grappler/verifiers/graph_verifier.h
include/tensorflow/core/grappler/verifiers/structure_verifier.h
include/tensorflow/core/ir/attributes.cc.inc
include/tensorflow/core/ir/attributes.h.inc
include/tensorflow/core/ir/dialect.cc.inc
include/tensorflow/core/ir/dialect.h
include/tensorflow/core/ir/dialect.h.inc
include/tensorflow/core/ir/importexport/convert_attributes.h
include/tensorflow/core/ir/importexport/convert_tensor.h
include/tensorflow/core/ir/importexport/convert_types.h
include/tensorflow/core/ir/importexport/functiondef_export.h
include/tensorflow/core/ir/importexport/functiondef_import.h
include/tensorflow/core/ir/importexport/graphdef_export.h
include/tensorflow/core/ir/importexport/graphdef_import.h
include/tensorflow/core/ir/importexport/mangling.h
include/tensorflow/core/ir/importexport/parse_text_proto.h
include/tensorflow/core/ir/interfaces.cc.inc
include/tensorflow/core/ir/interfaces.h
include/tensorflow/core/ir/interfaces.h.inc
include/tensorflow/core/ir/ops.cc.inc
include/tensorflow/core/ir/ops.h
include/tensorflow/core/ir/ops.h.inc
include/tensorflow/core/ir/tf_op_names.inc
include/tensorflow/core/ir/tf_op_registry.h
include/tensorflow/core/ir/tf_op_wrapper.h
include/tensorflow/core/ir/types/attributes.cc.inc
include/tensorflow/core/ir/types/attributes.h.inc
include/tensorflow/core/ir/types/attributes_enum.cc.inc
include/tensorflow/core/ir/types/attributes_enum.h.inc
include/tensorflow/core/ir/types/dialect.cpp.inc
include/tensorflow/core/ir/types/dialect.h
include/tensorflow/core/ir/types/dialect.h.inc
include/tensorflow/core/ir/types/types.cc.inc
include/tensorflow/core/ir/types/types.def
include/tensorflow/core/ir/types/types.h.inc
include/tensorflow/core/ir/utility.h
include/tensorflow/core/ir/utils/shape_inference_utils.h
include/tensorflow/core/kernels/ops_util.h
include/tensorflow/core/lib/bfloat16/bfloat16.h
include/tensorflow/core/lib/core/arena.h
include/tensorflow/core/lib/core/bitmap.h
include/tensorflow/core/lib/core/bits.h
include/tensorflow/core/lib/core/coding.h
include/tensorflow/core/lib/core/error_codes.pb.h
include/tensorflow/core/lib/core/errors.h
include/tensorflow/core/lib/core/notification.h
include/tensorflow/core/lib/core/raw_coding.h
include/tensorflow/core/lib/core/refcount.h
include/tensorflow/core/lib/core/status.h
include/tensorflow/core/lib/core/status_test_util.h
include/tensorflow/core/lib/core/stringpiece.h
include/tensorflow/core/lib/core/threadpool.h
include/tensorflow/core/lib/core/threadpool_interface.h
include/tensorflow/core/lib/core/threadpool_options.h
include/tensorflow/core/lib/gtl/array_slice.h
include/tensorflow/core/lib/gtl/cleanup.h
include/tensorflow/core/lib/gtl/compactptrset.h
include/tensorflow/core/lib/gtl/edit_distance.h
include/tensorflow/core/lib/gtl/flatmap.h
include/tensorflow/core/lib/gtl/flatrep.h
include/tensorflow/core/lib/gtl/flatset.h
include/tensorflow/core/lib/gtl/inlined_vector.h
include/tensorflow/core/lib/gtl/int_type.h
include/tensorflow/core/lib/gtl/iterator_range.h
include/tensorflow/core/lib/gtl/manual_constructor.h
include/tensorflow/core/lib/gtl/map_util.h
include/tensorflow/core/lib/gtl/optional.h
include/tensorflow/core/lib/gtl/priority_queue_util.h
include/tensorflow/core/lib/gtl/subtle/map_traits.h
include/tensorflow/core/lib/gtl/top_n.h
include/tensorflow/core/lib/hash/crc32c.h
include/tensorflow/core/lib/hash/hash.h
include/tensorflow/core/lib/histogram/histogram.h
include/tensorflow/core/lib/io/block.h
include/tensorflow/core/lib/io/block_builder.h
include/tensorflow/core/lib/io/buffered_inputstream.h
include/tensorflow/core/lib/io/cache.h
include/tensorflow/core/lib/io/compression.h
include/tensorflow/core/lib/io/format.h
include/tensorflow/core/lib/io/inputbuffer.h
include/tensorflow/core/lib/io/inputstream_interface.h
include/tensorflow/core/lib/io/iterator.h
include/tensorflow/core/lib/io/path.h
include/tensorflow/core/lib/io/proto_encode_helper.h
include/tensorflow/core/lib/io/random_inputstream.h
include/tensorflow/core/lib/io/record_reader.h
include/tensorflow/core/lib/io/record_writer.h
include/tensorflow/core/lib/io/table.h
include/tensorflow/core/lib/io/table_builder.h
include/tensorflow/core/lib/io/table_options.h
include/tensorflow/core/lib/io/two_level_iterator.h
include/tensorflow/core/lib/io/zlib_compression_options.h
include/tensorflow/core/lib/io/zlib_inputstream.h
include/tensorflow/core/lib/io/zlib_outputbuffer.h
include/tensorflow/core/lib/llvm_rtti/llvm_rtti.h
include/tensorflow/core/lib/math/math_util.h
include/tensorflow/core/lib/monitoring/cell_reader.h
include/tensorflow/core/lib/monitoring/collected_metrics.h
include/tensorflow/core/lib/monitoring/collection_registry.h
include/tensorflow/core/lib/monitoring/counter.h
include/tensorflow/core/lib/monitoring/gauge.h
include/tensorflow/core/lib/monitoring/metric_def.h
include/tensorflow/core/lib/monitoring/percentile_sampler.h
include/tensorflow/core/lib/monitoring/sampler.h
include/tensorflow/core/lib/monitoring/test_utils.h
include/tensorflow/core/lib/monitoring/timed.h
include/tensorflow/core/lib/monitoring/types.h
include/tensorflow/core/lib/random/distribution_sampler.h
include/tensorflow/core/lib/random/exact_uniform_int.h
include/tensorflow/core/lib/random/philox_random.h
include/tensorflow/core/lib/random/random.h
include/tensorflow/core/lib/random/random_distributions.h
include/tensorflow/core/lib/random/random_distributions_utils.h
include/tensorflow/core/lib/random/simple_philox.h
include/tensorflow/core/lib/random/weighted_picker.h
include/tensorflow/core/lib/strings/base64.h
include/tensorflow/core/lib/strings/numbers.h
include/tensorflow/core/lib/strings/ordered_code.h
include/tensorflow/core/lib/strings/proto_serialization.h
include/tensorflow/core/lib/strings/proto_text_util.h
include/tensorflow/core/lib/strings/scanner.h
include/tensorflow/core/lib/strings/str_util.h
include/tensorflow/core/lib/strings/strcat.h
include/tensorflow/core/lib/strings/stringprintf.h
include/tensorflow/core/lib/wav/wav_io.h
include/tensorflow/core/platform/abi.h
include/tensorflow/core/platform/base64.h
include/tensorflow/core/platform/bfloat16.h
include/tensorflow/core/platform/blocking_counter.h
include/tensorflow/core/platform/byte_order.h
include/tensorflow/core/platform/casts.h
include/tensorflow/core/platform/coding.h
include/tensorflow/core/platform/context.h
include/tensorflow/core/platform/cord.h
include/tensorflow/core/platform/cpu_feature_guard.h
include/tensorflow/core/platform/cpu_info.h
include/tensorflow/core/platform/crash_analysis.h
include/tensorflow/core/platform/ctstring.h
include/tensorflow/core/platform/ctstring_internal.h
include/tensorflow/core/platform/cuda.h
include/tensorflow/core/platform/demangle.h
include/tensorflow/core/platform/denormal.h
include/tensorflow/core/platform/dynamic_annotations.h
include/tensorflow/core/platform/enable_tf2_utils.h
include/tensorflow/core/platform/env.h
include/tensorflow/core/platform/env_time.h
include/tensorflow/core/platform/error_payloads.h
include/tensorflow/core/platform/errors.h
include/tensorflow/core/platform/file_statistics.h
include/tensorflow/core/platform/file_system.h
include/tensorflow/core/platform/file_system_helper.h
include/tensorflow/core/platform/fingerprint.h
include/tensorflow/core/platform/float8.h
include/tensorflow/core/platform/hash.h
include/tensorflow/core/platform/host_info.h
include/tensorflow/core/platform/human_readable_json.h
include/tensorflow/core/platform/init_main.h
include/tensorflow/core/platform/intrusive_ptr.h
include/tensorflow/core/platform/load_library.h
include/tensorflow/core/platform/logger.h
include/tensorflow/core/platform/logging.h
include/tensorflow/core/platform/macros.h
include/tensorflow/core/platform/mem.h
include/tensorflow/core/platform/mutex.h
include/tensorflow/core/platform/net.h
include/tensorflow/core/platform/notification.h
include/tensorflow/core/platform/null_file_system.h
include/tensorflow/core/platform/numa.h
include/tensorflow/core/platform/numbers.h
include/tensorflow/core/platform/path.h
include/tensorflow/core/platform/platform.h
include/tensorflow/core/platform/platform_strings.h
include/tensorflow/core/platform/platform_strings_computed.h
include/tensorflow/core/platform/prefetch.h
include/tensorflow/core/platform/profile_utils/android_armv7a_cpu_utils_helper.h
include/tensorflow/core/platform/profile_utils/clock_cycle_profiler.h
include/tensorflow/core/platform/profile_utils/cpu_utils.h
include/tensorflow/core/platform/profile_utils/i_cpu_utils_helper.h
include/tensorflow/core/platform/protobuf.h
include/tensorflow/core/platform/protobuf_internal.h
include/tensorflow/core/platform/ram_file_system.h
include/tensorflow/core/platform/random.h
include/tensorflow/core/platform/raw_coding.h
include/tensorflow/core/platform/refcount.h
include/tensorflow/core/platform/regexp.h
include/tensorflow/core/platform/resource.h
include/tensorflow/core/platform/resource_loader.h
include/tensorflow/core/platform/retrying_file_system.h
include/tensorflow/core/platform/retrying_utils.h
include/tensorflow/core/platform/rocm.h
include/tensorflow/core/platform/rocm_rocdl_path.h
include/tensorflow/core/platform/scanner.h
include/tensorflow/core/platform/setround.h
include/tensorflow/core/platform/snappy.h
include/tensorflow/core/platform/stack_frame.h
include/tensorflow/core/platform/stacktrace.h
include/tensorflow/core/platform/stacktrace_handler.h
include/tensorflow/core/platform/status.h
include/tensorflow/core/platform/status_matchers.h
include/tensorflow/core/platform/statusor.h
include/tensorflow/core/platform/str_util.h
include/tensorflow/core/platform/strcat.h
include/tensorflow/core/platform/stream_executor.h
include/tensorflow/core/platform/stream_executor_no_cuda.h
include/tensorflow/core/platform/stringpiece.h
include/tensorflow/core/platform/stringprintf.h
include/tensorflow/core/platform/strong_hash.h
include/tensorflow/core/platform/subprocess.h
include/tensorflow/core/platform/tensor_coding.h
include/tensorflow/core/platform/tensor_float_32_utils.h
include/tensorflow/core/platform/test.h
include/tensorflow/core/platform/test_benchmark.h
include/tensorflow/core/platform/thread_annotations.h
include/tensorflow/core/platform/threadpool.h
include/tensorflow/core/platform/threadpool_interface.h
include/tensorflow/core/platform/threadpool_options.h
include/tensorflow/core/platform/tracing.h
include/tensorflow/core/platform/tstring.h
include/tensorflow/core/platform/types.h
include/tensorflow/core/platform/unbounded_work_queue.h
include/tensorflow/core/profiler/profiler_options.pb.h
include/tensorflow/core/profiler/protobuf/xplane.pb.h
include/tensorflow/core/protobuf/bfc_memory_map.pb.h
include/tensorflow/core/protobuf/cluster.pb.h
include/tensorflow/core/protobuf/composite_tensor_variant.pb.h
include/tensorflow/core/protobuf/config.pb.h
include/tensorflow/core/protobuf/control_flow.pb.h
include/tensorflow/core/protobuf/core_platform_payloads.pb.h
include/tensorflow/core/protobuf/data_service.pb.h
include/tensorflow/core/protobuf/debug.pb.h
include/tensorflow/core/protobuf/debug_event.pb.h
include/tensorflow/core/protobuf/device_filters.pb.h
include/tensorflow/core/protobuf/device_properties.pb.h
include/tensorflow/core/protobuf/error_codes.pb.h
include/tensorflow/core/protobuf/fingerprint.pb.h
include/tensorflow/core/protobuf/meta_graph.pb.h
include/tensorflow/core/protobuf/named_tensor.pb.h
include/tensorflow/core/protobuf/queue_runner.pb.h
include/tensorflow/core/protobuf/remote_tensor_handle.pb.h
include/tensorflow/core/protobuf/rewriter_config.pb.h
include/tensorflow/core/protobuf/rpc_options.pb.h
include/tensorflow/core/protobuf/saved_model.pb.h
include/tensorflow/core/protobuf/saved_object_graph.pb.h
include/tensorflow/core/protobuf/saver.pb.h
include/tensorflow/core/protobuf/service_config.pb.h
include/tensorflow/core/protobuf/snapshot.pb.h
include/tensorflow/core/protobuf/status.pb.h
include/tensorflow/core/protobuf/struct.pb.h
include/tensorflow/core/protobuf/tensor_bundle.pb.h
include/tensorflow/core/protobuf/tensorflow_server.pb.h
include/tensorflow/core/protobuf/tpu/optimization_parameters.pb.h
include/tensorflow/core/protobuf/tpu/tpu_embedding_configuration.pb.h
include/tensorflow/core/protobuf/trackable_object_graph.pb.h
include/tensorflow/core/protobuf/transport_options.pb.h
include/tensorflow/core/protobuf/verifier_config.pb.h
include/tensorflow/core/public/session.h
include/tensorflow/core/public/session_options.h
include/tensorflow/core/public/version.h
include/tensorflow/core/tpu/ops/tpu_embedding_ops.h
include/tensorflow/core/tpu/ops/tpu_embedding_shape_util.h
include/tensorflow/core/tpu/tpu_embedding_optimization_parameters_utils.h
include/tensorflow/core/tpu/tpu_embedding_output_layout_utils.h
include/tensorflow/core/transforms/cf_sink/pass.h
include/tensorflow/core/transforms/consolidate_attrs/pass.h
include/tensorflow/core/transforms/const_dedupe_hoist/pass.h
include/tensorflow/core/transforms/constant_folding/pass.h
include/tensorflow/core/transforms/cse/pass.h
include/tensorflow/core/transforms/drop_unregistered_attribute/pass.h
include/tensorflow/core/transforms/eliminate_passthrough_iter_args/pass.h
include/tensorflow/core/transforms/func_to_graph/func_to_graph.h
include/tensorflow/core/transforms/func_to_graph/pass.h
include/tensorflow/core/transforms/functional_to_region/impl.h
include/tensorflow/core/transforms/functional_to_region/pass.h
include/tensorflow/core/transforms/graph_compactor/pass.h
include/tensorflow/core/transforms/graph_to_func/graph_to_func.h
include/tensorflow/core/transforms/graph_to_func/pass.h
include/tensorflow/core/transforms/legacy_call/pass.h
include/tensorflow/core/transforms/pass_registration.h
include/tensorflow/core/transforms/passes.h.inc
include/tensorflow/core/transforms/region_to_functional/impl.h
include/tensorflow/core/transforms/region_to_functional/pass.h
include/tensorflow/core/transforms/remapper/pass.h
include/tensorflow/core/transforms/remapper/pdll/MklPDLLPatterns.h.inc
include/tensorflow/core/transforms/remapper/remapping_helper.h
include/tensorflow/core/transforms/shape_inference/pass.h
include/tensorflow/core/transforms/toposort/pass.h
include/tensorflow/core/transforms/utils/eval_utils.h
include/tensorflow/core/transforms/utils/op_cat_helper.h
include/tensorflow/core/transforms/utils/pdll/PDLLUtils.h.inc
include/tensorflow/core/transforms/utils/pdll/utils.h
include/tensorflow/core/transforms/utils/utils.h
include/tensorflow/core/util/activation_mode.h
include/tensorflow/core/util/batch_util.h
include/tensorflow/core/util/bcast.h
include/tensorflow/core/util/command_line_flags.h
include/tensorflow/core/util/debug_data_dumper.h
include/tensorflow/core/util/debug_events_writer.h
include/tensorflow/core/util/determinism.h
include/tensorflow/core/util/device_name_utils.h
include/tensorflow/core/util/dump_graph.h
include/tensorflow/core/util/einsum_op_util.h
include/tensorflow/core/util/env_var.h
include/tensorflow/core/util/equal_graph_def.h
include/tensorflow/core/util/event.pb.h
include/tensorflow/core/util/events_writer.h
include/tensorflow/core/util/example_proto_fast_parsing.h
include/tensorflow/core/util/example_proto_helper.h
include/tensorflow/core/util/exec_on_stall.h
include/tensorflow/core/util/gpu_cuda_alias.h
include/tensorflow/core/util/gpu_device_functions.h
include/tensorflow/core/util/gpu_kernel_helper.h
include/tensorflow/core/util/gpu_launch_config.h
include/tensorflow/core/util/guarded_philox_random.h
include/tensorflow/core/util/managed_stack_trace.h
include/tensorflow/core/util/matmul_autotune.h
include/tensorflow/core/util/matmul_bcast.h
include/tensorflow/core/util/memmapped_file_system.h
include/tensorflow/core/util/memmapped_file_system.pb.h
include/tensorflow/core/util/memmapped_file_system_writer.h
include/tensorflow/core/util/mirror_pad_mode.h
include/tensorflow/core/util/mkl_threadpool.h
include/tensorflow/core/util/mkl_util.h
include/tensorflow/core/util/onednn_env_vars.h
include/tensorflow/core/util/overflow.h
include/tensorflow/core/util/padding.h
include/tensorflow/core/util/permutation_input_iterator.h
include/tensorflow/core/util/permutation_output_iterator.h
include/tensorflow/core/util/port.h
include/tensorflow/core/util/presized_cuckoo_map.h
include/tensorflow/core/util/quantization/uniform_quant_ops_attr.pb.h
include/tensorflow/core/util/quantization/uniform_quant_ops_params.h
include/tensorflow/core/util/ragged_to_dense_util.h
include/tensorflow/core/util/ragged_to_dense_util_common.h
include/tensorflow/core/util/reffed_status_callback.h
include/tensorflow/core/util/saved_tensor_slice.pb.h
include/tensorflow/core/util/saved_tensor_slice_util.h
include/tensorflow/core/util/sparse/dim_comparator.h
include/tensorflow/core/util/sparse/group_iterator.h
include/tensorflow/core/util/sparse/sparse_tensor.h
include/tensorflow/core/util/stat_summarizer.h
include/tensorflow/core/util/stat_summarizer_options.h
include/tensorflow/core/util/stats_calculator.h
include/tensorflow/core/util/stream_executor_util.h
include/tensorflow/core/util/strided_slice_op.h
include/tensorflow/core/util/tensor_bundle/byte_swap_array.h
include/tensorflow/core/util/tensor_bundle/byte_swap_tensor.h
include/tensorflow/core/util/tensor_format.h
include/tensorflow/core/util/tensor_ops_util.h
include/tensorflow/core/util/tensor_slice_reader.h
include/tensorflow/core/util/tensor_slice_reader_cache.h
include/tensorflow/core/util/tensor_slice_set.h
include/tensorflow/core/util/tensor_slice_util.h
include/tensorflow/core/util/tensor_slice_writer.h
include/tensorflow/core/util/test_log.pb.h
include/tensorflow/core/util/transform_output_iterator.h
include/tensorflow/core/util/use_cudnn.h
include/tensorflow/core/util/util.h
include/tensorflow/core/util/work_sharder.h
include/tensorflow/core/util/xla_config_registry.h
include/tensorflow/core/util/zen_util.h
include/tensorflow/lite/kernels/shim/op_kernel.h
include/tensorflow/lite/kernels/shim/shape.h
include/tensorflow/lite/kernels/shim/status_macros.h
include/tensorflow/lite/kernels/shim/tensor_view.h
include/tensorflow/lite/kernels/shim/tf_op_shim.h
include/tensorflow/lite/kernels/shim/tf_tensor_view.h
include/tensorflow/tsl/c/tsl_status.h
include/tensorflow/tsl/c/tsl_status_helper.h
include/tensorflow/tsl/c/tsl_status_internal.h
include/tensorflow/tsl/framework/allocator.h
include/tensorflow/tsl/framework/allocator_registry.h
include/tensorflow/tsl/framework/allocator_retry.h
include/tensorflow/tsl/framework/bfc_allocator.h
include/tensorflow/tsl/framework/cancellation.h
include/tensorflow/tsl/framework/device_id.h
include/tensorflow/tsl/framework/device_id_manager.h
include/tensorflow/tsl/framework/device_type.h
include/tensorflow/tsl/framework/fixedpoint_types.h
include/tensorflow/tsl/framework/numeric_types.h
include/tensorflow/tsl/framework/shared_counter.h
include/tensorflow/tsl/framework/tracking_allocator.h
include/tensorflow/tsl/framework/type_traits.h
include/tensorflow/tsl/lib/core/bitmap.h
include/tensorflow/tsl/lib/core/bits.h
include/tensorflow/tsl/lib/core/status_test_util.h
include/tensorflow/tsl/lib/gtl/compactptrset.h
include/tensorflow/tsl/lib/gtl/flatmap.h
include/tensorflow/tsl/lib/gtl/flatrep.h
include/tensorflow/tsl/lib/gtl/flatset.h
include/tensorflow/tsl/lib/gtl/inlined_vector.h
include/tensorflow/tsl/lib/gtl/int_type.h
include/tensorflow/tsl/lib/gtl/iterator_range.h
include/tensorflow/tsl/lib/gtl/map_util.h
include/tensorflow/tsl/lib/gtl/subtle/map_traits.h
include/tensorflow/tsl/lib/hash/crc32c.h
include/tensorflow/tsl/lib/histogram/histogram.h
include/tensorflow/tsl/lib/io/block.h
include/tensorflow/tsl/lib/io/block_builder.h
include/tensorflow/tsl/lib/io/buffered_inputstream.h
include/tensorflow/tsl/lib/io/cache.h
include/tensorflow/tsl/lib/io/compression.h
include/tensorflow/tsl/lib/io/format.h
include/tensorflow/tsl/lib/io/inputbuffer.h
include/tensorflow/tsl/lib/io/inputstream_interface.h
include/tensorflow/tsl/lib/io/iterator.h
include/tensorflow/tsl/lib/io/proto_encode_helper.h
include/tensorflow/tsl/lib/io/random_inputstream.h
include/tensorflow/tsl/lib/io/record_reader.h
include/tensorflow/tsl/lib/io/record_writer.h
include/tensorflow/tsl/lib/io/snappy/snappy_compression_options.h
include/tensorflow/tsl/lib/io/snappy/snappy_inputbuffer.h
include/tensorflow/tsl/lib/io/snappy/snappy_inputstream.h
include/tensorflow/tsl/lib/io/snappy/snappy_outputbuffer.h
include/tensorflow/tsl/lib/io/table.h
include/tensorflow/tsl/lib/io/table_builder.h
include/tensorflow/tsl/lib/io/table_options.h
include/tensorflow/tsl/lib/io/two_level_iterator.h
include/tensorflow/tsl/lib/io/zlib_compression_options.h
include/tensorflow/tsl/lib/io/zlib_inputstream.h
include/tensorflow/tsl/lib/io/zlib_outputbuffer.h
include/tensorflow/tsl/lib/math/math_util.h
include/tensorflow/tsl/lib/monitoring/cell_reader.h
include/tensorflow/tsl/lib/monitoring/collected_metrics.h
include/tensorflow/tsl/lib/monitoring/collection_registry.h
include/tensorflow/tsl/lib/monitoring/counter.h
include/tensorflow/tsl/lib/monitoring/gauge.h
include/tensorflow/tsl/lib/monitoring/metric_def.h
include/tensorflow/tsl/lib/monitoring/percentile_sampler.h
include/tensorflow/tsl/lib/monitoring/sampler.h
include/tensorflow/tsl/lib/monitoring/test_utils.h
include/tensorflow/tsl/lib/monitoring/timed.h
include/tensorflow/tsl/lib/monitoring/types.h
include/tensorflow/tsl/lib/random/distribution_sampler.h
include/tensorflow/tsl/lib/random/exact_uniform_int.h
include/tensorflow/tsl/lib/random/philox_random.h
include/tensorflow/tsl/lib/random/philox_random_test_utils.h
include/tensorflow/tsl/lib/random/random_distributions.h
include/tensorflow/tsl/lib/random/random_distributions_utils.h
include/tensorflow/tsl/lib/random/simple_philox.h
include/tensorflow/tsl/lib/random/weighted_picker.h
include/tensorflow/tsl/lib/strings/proto_serialization.h
include/tensorflow/tsl/platform/abi.h
include/tensorflow/tsl/platform/base64.h
include/tensorflow/tsl/platform/bfloat16.h
include/tensorflow/tsl/platform/blocking_counter.h
include/tensorflow/tsl/platform/byte_order.h
include/tensorflow/tsl/platform/casts.h
include/tensorflow/tsl/platform/cloud/auth_provider.h
include/tensorflow/tsl/platform/cloud/compute_engine_metadata_client.h
include/tensorflow/tsl/platform/cloud/compute_engine_zone_provider.h
include/tensorflow/tsl/platform/cloud/curl_http_request.h
include/tensorflow/tsl/platform/cloud/expiring_lru_cache.h
include/tensorflow/tsl/platform/cloud/file_block_cache.h
include/tensorflow/tsl/platform/cloud/gcs_dns_cache.h
include/tensorflow/tsl/platform/cloud/gcs_file_system.h
include/tensorflow/tsl/platform/cloud/gcs_throttle.h
include/tensorflow/tsl/platform/cloud/google_auth_provider.h
include/tensorflow/tsl/platform/cloud/http_request.h
include/tensorflow/tsl/platform/cloud/oauth_client.h
include/tensorflow/tsl/platform/cloud/ram_file_block_cache.h
include/tensorflow/tsl/platform/cloud/time_util.h
include/tensorflow/tsl/platform/cloud/zone_provider.h
include/tensorflow/tsl/platform/coding.h
include/tensorflow/tsl/platform/context.h
include/tensorflow/tsl/platform/cord.h
include/tensorflow/tsl/platform/cpu_info.h
include/tensorflow/tsl/platform/crash_analysis.h
include/tensorflow/tsl/platform/ctstring.h
include/tensorflow/tsl/platform/ctstring_internal.h
include/tensorflow/tsl/platform/cuda_libdevice_path.h
include/tensorflow/tsl/platform/default/casts.h
include/tensorflow/tsl/platform/default/context.h
include/tensorflow/tsl/platform/default/cord.h
include/tensorflow/tsl/platform/default/dso_loader.h
include/tensorflow/tsl/platform/default/dynamic_annotations.h
include/tensorflow/tsl/platform/default/integral_types.h
include/tensorflow/tsl/platform/default/logging.h
include/tensorflow/tsl/platform/default/mutex.h
include/tensorflow/tsl/platform/default/mutex_data.h
include/tensorflow/tsl/platform/default/notification.h
include/tensorflow/tsl/platform/default/posix_file_system.h
include/tensorflow/tsl/platform/default/stacktrace.h
include/tensorflow/tsl/platform/default/status.h
include/tensorflow/tsl/platform/default/subprocess.h
include/tensorflow/tsl/platform/default/tracing_impl.h
include/tensorflow/tsl/platform/default/unbounded_work_queue.h
include/tensorflow/tsl/platform/demangle.h
include/tensorflow/tsl/platform/denormal.h
include/tensorflow/tsl/platform/dso_loader.h
include/tensorflow/tsl/platform/dynamic_annotations.h
include/tensorflow/tsl/platform/env.h
include/tensorflow/tsl/platform/env_time.h
include/tensorflow/tsl/platform/errors.h
include/tensorflow/tsl/platform/file_statistics.h
include/tensorflow/tsl/platform/file_system.h
include/tensorflow/tsl/platform/file_system_helper.h
include/tensorflow/tsl/platform/fingerprint.h
include/tensorflow/tsl/platform/float8.h
include/tensorflow/tsl/platform/hash.h
include/tensorflow/tsl/platform/host_info.h
include/tensorflow/tsl/platform/human_readable_json.h
include/tensorflow/tsl/platform/init_main.h
include/tensorflow/tsl/platform/intrusive_ptr.h
include/tensorflow/tsl/platform/load_library.h
include/tensorflow/tsl/platform/logger.h
include/tensorflow/tsl/platform/logging.h
include/tensorflow/tsl/platform/macros.h
include/tensorflow/tsl/platform/mem.h
include/tensorflow/tsl/platform/mutex.h
include/tensorflow/tsl/platform/net.h
include/tensorflow/tsl/platform/notification.h
include/tensorflow/tsl/platform/null_file_system.h
include/tensorflow/tsl/platform/numa.h
include/tensorflow/tsl/platform/numbers.h
include/tensorflow/tsl/platform/path.h
include/tensorflow/tsl/platform/platform.h
include/tensorflow/tsl/platform/platform_strings_computed.h
include/tensorflow/tsl/platform/prefetch.h
include/tensorflow/tsl/platform/profile_utils/android_armv7a_cpu_utils_helper.h
include/tensorflow/tsl/platform/profile_utils/clock_cycle_profiler.h
include/tensorflow/tsl/platform/profile_utils/cpu_utils.h
include/tensorflow/tsl/platform/profile_utils/i_cpu_utils_helper.h
include/tensorflow/tsl/platform/protobuf.h
include/tensorflow/tsl/platform/protobuf_compiler.h
include/tensorflow/tsl/platform/ram_file_system.h
include/tensorflow/tsl/platform/random.h
include/tensorflow/tsl/platform/raw_coding.h
include/tensorflow/tsl/platform/refcount.h
include/tensorflow/tsl/platform/regexp.h
include/tensorflow/tsl/platform/resource.h
include/tensorflow/tsl/platform/resource_loader.h
include/tensorflow/tsl/platform/retrying_file_system.h
include/tensorflow/tsl/platform/retrying_utils.h
include/tensorflow/tsl/platform/rocm_rocdl_path.h
include/tensorflow/tsl/platform/scanner.h
include/tensorflow/tsl/platform/setround.h
include/tensorflow/tsl/platform/snappy.h
include/tensorflow/tsl/platform/stack_frame.h
include/tensorflow/tsl/platform/stacktrace.h
include/tensorflow/tsl/platform/stacktrace_handler.h
include/tensorflow/tsl/platform/static_threadlocal.h
include/tensorflow/tsl/platform/status.h
include/tensorflow/tsl/platform/status_matchers.h
include/tensorflow/tsl/platform/status_to_from_proto.h
include/tensorflow/tsl/platform/statusor.h
include/tensorflow/tsl/platform/statusor_internals.h
include/tensorflow/tsl/platform/str_util.h
include/tensorflow/tsl/platform/strcat.h
include/tensorflow/tsl/platform/stringpiece.h
include/tensorflow/tsl/platform/stringprintf.h
include/tensorflow/tsl/platform/subprocess.h
include/tensorflow/tsl/platform/tensor_float_32_utils.h
include/tensorflow/tsl/platform/test.h
include/tensorflow/tsl/platform/test_benchmark.h
include/tensorflow/tsl/platform/thread_annotations.h
include/tensorflow/tsl/platform/threadpool.h
include/tensorflow/tsl/platform/threadpool_interface.h
include/tensorflow/tsl/platform/threadpool_options.h
include/tensorflow/tsl/platform/tracing.h
include/tensorflow/tsl/platform/tstring.h
include/tensorflow/tsl/platform/types.h
include/tensorflow/tsl/platform/unbounded_work_queue.h
include/tensorflow/tsl/profiler/backends/cpu/traceme_recorder.h
include/tensorflow/tsl/profiler/lib/traceme.h
include/tensorflow/tsl/profiler/lib/traceme_encode.h
include/tensorflow/tsl/profiler/protobuf/profiler_options.pb.h
include/tensorflow/tsl/profiler/protobuf/xplane.pb.h
include/tensorflow/tsl/profiler/utils/math_utils.h
include/tensorflow/tsl/profiler/utils/time_utils.h
include/tensorflow/tsl/protobuf/autotuning.pb.h
include/tensorflow/tsl/protobuf/bfc_memory_map.pb.h
include/tensorflow/tsl/protobuf/coordination_config.pb.h
include/tensorflow/tsl/protobuf/distributed_runtime_payloads.pb.h
include/tensorflow/tsl/protobuf/dnn.pb.h
include/tensorflow/tsl/protobuf/error_codes.pb.h
include/tensorflow/tsl/protobuf/histogram.pb.h
include/tensorflow/tsl/protobuf/rpc_options.pb.h
include/tensorflow/tsl/protobuf/status.pb.h
include/tensorflow/tsl/protobuf/test_log.pb.h
include/tensorflow/tsl/util/byte_swap_array.h
include/tensorflow/tsl/util/command_line_flags.h
include/tensorflow/tsl/util/determinism.h
include/tensorflow/tsl/util/device_name_utils.h
include/tensorflow/tsl/util/env_var.h
include/tensorflow/tsl/util/stat_summarizer_options.h
include/tensorflow/tsl/util/stats_calculator.h
include/tensorflow/tsl/util/use_cudnn.h
lib/libtensorflow.so
lib/libtensorflow.so.2
lib/libtensorflow.so.%%TF_PORT_VERSION%%
lib/libtensorflow_cc.so
lib/libtensorflow_cc.so.2
lib/libtensorflow_cc.so.%%TF_PORT_VERSION%%
lib/libtensorflow_framework.so
lib/libtensorflow_framework.so.2
lib/libtensorflow_framework.so.%%TF_PORT_VERSION%%
libdata/pkgconfig/tensorflow.pc
libdata/pkgconfig/tensorflow_cc.pc
|