Searched refs:block_id (Results 1 - 25 of 82) sorted by relevance

1234

/external/tensorflow/tensorflow/python/keras/_impl/keras/applications/
H A Dnasnet.py241 x, p, filters // (filter_multiplier**2), block_id='stem_1')
243 x, p, filters // filter_multiplier, block_id='stem_2')
246 x, p = _normal_a_cell(x, p, filters, block_id='%d' % (i))
249 x, p, filters * filter_multiplier, block_id='reduce_%d' % (num_blocks))
255 x, p, filters * filter_multiplier, block_id='%d' % (num_blocks + i + 1))
261 block_id='reduce_%d' % (2 * num_blocks))
270 block_id='%d' % (2 * num_blocks + i + 1))
469 block_id=None):
477 block_id: String block_id
[all...]
H A Dmobilenet.py472 x = _depthwise_conv_block(x, 64, alpha, depth_multiplier, block_id=1)
475 x, 128, alpha, depth_multiplier, strides=(2, 2), block_id=2)
476 x = _depthwise_conv_block(x, 128, alpha, depth_multiplier, block_id=3)
479 x, 256, alpha, depth_multiplier, strides=(2, 2), block_id=4)
480 x = _depthwise_conv_block(x, 256, alpha, depth_multiplier, block_id=5)
483 x, 512, alpha, depth_multiplier, strides=(2, 2), block_id=6)
484 x = _depthwise_conv_block(x, 512, alpha, depth_multiplier, block_id=7)
485 x = _depthwise_conv_block(x, 512, alpha, depth_multiplier, block_id=8)
486 x = _depthwise_conv_block(x, 512, alpha, depth_multiplier, block_id=9)
487 x = _depthwise_conv_block(x, 512, alpha, depth_multiplier, block_id
[all...]
/external/v8/tools/turbolizer/
H A Dschedule-view.js16 block_id: -1,
20 BLOCK_HEADER_STYLE.block_id = Number(matches[0]);
22 block_id: BLOCK_HEADER_STYLE.block_id
30 view.select(function(location) { return location.block_id == id; }, true, true);
39 block_id: BLOCK_HEADER_STYLE.block_id
56 block_id: BLOCK_HEADER_STYLE.block_id
H A Ddisassembly-view.js43 if (BLOCK_HEADER_STYLE.block_id != undefined) {
46 block_id: BLOCK_HEADER_STYLE.block_id
57 block_id: -1,
61 BLOCK_HEADER_STYLE.block_id = Number(matches[0]);
63 block_id: BLOCK_HEADER_STYLE.block_id
129 if (location.block_id != undefined) {
131 result.block_id = location.block_id;
[all...]
H A Dselection-broker.js57 if (location.block_id != undefined) {
58 newLocation.block_id = location.block_id;
H A Dtext-view.js60 if (l1.block_id != undefined && l2.block_id != undefined &&
61 l1.block_id == l2.block_id && l1.node_id === undefined) {
/external/v8/src/crankshaft/
H A Dhydrogen-environment-liveness.cc53 int successor_id = successor->block_id();
89 live->Union(*live_at_block_start_[it.Current()->block_id()]);
142 int return_id = enter->return_targets()->at(i)->block_id();
171 for (int block_id = block_count_ - 1; block_id >= 0; --block_id) {
172 if (!worklist.Contains(block_id)) {
175 worklist.Remove(block_id);
178 HBasicBlock* block = graph()->blocks()->at(block_id);
189 first_simulate_.Set(block_id, last_simulate
[all...]
H A Dhydrogen-flow-engine.h97 for (int i = root->block_id(); i < graph_->blocks()->length(); i++) {
143 Effects* effects = loop_effects_[block->block_id()];
147 loop_effects_[block->block_id()] = effects;
151 int end = loop->GetLastBackEdge()->block_id();
153 for (int i = block->block_id(); i <= end; i++) {
155 if (i != block->block_id() && member->IsLoopHeader()) {
161 i = member->loop_information()->GetLastBackEdge()->block_id();
175 if (root->block_id() == 0) return false; // Visit the whole graph.
181 return block_states_.at(block->block_id());
185 block_states_.Set(block->block_id(), stat
[all...]
H A Dhydrogen-removable-simulates.cc23 reinterpret_cast<void*>(this), instr->block()->block_id(),
101 block->block_id());
143 reinterpret_cast<void*>(this), pred_block->block_id(),
144 reinterpret_cast<void*>(copy), succ_block->block_id());
159 reinterpret_cast<void*>(pred_state), pred_block->block_id(),
160 reinterpret_cast<void*>(this), succ_block->block_id());
H A Dhydrogen-escape-analysis.h45 return block_states_.at(block->block_id());
49 block_states_.Set(block->block_id(), state);
H A Dhydrogen-infer-types.cc27 InferTypes(i + 1, last_back_edge->block_id());
29 i = last_back_edge->block_id();
H A Dhydrogen-gvn.cc542 int id = block->block_id();
560 loop_side_effects_[parent_block->block_id()].Add(side_effects);
575 SideEffects side_effects = loop_side_effects_[block->block_id()];
582 for (int j = block->block_id(); j <= last->block_id(); ++j) {
628 instr->id(), pre_header->block_id());
656 if (dominator->block_id() < block->block_id() &&
657 block->block_id() < dominated->block_id()
[all...]
H A Dhydrogen-check-elimination.cc169 PrintF("Processing B%d, checkmaps-table:\n", block->block_id());
301 succ->block_id(),
303 from_block->block_id());
356 succ->block_id(), pred_block->block_id());
373 instr->id(), instr->block()->block_id(), entry->check_->id()));
379 instr->id(), instr->block()->block_id()));
385 instr->id(), instr->block()->block_id()));
419 check->block()->block_id()));
424 instr->id(), instr->block()->block_id(), entr
[all...]
H A Dlithium.cc268 LLabel* LChunk::GetLabel(int block_id) const {
269 HBasicBlock* block = graph_->blocks()->at(block_id);
275 int LChunk::LookupDestination(int block_id) const {
276 LLabel* cur = GetLabel(block_id);
280 return cur->block_id();
283 Label* LChunk::GetAssemblyLabel(int block_id) const {
284 LLabel* label = GetLabel(block_id);
317 label->set_replacement(GetLabel(goto_instr->block_id()));
/external/libxcam/modules/ocl/
H A Dcl_newtonemapping_handler.cpp70 int block_id = block_start_index / hist_bin_count; local
76 y_max[block_id] = i;
83 y_avg[block_id] += i * hist[i];
86 y_max[block_id] = y_max[block_id] + 1;
87 y_avg[block_id] = y_avg[block_id] / pixel_num;
95 int thres = (int)(1500 * 1500 / (y_avg[block_id] * y_avg[block_id] + 1) * 600);
96 int y_max0 = (y_max[block_id] > thre
[all...]
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
H A Dparallel_loop_emitter.cc66 llvm::Value* block_id = llvm_ir::EmitCallToIntrinsic( local
69 static_cast<llvm::Instruction*>(block_id));
70 block_id =
71 ir_builder_->CreateZExt(block_id, ir_builder_->getInt64Ty(), "block_id");
86 block_id,
/external/mesa3d/src/gallium/drivers/freedreno/ir3/
H A Dir3_print.c196 printf(", target=block%u", block_id(instr->cat0.target));
210 tab(lvl); printf("block%u {\n", block_id(block));
220 block_id(block->successors[0]),
221 block_id(block->successors[1]));
225 block_id(block->successors[0]));
/external/v8/src/
H A Dbasic-block-profiler.cc39 void BasicBlockProfiler::Data::SetBlockId(size_t offset, size_t block_id) { argument
41 block_ids_[offset] = block_id;
H A Dbasic-block-profiler.h29 void SetBlockId(size_t offset, size_t block_id);
/external/v8/src/compiler/
H A Dlive-range-separator.cc86 for (int block_id = first_block_nr; block_id <= last_block_nr; ++block_id) {
88 code->InstructionBlockAt(RpoNumber::FromInt(block_id));
H A Dregister-allocator-verifier.cc370 RpoNumber block_id, InstructionOperand op,
382 seen.insert(block_id);
436 block_id, current_operand, current_assessments,
463 RpoNumber block_id, InstructionOperand op,
476 DCHECK_LE(old_block, block_id);
478 old_block == block_id ? current_assessments : assessments_[old_block];
484 RpoNumber block_id, BlockAssessments* current_assessments,
493 ValidateFinalAssessment(block_id, op, current_assessments,
499 ValidatePendingAssessment(block_id, op, current_assessments, pending,
369 ValidatePendingAssessment( RpoNumber block_id, InstructionOperand op, BlockAssessments* current_assessments, const PendingAssessment* assessment, int virtual_register) argument
462 ValidateFinalAssessment( RpoNumber block_id, InstructionOperand op, BlockAssessments* current_assessments, const FinalAssessment* assessment, int virtual_register) argument
483 ValidateUse( RpoNumber block_id, BlockAssessments* current_assessments, InstructionOperand op, int virtual_register) argument
H A Dregister-allocator-verifier.h243 void ValidatePendingAssessment(RpoNumber block_id, InstructionOperand op,
247 void ValidateFinalAssessment(RpoNumber block_id, InstructionOperand op,
251 void ValidateUse(RpoNumber block_id, BlockAssessments* current_assessments,
/external/v8/src/crankshaft/s390/
H A Dlithium-codegen-s390.h37 int LookupDestination(int block_id) const {
38 return chunk()->LookupDestination(block_id);
41 bool IsNextEmittedBlock(int block_id) const {
42 return LookupDestination(block_id) == GetNextEmittedBlock();
/external/brotli/c/enc/
H A Dblock_splitter_inc.h64 in data[0..length) and fills in block_id[0..length) with the assigned values.
73 uint8_t *block_id) {
82 block_id[i] = 0;
117 block_id[byte_ix] = (uint8_t)k;
137 uint8_t cur_id = block_id[byte_ix];
144 if (cur_id != block_id[byte_ix]) {
145 cur_id = block_id[byte_ix];
149 block_id[byte_ix] = cur_id;
66 FindBlocks(const DataType* data, const size_t length, const double block_switch_bitcost, const size_t num_histograms, const HistogramType* histograms, double* insert_cost, double* cost, uint8_t* switch_signal, uint8_t *block_id) argument
/external/v8/src/crankshaft/arm/
H A Dlithium-codegen-arm.h38 int LookupDestination(int block_id) const {
39 return chunk()->LookupDestination(block_id);
42 bool IsNextEmittedBlock(int block_id) const {
43 return LookupDestination(block_id) == GetNextEmittedBlock();

Completed in 882 milliseconds

1234