Home
last modified time | relevance | path

Searched full:steps (Results 1 – 25 of 4699) sorted by relevance

12345678910>>...188

/external/rust/crates/crossbeam-channel/benches/
Dcrossbeam.rs40 let steps = TOTAL_STEPS / threads; in par_inout() localVariable
49 for i in 0..steps { in par_inout()
73 let steps = TOTAL_STEPS; in spsc() localVariable
81 for i in 0..steps { in spsc()
90 for _ in 0..steps { in spsc()
103 let steps = TOTAL_STEPS / threads; in spmc() localVariable
112 for _ in 0..steps { in spmc()
124 for i in 0..steps * threads { in spmc()
139 let steps = TOTAL_STEPS / threads; in mpsc() localVariable
148 for i in 0..steps { in mpsc()
[all …]
/external/ComputeLibrary/src/core/helpers/
DWindowHelpers.h28 #include "arm_compute/core/Steps.h"
100 * @param[in] steps (Optional) Number of elements processed for each step.
106 Window calculate_max_window(const ValidRegion &valid_region, const Steps &steps = Steps(), bool ski…
111 * @param[in] steps (Optional) Number of elements processed for each step.
117 inline Window calculate_max_window(const ITensorInfo &info, const Steps &steps = Steps(), bool skip…
119 return calculate_max_window(info.valid_region(), steps, skip_border, border_size);
125 * @param[in] steps (Optional) Number of elements processed for each step.
131 Window calculate_max_window_horizontal(const ValidRegion &valid_region, const Steps &steps = Steps(…
136 * @param[in] steps (Optional) Number of elements processed for each step.
142 inline Window calculate_max_window_horizontal(const ITensorInfo &info, const Steps &steps = Steps()…
[all …]
DWindowHelpers.cpp28 Window calculate_max_window(const ValidRegion &valid_region, const Steps &steps, bool skip_border, … in calculate_max_window() argument
45 …>(shape[0]) - static_cast<int>(border_size.left) - static_cast<int>(border_size.right)), steps[0]), in calculate_max_window()
46 steps[0])); in calculate_max_window()
56 …>(shape[1]) - static_cast<int>(border_size.top) - static_cast<int>(border_size.bottom)), steps[1]), in calculate_max_window()
57 steps[1])); in calculate_max_window()
64 window.set(2, Window::Dimension(anchor[2], std::max<size_t>(1, shape[2]), steps[2])); in calculate_max_window()
82 Window calculate_max_enlarged_window(const ValidRegion &valid_region, const Steps &steps, BorderSiz… in calculate_max_enlarged_window() argument
94 …] - border_size.left + ceil_to_multiple(shape[0] + border_size.left + border_size.right, steps[0]), in calculate_max_enlarged_window()
95 steps[0])); in calculate_max_enlarged_window()
105 …1] - border_size.top + ceil_to_multiple(shape[1] + border_size.top + border_size.bottom, steps[1]), in calculate_max_enlarged_window()
[all …]
/external/tensorflow/tensorflow/python/keras/engine/
Dtraining_distributed_v1.py138 steps_per_epoch: Total number of steps (batches of samples)
142 validation_steps: Number of steps to run validation for
206 count_mode='steps',
209 # Calculate the steps each time on the device.
266 steps=validation_steps,
291 steps=None, argument
299 steps: Total number of steps (batches of samples)
351 progbar = Progbar(target=steps)
363 steps_per_epoch=steps,
365 count_mode='steps',
[all …]
Dtraining_generator_v1.py56 steps_name='steps',
65 steps_per_epoch: Total number of steps (batches of samples) before
78 validation_steps: Total number of steps (batches of samples) before
107 steps_name: The string name of the steps argument, either `steps`,
110 **kwargs: Additional arguments for backwards compatibility. `steps` is
121 if 'steps' in kwargs:
122 steps_per_epoch = kwargs['steps']
124 # Determine the number of steps per epoch and whether we should reset the
166 count_mode = 'steps' if use_steps else 'samples'
181 True, steps=steps_per_epoch)
[all …]
Dtraining_arrays_v1.py61 steps_name='steps',
86 steps_per_epoch: Total number of steps (batches of samples) before
89 validation_steps: Number of steps to run validation for (only if doing
108 steps_name: The string name of the steps argument, either `steps`,
122 if 'steps' in kwargs:
123 steps_per_epoch = kwargs.pop('steps')
190 # that determines the number of steps required. To avoid this issue,
201 # Get num steps for printing.
212 count_mode = 'steps' if use_steps else 'samples'
238 steps=steps_per_epoch)
[all …]
/external/ComputeLibrary/arm_compute/core/
DSteps.h40 class Steps : public Dimensions<uint32_t>
43 /** Constructor to initialize the steps.
45 * @param[in] steps Values to initialize the steps.
48 Steps(Ts... steps) in Steps() function
49 : Dimensions{ steps... } in Steps()
55 constexpr Steps(const Steps &) = default;
57 Steps &operator=(const Steps &) = default;
59 constexpr Steps(Steps &&) = default;
61 Steps &operator=(Steps &&) = default;
63 ~Steps() = default;
/external/python/cpython3/.azure-pipelines/
Dci.yml13 steps:
25 steps:
26 - template: ./docs-steps.yml
45 steps:
46 - template: ./macos-steps.yml
62 steps:
63 - template: ./posix-steps.yml
88 steps:
89 - template: ./posix-steps.yml
117 steps:
[all …]
Dpr.yml13 steps:
25 steps:
26 - template: ./docs-steps.yml
43 steps:
44 - template: ./macos-steps.yml
62 steps:
63 - template: ./posix-steps.yml
88 steps:
89 - template: ./posix-steps.yml
120 steps:
[all …]
/external/fsverity-utils/.github/workflows/
Dci.yml15 steps:
22 steps:
29 steps:
36 steps:
43 steps:
50 steps:
57 steps:
64 steps:
75 steps:
87 steps:
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
DContinuousOutputModel.java38 * stores a copy of all steps information in a sorted collection for
64 * output model handles the steps of all integration phases, the user
78 * is large, if the integration interval is long or if the steps are
107 /** Steps table. */
108 private List<StepInterpolator> steps; field in ContinuousOutputModel
114 steps = new ArrayList<StepInterpolator>(); in ContinuousOutputModel()
129 if (model.steps.size() == 0) { in append()
133 if (steps.size() == 0) { in append()
149 final StepInterpolator lastInterpolator = steps.get(index); in append()
161 for (StepInterpolator interpolator : model.steps) { in append()
[all …]
/external/python/cpython3/Lib/
Dpipes.py8 conversion involves several steps (e.g. piping it through compress or
9 uuencode). Some of the conversion steps may require that their input
15 more conversion steps together. It will take care of creating and
22 different conversion steps and store them in a dictionary, for
92 return '<Template instance, steps=%r>' % (self.steps,)
96 self.steps = []
102 t.steps = self.steps[:]
118 if self.steps and self.steps[-1][1] == SINK:
124 self.steps.append((cmd, kind))
134 if self.steps and self.steps[0][1] == SOURCE:
[all …]
/external/zstd/.github/workflows/
Ddev-long-tests.yml15 steps:
26 steps:
34 steps:
41 steps:
48 steps:
56 steps:
64 steps:
74 steps:
87 steps:
96 steps:
[all …]
Ddev-short-tests.yml16 steps:
23 steps:
30 steps:
40 steps:
52 steps:
67 steps:
78 steps:
92 steps:
103 steps:
113 steps:
[all …]
/external/python/cpython2/Lib/
Dpipes.py8 conversion involves several steps (e.g. piping it through compress or
9 uuencode). Some of the conversion steps may require that their input
15 more conversion steps together. It will take care of creating and
22 different conversion steps and store them in a dictionary, for
90 return '<Template instance, steps=%r>' % (self.steps,)
94 self.steps = []
100 t.steps = self.steps[:]
119 if self.steps and self.steps[-1][1] == SINK:
128 self.steps.append((cmd, kind))
141 if self.steps and self.steps[0][1] == SOURCE:
[all …]
/external/libhevc/decoder/
Dihevcd_statistics.h100 …l_size_hist[16][16]; /* PU Sizes [Width from 4 to 64 in steps of 4] [Height from 4 to 64 in steps
101 …st[16][16]; /* PU sizes for skip [Width from 4 to 64 in steps of 4] [Height from 4 to 64 in steps
102 …t[16][16]; /* PU sizes for inter [Width from 4 to 64 in steps of 4] [Height from 4 to 64 in steps
103 …t[16][16]; /* PU sizes for intra [Width from 4 to 64 in steps of 4] [Height from 4 to 64 in steps
104 …[16][16]; /* PU sizes for bipred [Width from 4 to 64 in steps of 4] [Height from 4 to 64 in steps
105 …t[16][16]; /* PU sizes for merge [Width from 4 to 64 in steps of 4] [Height from 4 to 64 in steps
106 …16][16]; /* PU sizes for Zero MV [Width from 4 to 64 in steps of 4] [Height from 4 to 64 in steps
107 …l less than +/- 1 full pel units [Width from 4 to 64 in steps of 4] [Height from 4 to 64 in steps
/external/python/google-api-python-client/docs/dyn/
Dgames_v1.achievements.html82 <p class="firstline">Increments the steps of the achievement with the given ID for the currently au…
93 …<code><a href="#setStepsAtLeast">setStepsAtLeast(achievementId, steps, x__xgafv=None)</a></code></…
94 … the steps for the currently authenticated player towards unlocking an achievement. If the steps p…
109 …<pre>Increments the steps of the achievement with the given ID for the currently authenticated pla…
113 stepsToIncrement: integer, The number of steps to increment. (required)
124 &quot;currentSteps&quot;: 42, # The current steps recorded for this incremental achievement.
126 …ked&quot;: True or False, # Whether the current steps for the achievement has reached the number o…
157 &quot;currentSteps&quot;: 42, # The current steps for an incremental achievement.
159 …&quot;formattedCurrentStepsString&quot;: &quot;A String&quot;, # The current steps for an incremen…
205 …<code class="details" id="setStepsAtLeast">setStepsAtLeast(achievementId, steps, x__xgafv=None)</c…
[all …]
/external/skia/site/docs/user/
Dcolor.md22 All color managed drawing is divided into six parts, three steps connecting the
23 source colors to that XYZ D50 space, then three symmetric steps connecting back
24 from XYZ D50 to the destination color space. Some of these steps can
27 the same. Here are the steps:
29 Color management steps
42 type called SkColorSpaceXformSteps. You'll see it as 5 steps there: we always
48 Whenever we're about to do some drawing we look at which of those steps we
66 whichever lets us skip more steps.
70 with that same color space, we'll notice we can skip all six steps. Sometimes
71 fewer steps are needed, sometimes more. In general if you need to do a gamut
[all …]
/external/tensorflow/tensorflow/compiler/tests/
Dftrl_test.py42 def equivAdagradTest_FtrlPart(self, steps, dtype): argument
56 # Run Ftrl for a few steps
57 for _ in range(steps):
62 def equivAdagradTest_AdagradPart(self, steps, dtype): argument
71 # Run Adagrad for a few steps
72 for _ in range(steps):
77 def equivGradientDescentTest_FtrlPart(self, steps, dtype): argument
91 # Run Ftrl for a few steps
92 for _ in range(steps):
97 def equivGradientDescentTest_GradientDescentPart(self, steps, dtype): argument
[all …]
/external/tensorflow/tensorflow/python/keras/distribute/
Dmulti_worker_callback_tf2_test.py55 A tuple of (model, saving_filepath, train_ds, steps) where train_ds is
59 steps = 2
64 batch_size, steps)
70 return model, saving_filepath, train_ds, steps
107 model, saving_filepath, train_ds, steps = _model_setup(
127 steps_per_epoch=steps,
129 validation_steps=steps,
157 model, _, train_ds, steps = _model_setup(test_obj, file_format='')
166 steps_per_epoch=steps,
197 model, _, train_ds, steps = _model_setup(test_obj, file_format='')
[all …]
/external/oss-fuzz/infra/build/functions/
Dbase_images.py41 """Returns build steps for given images."""
42 steps = [{
52 steps.append({
65 return steps
75 def run_build(steps, images): argument
76 """Execute the retrieved build steps in gcp."""
79 'steps': steps,
102 steps = _get_base_image_steps(BASE_IMAGES, tag_prefix)
105 run_build(steps, images)
/external/skia/src/gpu/
DGrColorSpaceXform.h24 GrColorSpaceXform(const SkColorSpaceXformSteps& steps) : fSteps(steps) {} in GrColorSpaceXform() argument
31 const SkColorSpaceXformSteps& steps() const { return fSteps; } in steps() function
38 // Code generation depends on which steps we apply, in XformKey()
42 const SkColorSpaceXformSteps& steps(xform->fSteps); in XformKey()
43 uint32_t key = steps.flags.mask(); in XformKey()
44 if (steps.flags.linearize) { in XformKey()
45 key |= classify_transfer_fn(steps.srcTF) << 8; in XformKey()
47 if (steps.flags.encode) { in XformKey()
48 key |= classify_transfer_fn(steps.dstTFInv) << 16; in XformKey()
/external/libxml2/
Dpattern.c102 int nbStep; /* number of steps in the automata */
103 int maxStep; /* allocated number of steps */
104 xmlStreamStepPtr steps; /* the array of steps */ member
172 xmlStepOpPtr steps; /* ops for computation */ member
214 cur->steps = (xmlStepOpPtr) xmlMalloc(cur->maxStep * sizeof(xmlStepOp)); in xmlNewPattern()
215 if (cur->steps == NULL) { in xmlNewPattern()
246 if (comp->steps != NULL) { in xmlFreePatternInternal()
249 op = &comp->steps[i]; in xmlFreePatternInternal()
256 xmlFree(comp->steps); in xmlFreePatternInternal()
356 temp = (xmlStepOpPtr) xmlRealloc(comp->steps, comp->maxStep * 2 * in xmlPatternAdd()
[all …]
/external/mesa3d/.gitlab-ci/
Dtraces-panfrost.yml85 - path: glmark2/conditionals-fragment-steps=0:vertex-steps=0.rdc
89 - path: glmark2/conditionals-fragment-steps=0:vertex-steps=5.rdc
93 - path: glmark2/conditionals-fragment-steps=5:vertex-steps=0.rdc
109 - path: glmark2/function-fragment-complexity=low:fragment-steps=5.rdc
113 - path: glmark2/function-fragment-complexity=medium:fragment-steps=5.rdc
129 - path: glmark2/loop-fragment-loop=false:fragment-steps=5:vertex-steps=5.rdc
133 - path: glmark2/loop-fragment-steps=5:fragment-uniform=false:vertex-steps=5.rdc
137 - path: glmark2/loop-fragment-steps=5:fragment-uniform=true:vertex-steps=5.rdc
Dtraces-radeonsi.yml73 - path: glmark2/conditionals-fragment-steps=0:vertex-steps=0.rdc
77 - path: glmark2/conditionals-fragment-steps=0:vertex-steps=5.rdc
81 - path: glmark2/conditionals-fragment-steps=5:vertex-steps=0.rdc
97 - path: glmark2/function-fragment-complexity=low:fragment-steps=5.rdc
101 - path: glmark2/function-fragment-complexity=medium:fragment-steps=5.rdc
117 - path: glmark2/loop-fragment-loop=false:fragment-steps=5:vertex-steps=5.rdc
121 - path: glmark2/loop-fragment-steps=5:fragment-uniform=false:vertex-steps=5.rdc
125 - path: glmark2/loop-fragment-steps=5:fragment-uniform=true:vertex-steps=5.rdc

12345678910>>...188