HomeSort by relevance Sort by last modified time
    Searched defs:module (Results 126 - 150 of 651) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/swiftshader/third_party/SPIRV-Tools/test/opt/loop_optimizations/
unroll_assumptions.cpp 44 for (Function& f : *context()->module()) {
126 Module* module = context->module(); local
127 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
226 Module* module = context->module(); local
227 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
307 Module* module = context->module() local
388 Module* module = context->module(); local
525 Module* module = context->module(); local
597 Module* module = context->module(); local
668 Module* module = context->module(); local
745 Module* module = context->module(); local
963 Module* module = context->module(); local
1037 Module* module = context->module(); local
1117 Module* module = context->module(); local
1196 Module* module = context->module(); local
1275 Module* module = context->module(); local
1354 Module* module = context->module(); local
1433 Module* module = context->module(); local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
cpu_hlo_support_checker_test.cc 45 auto module = CreateNewVerifiedModule(); local
46 module->AddEntryComputation(builder.Build());
48 TF_ASSERT_OK(checker().Run(module.get()).status());
63 auto module = CreateNewUnverifiedModule(); local
64 module->AddEntryComputation(builder.Build());
66 Status status = checker().Run(module.get()).status();
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/tests/
cpu_external_constants_test.cc 49 std::unique_ptr<HloModule> module = CreateNewVerifiedModule(); local
50 module->AddEntryComputation(builder.Build());
52 CompileAndVerifyIr(std::move(module), filecheck_pattern,
  /external/tensorflow/tensorflow/compiler/xla/service/
flatten_call_graph.cc 72 HloModule* module = computation->parent(); local
90 module->AddEmbeddedComputation(computation->Clone());
105 module->AddEmbeddedComputation(callee->Clone());
117 StatusOr<bool> FlattenCallGraph::Run(HloModule* module) {
118 XLA_VLOG_LINES(3, "Before flatten call graph:\n" + module->ToString());
120 std::unique_ptr<CallGraph> call_graph = CallGraph::Build(module);
123 XLA_VLOG_LINES(3, "After flatten call graph:\n" + module->ToString());
hlo_creation_utils_test.cc 37 auto module = CreateNewVerifiedModule("test"); local
38 *entry_computation = module->AddEntryComputation(
42 return module;
50 auto module = CreateModuleWithProgramShape(S32, /*input_shape_dims=*/{2}, local
61 evaluator.Evaluate(*module, {LiteralUtil::CreateR1<int32>({3, 4})}));
69 auto module = CreateModuleWithProgramShape( local
80 evaluator.Evaluate(*module, {LiteralUtil::CreateR3<int32>(
92 auto module = CreateModuleWithProgramShape(S32, /*input_shape_dims=*/{2}, local
103 evaluator.Evaluate(*module, {LiteralUtil::CreateR1<int32>({9, 10})}));
111 auto module = CreateModuleWithProgramShape(S32, /*input_shape_dims=*/{2} local
130 auto module = CreateModuleWithProgramShape(S32, \/*input_shape_dims=*\/{}, local
149 auto module = CreateModuleWithProgramShape(S32, \/*input_shape_dims=*\/{6}, local
170 auto module = CreateModuleWithProgramShape(S32, \/*input_shape_dims=*\/{2}, local
190 auto module = CreateModuleWithProgramShape(S32, \/*input_shape_dims=*\/{}, local
209 auto module = CreateModuleWithProgramShape(F32, \/*input_shape_dims=*\/{}, local
    [all...]
hlo_element_type_converter_test.cc 42 auto module = ParseAndReturnVerifiedModule(hlo_string).ValueOrDie(); local
44 TF_ASSERT_OK_AND_ASSIGN(bool converted, type_converter.Run(module.get()));
58 auto module = ParseAndReturnVerifiedModule(hlo_string).ValueOrDie(); local
60 TF_ASSERT_OK_AND_ASSIGN(bool converted, type_converter.Run(module.get()));
77 auto module = ParseAndReturnVerifiedModule(hlo_string).ValueOrDie(); local
79 TF_ASSERT_OK_AND_ASSIGN(bool converted, type_converter.Run(module.get()));
82 module->entry_computation()->root_instruction()->operand(0)->operand(1);
105 auto module = ParseAndReturnVerifiedModule(hlo_string).ValueOrDie(); local
107 TF_ASSERT_OK_AND_ASSIGN(bool converted, type_converter.Run(module.get()));
110 module->entry_computation()->root_instruction()
129 auto module = ParseAndReturnVerifiedModule(hlo_string).ValueOrDie(); local
155 auto module = ParseAndReturnVerifiedModule(hlo_string).ValueOrDie(); local
187 auto module = ParseAndReturnVerifiedModule(hlo_string).ValueOrDie(); local
    [all...]
hlo_module_dce_test.cc 74 auto module = ParseHloString(R"( local
101 EXPECT_FALSE(dce.Run(module.get()).ValueOrDie());
102 EXPECT_FALSE(WhileBodyHasPassThroughTupleElement(module->entry_computation(),
104 EXPECT_FALSE(WhileBodyHasPassThroughTupleElement(module->entry_computation(),
111 auto module = ParseHloString(R"( local
141 EXPECT_FALSE(dce.Run(module.get()).ValueOrDie());
142 EXPECT_FALSE(WhileBodyHasPassThroughTupleElement(module->entry_computation(),
144 EXPECT_FALSE(WhileBodyHasPassThroughTupleElement(module->entry_computation(),
151 auto module = ParseHloString(R"( local
180 EXPECT_FALSE(WhileBodyHasPassThroughTupleElement(module->entry_computation()
194 auto module = ParseHloString(R"( local
236 auto module = ParseHloString(R"( local
304 auto module = ParseHloString(R"( local
370 auto module = ParseHloString(R"( local
407 auto module = ParseHloString(R"( local
    [all...]
hlo_module_group.h 30 // An abstraction representing a ordered set of HLO module built to run
34 // Construct an empty module group.
37 // Construct a module group containing a single module.
38 explicit HloModuleGroup(std::unique_ptr<HloModule> module);
40 // Construct a module group containing any number of modules.
49 // Returns a module at a particular index.
50 HloModule& module(int index) const { return *module_ptrs_.at(index); } function in class:xla::HloModuleGroup
52 // Add a module to the back of vector of modules in the group.
53 void push_back(std::unique_ptr<HloModule> module);
    [all...]
hlo_pass_pipeline.cc 100 void HloPassPipeline::MaybeDumpHlo(const HloModule& module,
104 module); local
110 for (const HloModule* module : module_group.modules()) {
111 MaybeDumpHlo(*module, after_pass_name, before_pass_name);
115 StatusOr<bool> HloPassPipeline::Run(HloModule* module) {
118 VLOG(1) << "Running HLO pass pipeline on module " << module->name() << ": "
121 return RunPassesInternal(module,
122 GetEnabledPasses(module->config().debug_options()));
128 VLOG(1) << "Running HLO pass pipeline on module group
    [all...]
zero_sized_hlo_elimination_test.cc 48 auto module = local
50 module->AddEntryComputation(builder_.Build());
51 return ZeroSizedHloElimination{}.Run(module.get());
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
gpu_fusible_test.cc 38 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
46 SCOPED_TRACE(module->ToString());
48 module->entry_computation()->root_instruction();
51 module->entry_computation()->root_instruction()->operand(0);
58 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
82 SCOPED_TRACE(module->ToString());
84 module->entry_computation()->root_instruction()->operand(0);
88 module->entry_computation()->root_instruction()->operand(1);
95 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
107 SCOPED_TRACE(module->ToString())
119 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
156 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
182 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
199 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
216 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
235 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
254 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
276 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
297 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
319 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
340 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
367 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
393 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
415 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
438 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
469 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
486 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
505 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
542 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
573 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
604 auto module = ParseHloString(absl::StrCat(kModulePrefix, R"( local
    [all...]
gpu_hlo_support_checker_test.cc 45 auto module = CreateNewVerifiedModule(); local
46 module->AddEntryComputation(builder.Build());
48 TF_ASSERT_OK(checker().Run(module.get()).status());
63 auto module = CreateNewUnverifiedModule(); local
64 module->AddEntryComputation(builder.Build());
66 Status status = checker().Run(module.get()).status();
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/tests/
gpu_index_test.cc 70 auto module = ParseHloString(R"( local
83 CompileAndVerifyIr(std::move(module),
94 auto module = ParseHloString(R"( local
108 CompileAndVerifyIr(std::move(module),
124 auto module = ParseHloString(R"( local
135 CompileAndVerifyIr(std::move(module),
  /external/tensorflow/tensorflow/compiler/xla/tests/
constants_test.cc 212 HloModule module, is_scheduled=true
227 auto module = ParseAndReturnVerifiedModule(testcase).ValueOrDie(); local
229 auto result = ExecuteNoHloPasses(std::move(module), {&param});
test_utils_test.cc 54 HloModule& module = const_cast<HloModule&>( local
55 executable_status.ValueOrDie()->executable()->module());
56 TF_ASSERT_OK(MakeFakeArguments(&module).status());
60 auto module = ParseHloString( local
74 TF_ASSERT_OK(MakeFakeArguments(module.get()).status());
78 auto module = ParseHloString( local
92 MakeFakeArguments(module.get()));
106 auto module = ParseHloString( local
123 MakeFakeArguments(module.get()));
138 auto module = ParseHloString(R" local
169 auto module = ParseHloString(R"( local
200 auto module = ParseHloString(R"( local
230 auto module = ParseHloString(R"( local
258 auto module = ParseHloString(R"( local
292 auto module = ParseHloString(R"( local
    [all...]
  /external/tensorflow/tensorflow/core/platform/windows/
env_time.cc 37 HMODULE module = GetModuleHandleW(L"kernel32.dll"); local
38 if (module != NULL) {
40 module, "GetSystemTimePreciseAsFileTime");
  /external/webrtc/webrtc/modules/utility/source/
process_thread_impl_unittest.cc 15 #include "webrtc/modules/include/module.h"
28 class MockModule : public Module {
77 MockModule module; local
78 EXPECT_CALL(module, TimeUntilNextProcess()).WillRepeatedly(Return(0));
79 EXPECT_CALL(module, Process())
82 EXPECT_CALL(module, ProcessThreadAttached(&thread)).Times(1);
84 thread.RegisterModule(&module);
87 EXPECT_CALL(module, ProcessThreadAttached(nullptr)).Times(1);
91 // Same as ProcessCall except the module is registered before the
97 MockModule module; local
120 MockModule module; local
156 MockModule module; local
221 MockModule module; local
255 MockModule module; local
    [all...]
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
ExperimentingRunnerModuleTest.java 45 private ExperimentingRunnerModule module = new ExperimentingRunnerModule(); field in class:ExperimentingRunnerModuleTest
72 module.provideInstrumentations(options,
86 module.provideInstrumentations(options,
96 module.provideInstrumentations(options,
105 module.provideInstrumentations(options,
  /bionic/tests/libs/
Android.build.versioned_lib.mk 25 module := libtest_versioned_uselibv1 macro
38 module := libtest_versioned_uselibv2 macro
48 module := libtest_versioned_uselibv2_other macro
58 module := libtest_versioned_uselibv3_other macro
73 module := libtest_versioned_libv1 macro
86 module := libtest_versioned_libv2 macro
100 module := libtest_versioned_lib macro
110 module := libtest_versioned_otherlib_empty macro
119 module := libtest_versioned_otherlib macro
  /device/generic/goldfish-opengl/fuchsia/include/hardware/
hardware.h 29 int (*open)(const struct hw_module_t* module, const char* id,
36 struct hw_module_t* module; member in struct:hw_device_t
  /external/ImageMagick/Magick++/lib/
CoderInfo.cpp 78 _module=std::string(magickInfo->module);
140 std::string Magick::CoderInfo::module(void) const function in class:Magick::CoderInfo
  /external/ImageMagick/MagickCore/
static.c 48 #include "MagickCore/module.h"
63 ImageMagick module stub.
81 *module;
119 % o tag: the module tag.
209 % RegisterStaticModule() statically registers a module.
213 % MagickBooleanType RegisterStaticModule(const char module,
218 % o module: the want to register.
223 MagickExport MagickBooleanType RegisterStaticModule(const char *module,
242 Assign module name from alias.
244 assert(module != (const char *) NULL)
77 *module; member in struct:__anon14521
    [all...]
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
import_statement.py 115 module == 'c' (only for "from" imports)
116 name (read-only) == the name used by references to the module, which is the
117 alias if there is one, the full module path in "full" imports, and the
118 module name in "from" imports.
139 """The full dotted path of the module."""
148 """The alias, if the module is renamed with "as". None otherwise."""
157 """The name used to reference this import's module."""
247 module = self.module
248 return tuple('.'.join((module, name)) for name, _ in self.values
276 def module(self): member in class:ImportFrom
284 def module(self, value): member in class:ImportFrom
    [all...]
  /external/dagger2/compiler/src/it/functional-tests/src/test/java/test/nullables/
NullabilityTest.java 28 NullModule module = new NullModule(); local
29 NullComponent component = DaggerNullComponent.builder().nullModule(module).build();
40 module.numberValue = 1;
44 module.numberValue = null;

Completed in 385 milliseconds

1 2 3 4 56 7 8 91011>>