Home
last modified time | relevance | path

Searched refs:batching (Results 1 – 25 of 46) sorted by relevance

12

/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/
Dmap_and_batch_test.py25 from tensorflow.python.data.experimental.ops import batching
66 batching.map_and_batch(
125 batching.map_and_batch(
145 batching.map_and_batch(lambda x: array_ops.reshape(x * x, [1]), 4)))
156 batching.map_and_batch(lambda x: x, batch_size=100))
182 batching.map_and_batch(
214 batching.map_and_batch(_sparse, 5))
233 dataset = dataset.apply(batching.map_and_batch(lambda x: x, 14))
250 dataset = dataset.apply(batching.map_and_batch(lambda x: x, batch_size))
270 1000).apply(batching.map_and_batch(_map_fn, batch_size=100))
[all …]
Ddense_to_sparse_batch_test.py23 from tensorflow.python.data.experimental.ops import batching
39 batching.dense_to_sparse_batch(4, [12]))
62 batching.dense_to_sparse_batch(4, [5, None]))
90 batching.dense_to_sparse_batch(4, [-2]))
97 batching.dense_to_sparse_batch(4, [12]))
Ddense_to_ragged_batch_test.py23 from tensorflow.python.data.experimental.ops import batching
127 batching.dense_to_ragged_batch(batch_size, drop_remainder))
162 dataset = dataset.apply(batching.dense_to_ragged_batch(batch_size))
DBUILD203 "//tensorflow/python/data/experimental/ops:batching",
395 "//tensorflow/python/data/experimental/ops:batching",
498 "//tensorflow/python/data/experimental/ops:batching",
826 "//tensorflow/python/data/experimental/ops:batching",
Dstats_dataset_ops_test.py25 from tensorflow.python.data.experimental.ops import batching
386 batching.map_and_batch(
Doptimize_dataset_test.py27 from tensorflow.python.data.experimental.ops import batching
63 batching.map_and_batch(map_fn, 1))
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/serialization/
Dmap_and_batch_dataset_serialization_test.py25 from tensorflow.python.data.experimental.ops import batching
55 batching.map_and_batch(
81 batching.map_and_batch(
100 batching.map_and_batch(map_fn, 5))
Dbatch_dataset_serialization_test.py24 from tensorflow.python.data.experimental.ops import batching
57 batching.dense_to_sparse_batch(4, [12]))
DBUILD88 "//tensorflow/python/data/experimental/ops:batching",
149 "//tensorflow/python/data/experimental/ops:batching",
394 "//tensorflow/python/data/experimental/ops:batching",
822 "//tensorflow/python/data/experimental/ops:batching",
/external/tensorflow/tensorflow/python/data/experimental/
D__init__.py98 from tensorflow.python.data.experimental.ops.batching import dense_to_ragged_batch
99 from tensorflow.python.data.experimental.ops.batching import dense_to_sparse_batch
100 from tensorflow.python.data.experimental.ops.batching import map_and_batch
101 from tensorflow.python.data.experimental.ops.batching import map_and_batch_with_legacy_function
102 from tensorflow.python.data.experimental.ops.batching import unbatch
/external/grpc-grpc/doc/cpp/
Dperf_notes.md7 threads, but currently cannot automatically infer batching in a single stream.
10 possible to enable write batching by passing a WriteOptions argument to Write
/external/tensorflow/tensorflow/python/data/experimental/ops/
DBUILD9 name = "batching",
10 srcs = ["batching.py"],
301 ":batching",
330 ":batching",
500 ":batching",
/external/tensorflow/tensorflow/python/data/experimental/benchmarks/
Dmap_and_batch_benchmark.py26 from tensorflow.python.data.experimental.ops import batching
51 batching.map_and_batch(lambda _: dense_value, batch_size))
DBUILD110 "//tensorflow/python/data/experimental/ops:batching",
239 "//tensorflow/python/data/experimental/ops:batching",
/external/python/google-api-python-client/docs/
Dbatch.md4 This library supports batching,
6 Examples of situations when you might want to use batching:
Dperformance.md48 If you are sending many small requests you may benefit from [batching](batch.md), which allows thos…
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/optimization/
Dmap_vectorization_test.py28 from tensorflow.python.data.experimental.ops import batching
505 dataset = dataset.apply(batching.map_and_batch(map_fn, 100))
528 batching.map_and_batch(map_fn, 2, 12, drop_remainder=True))
645 unoptimized = base_dataset.apply(batching.map_and_batch(lambda x: x, 2))
663 unoptimized = base_dataset.apply(batching.map_and_batch(map_fn, 2))
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_UnbatchGrad.pbtxt5 Acts like Batch but using the given batch_index index of batching things as they
Dapi_def_ExperimentalMapAndBatchDataset.pbtxt46 summary: "Creates a dataset that fuses mapping with batching."
Dapi_def_MapAndBatchDataset.pbtxt46 summary: "Creates a dataset that fuses mapping with batching."
/external/rust/crates/itertools/tests/
Dtest_core.rs136 fn batching() { in batching() function
141 let pit = xs.iter().cloned().batching(|it| { in batching()
Dzip.rs11 let unfused = a.iter().batching(|it| *it.next().unwrap()) in zip_longest_fused()
/external/tensorflow/tensorflow/python/distribute/
Dinput_lib.py27 from tensorflow.python.data.experimental.ops import batching
1935 if isinstance(d, (dataset_ops.BatchDataset, batching._MapAndBatchDataset)):
1951 (dataset_ops.BatchDataset, batching._MapAndBatchDataset))
1955 elif isinstance(d, batching._MapAndBatchDataset):
/external/angle/src/tests/test_utils/runner/
DREADME.md18 * `--bot-mode` enables multi-process execution and test batching
/external/tensorflow/tensorflow/core/framework/
Ddataset_options.proto113 // pipeline is bottlenecked on batching and b) you have validated that this

12