Home
last modified time | relevance | path

Searched refs:InnerModule (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/external/guice/core/test/com/google/inject/
H A DTypeConversionTest.java340 install(new InnerModule(converterModule)); in configure()
344 static class InnerModule extends AbstractModule { class in TypeConversionTest
347 InnerModule(Module converterModule) { in InnerModule() method in TypeConversionTest.InnerModule
376 asModuleChain(OuterModule.class, InnerModule.class), in testNullCustomValue()
381 asModuleChain(OuterModule.class, InnerModule.class, ConverterNullModule.class), in testNullCustomValue()
383 asModuleChain(OuterModule.class, InnerModule.class)); in testNullCustomValue()
404 asModuleChain(OuterModule.class, InnerModule.class), in testCustomValueTypeMismatch()
409 asModuleChain(OuterModule.class, InnerModule.class, ConverterCustomModule.class), in testCustomValueTypeMismatch()
412 asModuleChain(OuterModule.class, InnerModule.class)); in testCustomValueTypeMismatch()
/aosp_15_r20/external/pytorch/test/onnx/
H A Dtest_fx_passes.py220 class InnerModule(torch.nn.Module): class
231 self.inner_module = InnerModule()
H A Dtest_pytorch_onnx_onnxruntime.py11179 self.weights = InnerModule.get_embedding(self.embedding_dim)
11189 class InnerModule(torch.nn.Module): class
11192 self.weights = InnerModule.get_embedding(embedding_dim)
11209 self.module = InnerModule(embedding_dim=8)
11220 class InnerModule(torch.nn.Module): class
11225 self.weights = InnerModule.get_embedding(self.embedding_dim)
11239 self.weights = InnerModule.get_embedding(self.embedding_dim)
11249 self.module = InnerModule(embedding_dim=8)
/aosp_15_r20/external/pytorch/test/distributed/
H A Dtest_dynamo_distributed.py1421 class InnerModule(torch.nn.Module): class
1435 self.inner_mod1 = InnerModule()
1436 self.inner_mod2 = InnerModule()
/aosp_15_r20/external/pytorch/test/dynamo/
H A Dtest_modules.py2096 class InnerModule(torch.nn.Module): class
2104 opt_inner_mod = InnerModule()
2124 class InnerModule(torch.nn.Module): class
2132 inner_mod = InnerModule()
/aosp_15_r20/external/pytorch/torch/testing/_internal/
H A Dcommon_quantization.py1952 class InnerModule(torch.nn.Module): class
2138 self.sub = InnerModule()
2154 self.sub = QuantWrapper(InnerModule())
/aosp_15_r20/external/pytorch/test/jit/
H A Dtest_freezing.py1891 class InnerModule(torch.nn.Module): class
1902 self.option1 = InnerModule(torch.rand((2, 2)))
1903 self.option2 = InnerModule(torch.rand((2, 2)))