HomeSort by relevance Sort by last modified time
    Searched refs:step (Results 251 - 275 of 2078) sorted by null

<<11121314151617181920>>

  /external/tensorflow/tensorflow/core/profiler/internal/
tfprof_stats.cc 156 if (opts.step < 0 && opts.output_type == kOutput[0]) {
157 for (int64 step : steps_) {
159 nopts.step = step;
226 // graph connection should be dynamic and per-step.
263 void TFStats::AddRunMeta(int64 step, std::unique_ptr<RunMetadata> run_meta) {
265 fprintf(stderr, "Invalid RunMetadata for step %lld\n", step);
268 if (steps_.find(step) == steps_.end()) {
269 steps_.insert(step);
    [all...]
  /external/tremolo/Tremolo/
mdct.h 64 int step,
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidZipStreamTest.java 72 byte val, step;
76 step = 1;
81 val += step;
84 step += stepStep;
  /system/extras/tests/icachetest/
icache_main.cpp 13 extern "C" void icache_test(long count, long step);
96 size_t const step = stepInBytes / CACHE_LINE_SIZE; local
104 for (size_t i=step ; i <= MAX_ITERATIONS_COUNT ; i += step) {
  /external/opencv/cv/src/
cvcorner.cpp 278 shifted_ptr = tempsrc->data.ptr + el_anchor.y*tempsrc->step +
280 temp_step = tempsrc->step ? tempsrc->step : CV_STUB_STEP;
303 d_step = Dx->step ? Dx->step : CV_STUB_STEP;
353 float* cov_data = (float*)(cov->data.ptr + i*cov->step);
356 const short* dxdata = (const short*)(Dx->data.ptr + i*Dx->step);
357 const short* dydata = (const short*)(Dy->data.ptr + i*Dy->step);
371 const float* dxdata = (const float*)(Dx->data.ptr + i*Dx->step);
372 const float* dydata = (const float*)(Dy->data.ptr + i*Dy->step);
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_exr.cpp 198 bool GrFmtExrReader::ReadData( uchar* data, int step, int color )
220 ystep = step;
314 UpSample( data, 3, step / xstep, xsample[0], m_blue->ySampling );
316 UpSample( data + xstep, 3, step / xstep, xsample[1], m_green->ySampling );
318 UpSample( data + 2 * xstep, 3, step / xstep, xsample[2], m_red->ySampling );
321 UpSample( data, 1, step / xstep, xsample[0], m_green->ySampling );
352 ChromaToBGR( (float *)buffer, 1, step );
374 out += step;
379 UpSampleY( data, 3, step / xstep, m_blue->ySampling );
381 UpSampleY( data + xstep, 3, step / xstep, m_green->ySampling )
    [all...]
grfmt_base.h 78 virtual bool ReadData( uchar* data, int step, int color ) = 0;
101 virtual bool WriteImage( const uchar* data, int step,
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_flow.c 242 LLVMValueRef step,
250 if (!step)
251 step = LLVMConstInt(LLVMTypeOf(end), 1, 0);
253 next = LLVMBuildAdd(builder, state->counter, step, "");
272 LLVMValueRef step)
274 lp_build_loop_end_cond(state, end, step, LLVMIntNE);
280 * e.g. for(i = start; i cmp_op end; i += step)
286 * \param step value added to iterator at end of each loop
294 LLVMValueRef step)
299 assert(LLVMTypeOf(start) == LLVMTypeOf(step));
    [all...]
  /external/tensorflow/tensorflow/contrib/summary/
summary_ops_test.py 111 step = training_util.get_or_create_global_step()
117 summary_ops.scalar('scalar', 2.0, step=step)
131 summary_ops.scalar('scalar', 2.0, step=1)
133 summary_ops.scalar('scalar', 2.0, step=2)
144 summary_ops.scalar('scalar', 2.0, step=1)
145 summary_ops.scalar('scalar', 2.0, step=2)
154 step = training_util.create_global_step()
158 state_ops.assign_add(step, 1)
171 get_all(self.db, 'SELECT step FROM Tensors WHERE dtype IS NOT NULL')
    [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
dynamic_stitch_op_test.py 42 for step in -1, 1:
43 stitched_t = self.stitch_op(indices[::step], data)
45 self.assertAllEqual([40, 60][::step], stitched_val)
56 for step in -1, 1:
57 stitched_t = self.stitch_op(indices[::step], data)
199 for step in -1, 1:
200 stitched_t = data_flow_ops.dynamic_stitch(indices[::step], data)
202 self.assertAllEqual([40.0, 60.0][::step], stitched_val)
237 for step in -1, 1:
238 stitched_t = data_flow_ops.dynamic_stitch(indices[::step], data
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/python/
pycontainer.swg 207 slice_adjust(Difference i, Difference j, Py_ssize_t step, size_t size, Difference &ii, Difference &jj, bool insert = false) {
208 if (step == 0) {
209 throw std::invalid_argument("slice step cannot be zero");
210 } else if (step > 0) {
259 getslice(const Sequence* self, Difference i, Difference j, Py_ssize_t step) {
263 swig::slice_adjust(i, j, step, size, ii, jj);
265 if (step > 0) {
270 if (step == 1) {
277 for (Py_ssize_t c=0; c<step && it!=se; ++c)
292 for (Py_ssize_t c=0; c<-step && it!=se; ++c
    [all...]
  /device/google/contexthub/firmware/os/algos/common/math/
levenberg_marquardt.h 12 * method where the solver step on each iteration is chosen such that:
13 * (J' J + uI) * step = - J' f(x)
65 // magnitude of relative error required for solution step, i.e.
66 // ||step|| / ||state|| < relative_step_thresold.
74 float step[MAX_LM_STATE_DIMENSION]; member in struct:LmData
86 RELATIVE_STEP_SUFFICIENTLY_SMALL, // solver step is sufficiently small.
142 * function gain for the given solver step. This ratio is used to adjust
143 * the solver step size for the next solver iteration.
147 * residual_new: f(x + step) for the new state after the solver step
    [all...]
  /external/adhd/cras/tools/
create_volume_curve.py 12 print ' ; simple_step curve, max %d, step %d' % (max_volume, step_size)
17 def WriteExplicitCurveVal(step, value):
18 print ' db_at_%d = %d' % (step, value)
26 print 'Level at step %d:' % (100 - i)
29 print 'Level at step 0:'
55 print 'step size (in dBFS * 100)'
63 print 'Volume step where slope changes:'
65 print 'step size 100 to %d(in dBFS * 100)' % pivot_point
67 print 'step size %d to 0(in dBFS * 100)' % pivot_point
  /external/autotest/client/common_lib/
enum.py 36 step = kwargs.get('step', 1)
43 value = i * step + start_value
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
Collation.java 508 * Decrements a 2-byte primary by one range step (1..0x7f).
510 static long decTwoBytePrimaryByOneStep(long basePrimary, boolean isCompressible, int step) {
512 // minus the step, modulo the number of usable byte values, plus the minimum.
515 assert(0 < step && step <= 0x7f);
516 int byte2 = ((int)(basePrimary >> 16) & 0xff) - step;
532 * Decrements a 3-byte primary by one range step (1..0x7f).
534 static long decThreeBytePrimaryByOneStep(long basePrimary, boolean isCompressible, int step) {
536 // minus the step, modulo the number of usable byte values, plus the minimum.
537 assert(0 < step && step <= 0x7f)
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
Collation.java 506 * Decrements a 2-byte primary by one range step (1..0x7f).
508 static long decTwoBytePrimaryByOneStep(long basePrimary, boolean isCompressible, int step) {
510 // minus the step, modulo the number of usable byte values, plus the minimum.
513 assert(0 < step && step <= 0x7f);
514 int byte2 = ((int)(basePrimary >> 16) & 0xff) - step;
530 * Decrements a 3-byte primary by one range step (1..0x7f).
532 static long decThreeBytePrimaryByOneStep(long basePrimary, boolean isCompressible, int step) {
534 // minus the step, modulo the number of usable byte values, plus the minimum.
535 assert(0 < step && step <= 0x7f)
    [all...]
  /external/pdfium/core/fxcrt/
cfx_binarybuf.cpp 40 void CFX_BinaryBuf::EstimateSize(size_t size, size_t step) {
41 m_AllocStep = step;
  /external/python/cpython2/Tools/buildbot/
clean.bat 2 rem Used by the buildbot "clean" step.
  /external/python/cpython3/Tools/buildbot/
clean.bat 2 rem Used by the buildbot "clean" step.
  /external/skia/infra/bots/recipe_modules/isolate/
api.py 48 """Returns a step which finds all *.isolated files in a build directory.
54 build property. This implies this step can currently only be run once
57 If |targets| is None, the step will use all *.isolated files it finds.
74 step_result.presentation.status != self.m.step.FAILURE):
83 # Some expected targets are missing? Fail the step.
84 step_result.presentation.status = self.m.step.FAILURE
90 step_result.presentation.status != self.m.step.FAILURE):
91 step_result.presentation.status = self.m.step.WARNING
101 This step then uses *.isolated.gen.json files to actually performs the
108 this step can currently only be run once per recipe
    [all...]
  /external/skia/infra/bots/recipe_modules/skia_swarming/
api.py 48 self.m.step('download luci-go linux',
53 self.m.step('download luci-go mac',
58 self.m.step('download luci-go win',
187 except self.m.step.StepFailure as e: # pragma: no cover
188 step_result = self.m.step.active_result
189 # Change step result to Infra failure if the swarming task failed due to
191 # Infra failures have step.EXCEPTION.
197 step_result.presentation.status = self.m.step.EXCEPTION
198 raise self.m.step.InfraFailure(e.name, step_result)
201 step_result = self.m.step.active_resul
    [all...]
  /external/skia/infra/bots/recipes/
housekeeper.py 14 'recipe_engine/step',
33 api.step,
46 api.step,
  /external/skqp/infra/bots/recipe_modules/isolate/
api.py 48 """Returns a step which finds all *.isolated files in a build directory.
54 build property. This implies this step can currently only be run once
57 If |targets| is None, the step will use all *.isolated files it finds.
74 step_result.presentation.status != self.m.step.FAILURE):
83 # Some expected targets are missing? Fail the step.
84 step_result.presentation.status = self.m.step.FAILURE
90 step_result.presentation.status != self.m.step.FAILURE):
91 step_result.presentation.status = self.m.step.WARNING
101 This step then uses *.isolated.gen.json files to actually performs the
108 this step can currently only be run once per recipe
    [all...]
  /external/skqp/infra/bots/recipe_modules/skia_swarming/
api.py 48 self.m.step('download luci-go linux',
53 self.m.step('download luci-go mac',
58 self.m.step('download luci-go win',
187 except self.m.step.StepFailure as e: # pragma: no cover
188 step_result = self.m.step.active_result
189 # Change step result to Infra failure if the swarming task failed due to
191 # Infra failures have step.EXCEPTION.
197 step_result.presentation.status = self.m.step.EXCEPTION
198 raise self.m.step.InfraFailure(e.name, step_result)
201 step_result = self.m.step.active_resul
    [all...]
  /external/skqp/infra/bots/recipes/
housekeeper.py 14 'recipe_engine/step',
33 api.step,
46 api.step,

Completed in 782 milliseconds

<<11121314151617181920>>