HomeSort by relevance Sort by last modified time
    Searched refs:module (Results 151 - 175 of 3508) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/tensorflow/tensorflow/compiler/xla/service/
dynamic_padder.h 31 // hlo module, it then inserts certain instructions to reset the padding into an
39 StatusOr<bool> Run(HloModule* module) override;
flatten_call_graph.h 16 // Flatten the call graph for an HLO module into a tree.
35 StatusOr<bool> Run(HloModule* module) override;
hlo_constant_folding.h 30 // Run constant folding operations on the given module. Returns whether the
31 // module was changed (constant expressions folded).
32 StatusOr<bool> Run(HloModule* module) override;
hlo_get_dimension_size_rewriter.h 33 StatusOr<bool> Run(HloModule* module) override;
hlo_pass_interface.h 36 // Run the pass on the given HLO module. Returns whether it modified the
37 // module.
38 virtual StatusOr<bool> Run(HloModule* module) = 0;
40 // Run the pass on the given HLO module group. Returns whether it modified the
41 // module group. Ideally, the module group variant would be named "Run" as
46 // Base class for passes which are module-scoped.
49 // Runs the pass on a module group by iterating through each module in the
53 for (HloModule* module : module_group->modules())
    [all...]
hlo_subcomputation_unification.h 31 StatusOr<bool> Run(HloModule* module) override;
reshape_mover.h 31 StatusOr<bool> Run(HloModule* module) override;
sort_simplifier.h 30 StatusOr<bool> Run(HloModule* module) override;
zero_sized_hlo_elimination.h 26 StatusOr<bool> Run(HloModule* module) override;
hlo_module_test.cc 65 // Create a module with a single computation.
66 auto module = CreateNewVerifiedModule(); local
67 auto computation = module->AddEntryComputation(CreateConstantComputation());
69 EXPECT_THAT(module->MakeComputationPostOrder(),
74 // Create a module with two unconnected computations.
75 auto module = CreateNewVerifiedModule(); local
76 auto computation1 = module->AddEntryComputation(CreateConstantComputation());
78 module->AddEmbeddedComputation(CreateConstantComputation());
80 EXPECT_THAT(module->MakeComputationPostOrder(),
90 // Create and copy a module with a diamond call graph of computations
91 auto module = CreateNewVerifiedModule(); local
114 auto module = CreateNewVerifiedModule(); local
157 auto module = CreateNewVerifiedModule(); local
177 auto module = CreateNewVerifiedModule(); local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
gpu_copy_insertion.cc 37 StatusOr<bool> GpuCopyInsertion::Run(HloModule* module) {
40 TF_ASSIGN_OR_RETURN(bool changed, generic_copy_insertion.Run(module));
46 for (HloComputation* computation : module->computations()) {
60 CopyInsertion::AddCopiesForBufferAssignment(module));
multi_output_fusion_test.cc 50 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
67 ASSERT_TRUE(GpuMultiOutputFusion().Run(module.get()).ValueOrDie());
68 SCOPED_TRACE(module->ToString());
70 module->entry_computation()->root_instruction()->operand(0)->operand(0);
77 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
100 ASSERT_FALSE(GpuMultiOutputFusion().Run(module.get()).ValueOrDie());
104 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
127 ASSERT_FALSE(GpuMultiOutputFusion().Run(module.get()).ValueOrDie());
133 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
155 ASSERT_TRUE(GpuMultiOutputFusion().Run(module.get()).ValueOrDie())
168 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
201 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
231 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
262 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
280 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
304 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
327 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
361 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
388 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
408 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
435 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
476 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
503 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
544 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
583 auto module = CreateNewVerifiedModule(); local
625 auto module = ParseHloString(R"(HloModule dus_mof local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/llvm_gpu_backend/
utils_test.cc 23 #include "llvm/IR/Module.h"
37 std::unique_ptr<llvm::Module> module = LoadIRModule( local
39 // Sanity check that the module was loaded properly.
40 ASSERT_NE(nullptr, module);
41 ASSERT_NE(std::string::npos, module->getModuleIdentifier().find("saxpy.ll"));
42 ASSERT_NE(nullptr, module->getFunction("cuda_saxpy"));
  /external/deqp-deps/SPIRV-Tools/test/opt/
module_test.cpp 23 #include "source/opt/module.h"
35 Module m;
46 // Returns an IRContext owning the module formed by assembling the given text,
54 // Emtpy module case.
55 EXPECT_EQ(1u, BuildModule("")->module()->ComputeIdBound());
57 EXPECT_EQ(2u, BuildModule("%void = OpTypeVoid")->module()->ComputeIdBound());
60 BuildModule("%a = OpTypeArray !999 3")->module()->ComputeIdBound());
63 BuildModule("OpDecorate !1999 0")->module()->ComputeIdBound());
68 ->module()
74 ->module()
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/test/opt/
module_test.cpp 23 #include "source/opt/module.h"
35 Module m;
46 // Returns an IRContext owning the module formed by assembling the given text,
54 // Emtpy module case.
55 EXPECT_EQ(1u, BuildModule("")->module()->ComputeIdBound());
57 EXPECT_EQ(2u, BuildModule("%void = OpTypeVoid")->module()->ComputeIdBound());
60 BuildModule("%a = OpTypeArray !999 3")->module()->ComputeIdBound());
63 BuildModule("OpDecorate !1999 0")->module()->ComputeIdBound());
68 ->module()
74 ->module()
    [all...]
  /external/google-breakpad/src/processor/
source_line_resolver_base.cc 65 // Delete individual module.
151 bool SourceLineResolverBase::LoadModule(const CodeModule *module,
153 if (module == NULL)
156 // Make sure we don't already have a module with the given name.
157 if (modules_->find(module->code_file()) != modules_->end()) {
158 BPLOG(INFO) << "Symbols for module " << module->code_file()
163 BPLOG(INFO) << "Loading symbols for module " << module->code_file()
173 bool load_result = LoadModuleUsingMemoryBuffer(module, memory_buffer
    [all...]
  /external/python/cpython3/Modules/clinic/
_operator.c.h 6 "truth($module, a, /)\n"
15 _operator_truth_impl(PyObject *module, PyObject *a);
18 _operator_truth(PyObject *module, PyObject *a)
23 _return_value = _operator_truth_impl(module, a);
34 "add($module, a, b, /)\n"
43 _operator_add_impl(PyObject *module, PyObject *a, PyObject *b);
46 _operator_add(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
57 return_value = _operator_add_impl(module, a, b);
64 "sub($module, a, b, /)\n"
73 _operator_sub_impl(PyObject *module, PyObject *a, PyObject *b)
    [all...]
resource.c.h 6 "getrusage($module, who, /)\n"
14 resource_getrusage_impl(PyObject *module, int who);
17 resource_getrusage(PyObject *module, PyObject *arg)
25 return_value = resource_getrusage_impl(module, who);
32 "getrlimit($module, resource, /)\n"
40 resource_getrlimit_impl(PyObject *module, int resource);
43 resource_getrlimit(PyObject *module, PyObject *arg)
51 return_value = resource_getrlimit_impl(module, resource);
58 "setrlimit($module, resource, limits, /)\n"
66 resource_setrlimit_impl(PyObject *module, int resource, PyObject *limits)
    [all...]
signalmodule.c.h 8 "alarm($module, seconds, /)\n"
17 signal_alarm_impl(PyObject *module, int seconds);
20 signal_alarm(PyObject *module, PyObject *arg)
29 _return_value = signal_alarm_impl(module, seconds);
44 "pause($module, /)\n"
53 signal_pause_impl(PyObject *module);
56 signal_pause(PyObject *module, PyObject *Py_UNUSED(ignored))
58 return signal_pause_impl(module);
64 "signal($module, signalnum, handler, /)\n"
80 signal_signal_impl(PyObject *module, int signalnum, PyObject *handler)
    [all...]
mathmodule.c.h 6 "gcd($module, x, y, /)\n"
15 math_gcd_impl(PyObject *module, PyObject *a, PyObject *b);
18 math_gcd(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
29 return_value = math_gcd_impl(module, a, b);
36 "ceil($module, x, /)\n"
47 "floor($module, x, /)\n"
58 "fsum($module, seq, /)\n"
69 "factorial($module, x, /)\n"
80 "trunc($module, x, /)\n"
91 "frexp($module, x, /)\n
    [all...]
  /external/webrtc/webrtc/modules/utility/source/
process_thread_impl.cc 14 #include "webrtc/modules/include/module.h"
21 // We use this constant internally to signal that a module has requested
26 int64_t GetNextCallbackTime(Module* module, int64_t time_now) {
27 int64_t interval = module->TimeUntilNextProcess();
75 m.module->ProcessThreadAttached(this);
107 m.module->ProcessThreadAttached(nullptr);
110 void ProcessThreadImpl::WakeUp(Module* module) {
115 if (m.module == module
    [all...]
  /external/deqp/scripts/
build_caselists.py 34 class Module:
41 Module("dE-IT", "internal", "de-internal-tests"),
42 Module("dEQP-EGL", "egl", "deqp-egl"),
43 Module("dEQP-GLES2", "gles2", "deqp-gles2"),
44 Module("dEQP-GLES3", "gles3", "deqp-gles3"),
45 Module("dEQP-GLES31", "gles31", "deqp-gles31"),
46 Module("dEQP-VK", "../external/vulkancts/modules/vulkan", "deqp-vk"),
53 for module in MODULES:
54 if module.name == name:
55 return module
    [all...]
  /device/generic/goldfish/camera/
EmulatedQemuCamera2.cpp 34 struct hw_module_t* module)
35 : EmulatedCamera2(cameraId,module),
  /device/google/cuttlefish_common/guest/hals/camera/
EmulatedQemuCamera2.cpp 33 struct hw_module_t* module)
34 : EmulatedCamera2(cameraId, module), mFacingBack(facingBack) {
  /device/google/wahoo/
init.hardware.chamber.rc.userdebug 18 write /sys/module/smb_lib/parameters/enable_ovh 0

Completed in 960 milliseconds

1 2 3 4 5 67 8 91011>>