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

1 2 34 5 6 7 8 91011>>

  /external/swiftshader/third_party/SPIRV-Tools/test/opt/dominator_tree/
unreachable_for_post.cpp 87 Module* module = context->module(); local
88 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
91 const Function* f = spvtest::GetFunction(module, 4);
  /external/swiftshader/third_party/SPIRV-Tools/test/opt/loop_optimizations/
fusion_illegal.cpp 135 Module* module = context->module(); local
136 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
138 Function& f = *module->begin();
254 Module* module = context->module();
255 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
257 Function& f = *module->begin()
    [all...]
loop_descriptions.cpp 95 Module* module = context->module(); local
96 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
98 const Function* f = spvtest::GetFunction(module, 2);
192 Module* module = context->module(); local
193 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
195 const Function* f = spvtest::GetFunction(module, 2)
290 Module* module = context->module(); local
366 Module* module = context->module(); local
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/test/val/
val_adjacency_test.cpp 32 const std::string module = R"( local
54 CompileSuccessfully(module);
61 const std::string module = R"( local
75 CompileSuccessfully(module);
78 HasSubstr("Missing OpFunctionEnd at end of module"));
82 const std::string module = R"( local
96 CompileSuccessfully(module);
99 HasSubstr("Missing OpFunctionEnd at end of module"));
  /external/tensorflow/tensorflow/compiler/xla/service/
buffer_liveness.h 40 // Constructs a buffer liveness object for the given module assuming the given
43 const HloModule* module, std::unique_ptr<HloOrdering> hlo_ordering);
51 // module. That is, the instruction's buffer may be included in the output of
55 // Returns the complete set of buffers that may be live out of the module.
68 const HloModule& module() const { return *module_; } function in class:xla::BufferLiveness
85 explicit BufferLiveness(const HloModule* module,
87 : module_(module), hlo_ordering_(std::move(hlo_ordering)) {}
defuser.cc 84 HloModule* module = fusion_instruction->parent()->parent(); local
87 return module->RemoveEmbeddedComputation(fused_computation);
92 StatusOr<bool> Defuser::Run(HloModule* module) {
93 VLOG(1) << "Defusing module " << module->name();
94 XLA_VLOG_LINES(2, "Before defusion:\n" + module->ToString());
97 std::unique_ptr<CallGraph> call_graph = CallGraph::Build(module);
111 XLA_VLOG_LINES(2, "After defusion:\n" + module->ToString());
elemental_ir_emitter.h 22 #include "llvm/IR/Module.h"
38 llvm::Module* module, llvm::IRBuilder<>* b)
39 : b_(b), module_(module), hlo_module_config_(hlo_module_config) {}
61 llvm::Module* module() { return module_; } function in class:xla::ElementalIrEmitter
207 llvm::Module* module_;
hlo_liveness_analysis_test.cc 37 // Run liveness analysis on the member module. For convenience returns a
39 const HloLivenessAnalysis& RunLiveness(HloModule* module) {
40 liveness_ = HloLivenessAnalysis::Run(*module).ConsumeValueOrDie();
44 HloInstruction* GetInstruction(HloModule* module, const string& name) {
46 for (auto* comp : module->computations()) {
62 auto module = ParseHloString(R"( local
70 const HloLivenessAnalysis& liveness = RunLiveness(module.get());
71 EXPECT_TRUE(liveness.IsLive(GetInstruction(module.get(), "add"), {}));
72 EXPECT_TRUE(liveness.IsLive(GetInstruction(module.get(), "constant.1"), {}));
73 EXPECT_TRUE(liveness.IsLive(GetInstruction(module.get(), "constant.2"), {}))
78 auto module = ParseHloString(R"( local
97 auto module = ParseHloString(R"( local
116 auto module = ParseHloString(R"( local
143 auto module = ParseHloString(R"( local
165 auto module = ParseHloString(R"( local
202 auto module = ParseHloString(R"( local
243 auto module = ParseHloString(R"( local
294 auto module = ParseHloString(R"( local
348 auto module = ParseHloString(R"( local
402 auto module = ParseHloString(R"( local
435 auto module = ParseHloString(R"( local
    [all...]
source_map_util.h 52 const HloModule& module = executable->module(); local
53 const HloComputation& computation = *module.entry_computation();
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
fusion_merger_test.cc 43 auto module = ParseHloString(R"( local
84 EXPECT_TRUE(FusionMerger().Run(module.get()).ValueOrDie());
86 auto* root = module->entry_computation()->root_instruction();
109 auto module = ParseHloString(R"( local
148 EXPECT_FALSE(FusionMerger().Run(module.get()).ValueOrDie());
157 auto module = ParseHloString(R"( local
194 EXPECT_TRUE(FusionMerger().Run(module.get()).ValueOrDie());
200 auto module = ParseHloString(R"( local
228 EXPECT_TRUE(FusionMerger().Run(module.get()).ValueOrDie());
229 EXPECT_THAT(module->entry_computation()->root_instruction()
234 auto module = ParseHloString(R"( local
268 auto module = ParseHloString(R"( local
    [all...]
variadic_op_splitter_test.cc 38 auto module = ParseAndReturnVerifiedModule(R"( local
47 EXPECT_FALSE(VariadicOpSplitter().Run(module.get()).ValueOrDie());
57 auto module = CreateNewVerifiedModule(); local
58 auto entry_computation = module->AddEntryComputation(builder.Build());
59 EXPECT_TRUE(VariadicOpSplitter().Run(module.get()).ValueOrDie());
72 auto module = CreateNewVerifiedModule(); local
73 auto entry_computation = module->AddEntryComputation(builder.Build());
74 EXPECT_TRUE(VariadicOpSplitter().Run(module.get()).ValueOrDie());
  /external/tensorflow/tensorflow/compiler/xla/tests/
all_reduce_test.cc 46 auto module = local
49 EXPECT_EQ(literal, ExecuteAndTransfer(std::move(module), {&literal}));
67 auto module = local
72 ExecuteAndTransfer(std::move(module), {&literal0, &literal1}));
93 auto module = local
98 ExecuteAndTransfer(std::move(module), {&literal0}));
multi_device_all_reduce_test.cc 45 auto module = ParseHloString(module_str, config).ValueOrDie(); local
49 ExecuteReplicated(std::move(module), {&literal}, 2,
  /external/tensorflow/tensorflow/compiler/xla/tools/
show_signature.cc 50 HloSnapshot module; local
52 tensorflow::ReadBinaryProto(tensorflow::Env::Default(), arg, &module));
53 auto computation = client->LoadSnapshot(module).ConsumeValueOrDie();
57 module.hlo().hlo_module().name().c_str(),
  /external/turbine/java/com/google/turbine/binder/bound/
PackageSourceBoundModule.java 27 private final ModDecl module; field in class:PackageSourceBoundModule
33 ModDecl module, ImportScope scope, MemberImportIndex memberImports, SourceFile source) {
34 this.module = module;
40 public ModDecl module() { method in class:PackageSourceBoundModule
41 return module;
  /device/generic/goldfish-opengl/
common.mk 9 # The following macros are used to start a new GLES emulation module.
21 # $(call emugl-end-module)
23 emugl-begin-static-library = $(call emugl-begin-module,$1,STATIC_LIBRARY)
24 emugl-begin-shared-library = $(call emugl-begin-module,$1,SHARED_LIBRARY)
31 emugl-begin-module = \
39 $(call _emugl-init-module,$1,$2,$3)
42 emugl-begin-module += $(eval LOCAL_VENDOR_MODULE := true)
46 emugl-begin-module += $(eval include external/stlport/libstlport.mk)
49 emugl-begin-module += $(eval LOCAL_PRELINK_MODULE := false)
52 emugl-begin-module += $(eval LOCAL_MODULE_TAGS := debug
    [all...]
json-dump.mk 29 # Dumps the module
30 dump-json-module = \
31 $(eval JSON_DUMP += , { "module" : "$(_emugl_MODULE) ")\
  /bionic/tests/libs/
Android.build.dlopen_check_order_dlsym.mk 25 module := libtest_check_order_dlsym_2_right macro
35 module := libtest_check_order_dlsym_a macro
45 module := libtest_check_order_dlsym_b macro
55 module := libtest_check_order_dlsym_3_c macro
66 module := libtest_check_order_dlsym_d macro
77 module := libtest_check_order_dlsym_1_left macro
89 module := libtest_check_order_dlsym macro
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pickle.py 21 module = pickle variable in class:PickleTests
  /external/autotest/utils/named_semaphore/
namedsem.c 102 PyObject *module; local
104 module = Py_InitModule("namedsem", NamedsemMethods);
105 PyModule_AddIntConstant(module, "SEM_FAILED", (long)SEM_FAILED);
  /external/bcc/src/cc/
bcc_syms.h 28 const char *module; member in struct:bcc_symbol
56 int bcc_symcache_resolve_name(void *resolver, const char *module,
60 int bcc_resolve_global_addr(int pid, const char *module, const uint64_t address,
63 // Call cb on every function symbol in the specified module. Uses simpler
65 // Will prefer use debug file and check debug file CRC when reading the module.
66 int bcc_foreach_function_symbol(const char *module, SYM_CB cb);
68 // Find the offset of a symbol in a module binary. If addr is not zero, will
69 // calculate the offset using the provided addr and the module's load address.
71 // If pid is provided, will use it to help lookup the module in the Process and
79 // use, sym->module need to be freed if it's not empty
    [all...]
  /external/dagger2/compiler/src/test/java/dagger/internal/codegen/
ProductionGraphValidationTest.java 45 JavaFileObject module = JavaFileObjects.forSourceLines("test.FooModule", local
60 assertAbout(javaSources()).that(Arrays.asList(module, component))
96 "import dagger.Module;",
106 " @Module",
173 "import dagger.Module;",
185 " @Module",
224 "import dagger.Module;",
236 " @Module",
  /external/deqp/external/vulkancts/scripts/
build_spirv_binaries.py 37 class Module:
43 VULKAN_MODULE = Module("dEQP-VK", "../external/vulkancts/modules/vulkan", "deqp-vk")
63 def execBuildPrograms (buildCfg, generator, module, dstPath, vulkanVersion):
65 workDir = os.path.join(buildCfg.getBuildDir(), "modules", module.dirName)
111 module = VULKAN_MODULE variable
118 execBuildPrograms(buildCfg, generator, module, args.dstPath, args.vulkanVersion)
  /external/deqp-deps/SPIRV-Tools/source/opt/
ir_loader.h 24 #include "source/opt/module.h"
34 // The user is expected to call SetModuleHeader() to fill in the module's
36 // EndModule() to finalize the module. The instructions processed in sequence
37 // by AddInstruction() should comprise a valid SPIR-V module.
40 // Instantiates a builder to construct the given |module| gradually.
44 IrLoader(const MessageConsumer& consumer, Module* m);
46 // Sets the source name of the module.
49 Module* module() const { return module_; } function in class:spvtools::opt::IrLoader
51 // Sets the fields in the module's header to the given parameters
    [all...]
  /external/deqp-deps/SPIRV-Tools/test/opt/dominator_tree/
simple.cpp 145 Module* module = context->module(); local
146 EXPECT_NE(nullptr, module) << "Assembling failed for shader:\n"
148 const Function* f = spvtest::GetFunction(module, 4);

Completed in 1420 milliseconds

1 2 34 5 6 7 8 91011>>