Home
last modified time | relevance | path

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

1234

/external/clang/lib/Driver/
DTypes.cpp223 void types::getCompilationPhases(ID Id, llvm::SmallVectorImpl<phases::ID> &P) { in getCompilationPhases()
226 P.push_back(phases::Preprocess); in getCompilationPhases()
230 P.push_back(phases::Precompile); in getCompilationPhases()
233 P.push_back(phases::Compile); in getCompilationPhases()
234 P.push_back(phases::Backend); in getCompilationPhases()
236 P.push_back(phases::Assemble); in getCompilationPhases()
241 P.push_back(phases::Link); in getCompilationPhases()
244 assert(P.size() <= phases::MaxNumberOfPhases && "Too many phases in list"); in getCompilationPhases()
DDriver.cpp161 phases::ID Driver::getFinalPhase(const DerivedArgList &DAL, in getFinalPhase()
164 phases::ID FinalPhase; in getFinalPhase()
171 FinalPhase = phases::Preprocess; in getFinalPhase()
183 FinalPhase = phases::Compile; in getFinalPhase()
187 FinalPhase = phases::Backend; in getFinalPhase()
191 FinalPhase = phases::Assemble; in getFinalPhase()
195 FinalPhase = phases::Link; in getFinalPhase()
1487 phases::ID FinalPhase = getFinalPhase(Args, &FinalPhaseArg); in BuildActions()
1489 if (FinalPhase == phases::Link && Args.hasArg(options::OPT_emit_llvm)) { in BuildActions()
1586 llvm::SmallVector<phases::ID, phases::MaxNumberOfPhases> PL; in BuildActions()
[all …]
DPhases.cpp16 const char *phases::getPhaseName(ID Id) { in getPhaseName()
/external/v8/tools/turbolizer/src/
Dsource-resolver.ts85 phases: Array<Phase>; property in SourceResolver
107 this.phases = [];
381 parsePhases(phases) {
382 for (const [phaseId, phase] of Object.entries<Phase>(phases)) {
386 this.phases.push(this.parseSchedule(phase))
387 this.phaseNames.set(phase.name, this.phases.length);
399 this.phases.push(phase);
401 this.phaseNames.set(phase.name, this.phases.length);
407 return Math.max(0, Math.min(anyPhaseId, this.phases.length - 1))
411 return this.phases[phaseId];
[all …]
Dturbo-visualizer.ts245 sourceResolver.parsePhases(jsonObj.phases);
/external/tensorflow/tensorflow/python/kernel_tests/
Dself_adjoint_eig_op_test.py117 phases = np.sum(np.conj(x) * y, -2, keepdims=True)
118 phases /= np.abs(phases)
119 return phases * x
Dqr_op_test.py96 phases = np.divide(sum_of_ratios, np.abs(sum_of_ratios))
97 x *= phases
Dsvd_op_test.py106 phases = np.divide(sum_of_ratios, np.abs(sum_of_ratios))
107 x *= phases
/external/tensorflow/tensorflow/compiler/tests/
Dqr_op_test.py53 phases = np.divide(sum_of_ratios, np.abs(sum_of_ratios))
54 x *= phases
/external/clang/include/clang/Driver/
DPhases.h15 namespace phases {
DTypes.h87 llvm::SmallVectorImpl<phases::ID> &Phases);
DDriver.h219 phases::ID getFinalPhase(const llvm::opt::DerivedArgList &DAL,
392 phases::ID Phase, Action *Input) const;
/external/mesa3d/src/gallium/drivers/i915/
DTODO29 - Schedule instructions to minimize the number of phases. One way is to replace
/external/dagger2/
DCONTRIBUTING.md19 execute both unit and integration test phases. Additionally, consider using
/external/clang/docs/
DDriverInternals.rst175 ``-ccc-print-phases`` flag. For example:
179 $ clang -ccc-print-phases -x c t.c -x assembler t.s
199 $ clang -ccc-print-phases -c -arch i386 -arch x86_64 t0.c t1.c
314 phases are platform neutral, with a few very well defined exceptions
/external/tensorflow/tensorflow/contrib/factorization/g3doc/
Dwals.md37 The WALS algorithm proceeds in phases, or "sweeps", where each sweep involves
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LoopVectorize/X86/
Dconsecutive-ptr-cg-bug.ll16 ; during legal/cost model phases (original scalar loop). Unfortunately, that
/external/grpc-grpc/doc/core/
Dmoving-to-c++.md41 - What should be the phases of getting code converted to idiomatic C++
/external/v8/tools/turbolizer/
DREADME.md5 phases of Turbofan's optimization pipeline, allowing easy navigation between
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/
DTreeNodeStream.as93 * restreaming for future phases.
/external/wpa_supplicant_8/wpa_supplicant/
DREADME-DPP16 The three phases of DPP connection are authentication, configuration and
Dtodo.txt74 phases should be able to use the same functions for this;
/external/squashfs-tools/RELEASE-READMEs/
DREADME-3.131 phases. Only files which are considered possible duplicates after the
/external/curl/packages/vms/
Dpcsi_gnv_curl_file_list.txt16 ! [xxx.yyy]file.ext is a file for the rename and add phases.
/external/llvm/docs/CommandGuide/
Dllc.rst141 Print generated machine code between compilation phases (useful for debugging).

1234