Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/kernels/
Droll_op.cc90 int64 isd = 0; in Compute() local
92 if (isd == 0 && shift_mod_sum[i] != 0) isd = i; in Compute()
108 isd); in Compute()
189 const int64 isd) { in DoRollWithMemcpy() argument
190 auto work = [input, output, num_dims, &dim_size, &threshold, &dim_range, isd]( in DoRollWithMemcpy()
194 const int64 isd_range = std::max<int>(dim_range[isd], 1); in DoRollWithMemcpy()
196 const int64 isd_stride = isd_range / std::max<int>(dim_size[isd], 1); in DoRollWithMemcpy()
202 const int64 start_remainder = (start % 2) * threshold[isd] * isd_stride; in DoRollWithMemcpy()
203 const int64 end_remainder = (end % 2) * threshold[isd] * isd_stride; in DoRollWithMemcpy()
228 if (i > isd) { in DoRollWithMemcpy()
[all …]
Droll_op.h40 const gtl::ArraySlice<int64> dim_range, const int64 isd);
Droll_op_gpu.cu.cc60 const gtl::ArraySlice<int64> dim_range, const int64 isd) { in operator ()()
Droll_op_test.cc433 static Graph* RollGraph(const TensorShape& shape, int isd) { in RollGraph() argument
441 shift.flat<int32>()(i) = (i <= isd) ? 2 : 0; in RollGraph()
/external/llvm-project/lld/ELF/
DRelocations.cpp606 auto *isd = cast<InputSectionDescription>(osec->sectionCommands.back()); in addCopyRelSymbol() local
607 isd->sections.push_back(sec); in addCopyRelSymbol()
1589 if (auto *isd = dyn_cast<InputSectionDescription>(bc)) in forEachInputSectionDescription() local
1590 fn(os, isd); in forEachInputSectionDescription()
1687 outputSections, [&](OutputSection *os, InputSectionDescription *isd) { in mergeThunks() argument
1688 if (isd->thunkSections.empty()) in mergeThunks()
1692 llvm::erase_if(isd->thunkSections, in mergeThunks()
1701 for (std::pair<ThunkSection *, uint32_t> ts : isd->thunkSections) in mergeThunks()
1711 tmp.reserve(isd->sections.size() + newThunks.size()); in mergeThunks()
1713 std::merge(isd->sections.begin(), isd->sections.end(), in mergeThunks()
[all …]
DARMErrataFix.cpp354 InputSectionDescription &isd, std::vector<Patch657417Section *> &patches) { in insertPatches() argument
357 uint64_t prevIsecLimit = isd.sections.front()->outSecOff; in insertPatches()
359 uint64_t outSecAddr = isd.sections.front()->getParent()->addr; in insertPatches()
367 for (const InputSection *isec : isd.sections) { in insertPatches()
387 tmp.reserve(isd.sections.size() + patches.size()); in insertPatches()
393 std::merge(isd.sections.begin(), isd.sections.end(), patches.begin(), in insertPatches()
395 isd.sections = std::move(tmp); in insertPatches()
474 InputSectionDescription &isd) { in patchInputSectionDescription() argument
476 for (InputSection *isec : isd.sections) { in patchInputSectionDescription()
516 if (auto *isd = dyn_cast<InputSectionDescription>(bc)) { in createFixes() local
[all …]
DAArch64ErrataFix.cpp484 InputSectionDescription &isd, std::vector<Patch843419Section *> &patches) { in insertPatches() argument
486 uint64_t prevIsecLimit = isd.sections.front()->outSecOff; in insertPatches()
488 uint64_t outSecAddr = isd.sections.front()->getParent()->addr; in insertPatches()
495 for (const InputSection *isec : isd.sections) { in insertPatches()
517 tmp.reserve(isd.sections.size() + patches.size()); in insertPatches()
523 std::merge(isd.sections.begin(), isd.sections.end(), patches.begin(), in insertPatches()
525 isd.sections = std::move(tmp); in insertPatches()
579 InputSectionDescription &isd) { in patchInputSectionDescription() argument
581 for (InputSection *isec : isd.sections) { in patchInputSectionDescription()
634 if (auto *isd = dyn_cast<InputSectionDescription>(bc)) { in createFixes() local
[all …]
DOutputSections.cpp106 auto *isd = cast<InputSectionDescription>(sectionCommands.back()); in recordSection() local
107 isd->sectionBases.push_back(isec); in recordSection()
247 if (auto *isd = dyn_cast<InputSectionDescription>(b)) in sort() local
248 sortByOrder(isd->sections, order); in sort()
485 auto *isd = cast<InputSectionDescription>(sectionCommands[0]); in sortCtorsDtors() local
486 llvm::stable_sort(isd->sections, compCtors); in sortCtorsDtors()
505 if (auto *isd = dyn_cast<InputSectionDescription>(base)) in getFirstInputSection() local
506 if (!isd->sections.empty()) in getFirstInputSection()
507 return isd->sections[0]; in getFirstInputSection()
514 if (auto *isd = dyn_cast<InputSectionDescription>(base)) in getInputSections() local
[all …]
DARMErrataFix.h33 patchInputSectionDescription(InputSectionDescription &isd);
35 void insertPatches(InputSectionDescription &isd,
DAArch64ErrataFix.h32 patchInputSectionDescription(InputSectionDescription &isd);
34 void insertPatches(InputSectionDescription &isd,
DWriter.cpp801 if (auto *isd = dyn_cast<InputSectionDescription>(base)) in addSectionSymbols() local
802 return !isd->sections.empty(); in addSectionSymbols()
1378 sortISDBySectionOrder(InputSectionDescription *isd, in sortISDBySectionOrder() argument
1384 for (InputSection *isec : isd->sections) { in sortISDBySectionOrder()
1432 isd->sections.clear(); in sortISDBySectionOrder()
1434 isd->sections.push_back(isec); in sortISDBySectionOrder()
1436 isd->sections.push_back(p.first); in sortISDBySectionOrder()
1438 isd->sections.push_back(isec); in sortISDBySectionOrder()
1463 if (auto *isd = dyn_cast<InputSectionDescription>(b)) in sortSection() local
1464 sortISDBySectionOrder(isd, order); in sortSection()
[all …]
DMapFile.cpp183 if (auto *isd = dyn_cast<InputSectionDescription>(base)) { in writeMapFile() local
184 for (InputSection *isec : isd->sections) { in writeMapFile()
DRelocations.h150 InputSectionDescription *isd, uint32_t type,
DICF.cpp555 if (auto *isd = dyn_cast<InputSectionDescription>(sub_base)) in run() local
556 llvm::erase_if(isd->sections, in run()
DScriptParser.cpp891 auto *isd = make<InputSectionDescription>(tok); in readOutputSectionDescription() local
892 isd->sectionPatterns.push_back({{}, StringMatcher("*")}); in readOutputSectionDescription()
893 cmd->sectionCommands.push_back(isd); in readOutputSectionDescription()
DSyntheticSections.cpp904 if (auto *isd = dyn_cast<InputSectionDescription>(cmd)) in build() local
905 for (InputSection *isec : isd->sections) { in build()
3582 if (auto *isd = dyn_cast<InputSectionDescription>(base)) in isNeeded() local
3583 for (InputSection *isec : isd->sections) in isNeeded()
3596 if (auto *isd = dyn_cast<InputSectionDescription>(base)) { in finalizeContents() local
3597 for (InputSection *isec : isd->sections) { in finalizeContents()
/external/llvm-project/llvm/test/Transforms/LoopVectorize/
Dif-pred-non-void.ll77 %isd = getelementptr inbounds i32, i32* %asd, i64 %indvars.iv
81 %lsd = load i32, i32* %isd, align 4
104 store i32 %ysd.0, i32* %isd, align 4
131 %isd = getelementptr inbounds i32, i32* %asd, i64 %indvars.iv
132 %lsd = load i32, i32* %isd, align 4
133 %isd.b = getelementptr inbounds i32, i32* %bsd, i64 %indvars.iv
134 %lsd.b = load i32, i32* %isd.b, align 4
146 store i32 %ysd.0, i32* %isd, align 4
177 %isd = getelementptr inbounds i32, i32* %asd, i64 %indvars.iv
178 %lsd = load i32, i32* %isd, align 4
[all …]
Dif-pred-not-when-safe.ll31 %isd = getelementptr inbounds i32, i32* %asd, i64 %indvars.iv
35 %lsd = load i32, i32* %isd, align 4
78 store i32 %ysd.0, i32* %isd, align 4
/external/llvm-project/lld/ELF/Arch/
DARM.cpp39 void addPltHeaderSymbols(InputSection &isd) const override;
/external/cldr/tools/java/org/unicode/cldr/util/data/
Diso-639-3_Name_Index.tab2767 isd Isnag Isnag
Diso-639-3.tab2632 isd I L Isnag
Dlanguage-subtag-registry15054 Subtag: isd
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/
Den-IPA.txt17868 $x{cheesed → tʃisd ; # tʃizd
Dinternal_raw_IPA-old.txt34601 cheesed %13310 ʧisd
101435 isd %17602
Dinternal_raw_IPA.txt29228 cheesed %22600 tʃisd