/external/tensorflow/tensorflow/core/grappler/optimizers/data/ |
D | slack.cc | 16 #include "tensorflow/core/grappler/optimizers/data/slack.h" 80 Status Slack::RecursivelyHandleOp(const MutableGraphView& graph, in RecursivelyHandleOp() 104 "which to introduce slack."; in RecursivelyHandleOp() 108 Status Slack::OptimizeAndCollectStats(Cluster* cluster, in OptimizeAndCollectStats() 120 // because we only want to add slack to the prefetch on the main dataset in OptimizeAndCollectStats() 136 void Slack::Feedback(Cluster* cluster, const GrapplerItem& item, in Feedback() 141 REGISTER_GRAPH_OPTIMIZER_AS(Slack, "slack");
|
D | slack.h | 27 // This optimization sets the slack attr of the terminal PrefetchDataset node in 29 class Slack : public TFDataOptimizerBase { 31 Slack() = default; 32 ~Slack() override = default; 34 string name() const override { return "slack"; }; in name()
|
D | slack_test.cc | 16 #include "tensorflow/core/grappler/optimizers/data/slack.h" 67 Slack optimizer; in TEST_P() 88 Slack optimizer; in TEST() 100 Slack optimizer; in TEST() 161 Slack optimizer; in TEST() 170 // Should not set slack for function items. in TEST()
|
/external/libchrome/base/message_loop/ |
D | timer_slack.h | 10 // Amount of timer slack to use for delayed timers. Increasing timer slack 13 // Lowest value for timer slack allowed by OS. 16 // Maximal value for timer slack allowed by OS.
|
/external/ltp/testcases/kernel/syscalls/prctl/ |
D | prctl08.c | 7 * 1)Each thread has two associated timer slack values: a "default" 9 * timer slack value for the calling thread. 10 * 2)When a new thread is created, the two timer slack values are made 12 * 3)The maximum timer slack value is ULONG_MAX. On 32bit machines, it 97 "%s two timer slack values are made the same as the current value(%lu) of the creating thread.", in check_inherit_timerslack()
|
D | prctl09.c | 9 * This is a timer sample test that timer slack is 200us.
|
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/ |
D | prefetch_with_slack_test.py | 48 self.assertIn("slack", dataset.options()._graph_rewrites().enabled) 49 self.assertIn("slack:slack_period:2", 66 """Defaults to slack period of 1 without iterator.""" 72 self.assertIn("slack", dataset.options()._graph_rewrites().enabled) 73 self.assertIn("slack:slack_period:1",
|
/external/freetype/src/cache/ |
D | ftccache.c | 123 if ( cache->slack < 0 ) in ftc_cache_resize() 164 cache->slack += FTC_HASH_MAX_LOAD; in ftc_cache_resize() 176 else if ( cache->slack > (FT_Long)count * FTC_HASH_SUB_LOAD ) in ftc_cache_resize() 210 cache->slack -= FTC_HASH_MAX_LOAD; in ftc_cache_resize() 249 cache->slack++; in ftc_node_hash_unlink() 265 cache->slack--; in ftc_node_hash_link() 342 cache->slack = FTC_HASH_INITIAL_SIZE * FTC_HASH_MAX_LOAD; in ftc_cache_init() 400 cache->slack = 0; in ftc_cache_done() 613 cache->slack++; in FTC_Cache_RemoveFaceID()
|
/external/llvm-project/flang/docs/ |
D | GettingInvolved.md | 16 Please feel free to join the mailing list or the slack channel for discussions related to developme… 37 ### Flang Slack Workspace 39 - There is a Slack workspace dedicated to Flang. 41 - Add yourself via the *[invitation link](https://join.slack.com/t/flang-compiler/shared_invite/z…
|
/external/llvm-project/openmp/tools/archer/ |
D | README.md | 215 - [Slack Channel](https://pruners.slack.com) 217 …du?Subject=[archer-slack] Slack Invitation" target="_top">Simone Atzeni</a> with a reason why you …
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/ |
D | SimplexTableau.java | 56 * s1 & s2: Slack/Surplus variables</br> 89 /** Number of slack variables. */ 197 // slack variables in createTableau() 199 matrix.setEntry(row, getSlackVariableOffset() + slackVar++, 1); // slack in createTableau() 463 * Get the offset of the first slack variable. 464 * @return offset of the first slack variable 510 * Get the number of slack variables. 511 * @return number of slack variables
|
/external/tensorflow/tensorflow/core/framework/ |
D | dataset_options.proto | 162 // Whether to introduce 'slack' in the last `prefetch` of the input pipeline, 164 // activity at the start of a step. The slack frequency is determined by the 167 bool slack = 4; field
|
/external/e2fsprogs/misc/ |
D | mk_hugefiles.c | 436 * files. Leave <slack> free blocks at the beginning of the file 439 static blk64_t get_start_block(ext2_filsys fs, blk64_t slack) in get_start_block() argument 445 while (slack) { in get_start_block() 456 if (next - blk > slack) { in get_start_block() 457 blk += slack; in get_start_block() 461 slack -= (next - blk); in get_start_block()
|
/external/skia/site/ |
D | config.toml | 169 # name = "Slack" 170 # url = "https://example.org/slack" 171 # icon = "fab fa-slack"
|
/external/kotlinx.coroutines/ |
D | RELEASE.md | 69 5. Announce new release in [Slack](https://kotlinlang.slack.com)
|
D | CONTRIBUTING.md | 113 …d general inquiries — use `#coroutines` channel in [KotlinLang Slack](https://kotl.in/slack).
|
D | README.md | 7 [![Slack channel](https://img.shields.io/badge/chat-slack-green.svg?logo=slack)](https://kotlinlang…
|
/external/brotli/csharp/org/brotli/dec/ |
D | BitReader.cs | 12 /// Input byte buffer, consist of a ring-buffer and a "slack" region where bytes from the start of 17 private const int Slack = 16; field in Org.Brotli.Dec.BitReader 19 private const int IntBufferSize = Capacity + Slack;
|
/external/e2fsprogs/tests/m_hugefile_slack/ |
D | name | 1 mke2fs create hugefile fs with slack
|
/external/iperf3/ |
D | .travis.yml | 10 slack:
|
/external/tensorflow/tensorflow/core/kernels/data/ |
D | prefetch_dataset_op.cc | 53 // Determines the fraction of slack time by which to delay prefetching of data. 332 "slack", in GetTraceMeMetadata() 398 // Every slack_period_-th element, update the most recent slack time, in Consume() 469 // slack. in PrefetchThread() 579 // If non-zero, determines the period between injecting "slack" into the
|
/external/cn-cbor/ |
D | .travis.yml | 16 slack:
|
/external/angle/ |
D | README.md | 68 * Join us on [Slack](https://chromium.slack.com) in the #angle channel.
|
/external/autotest/server/site_tests/firmware_EventLog/ |
D | firmware_EventLog.py | 136 time.sleep(5) # a little slack time for powerd to write the 'Wake' 155 time.sleep(5) # a little slack time for powerd to write the 'Wake'
|
/external/brotli/c/enc/ |
D | ringbuffer.h | 70 /* Allocates or re-allocates data_ to the given length + plus some slack 71 region before and after. Fills the slack regions with zeros. */
|