Searched refs:InnerModule (Results 1 – 7 of 7) sorted by relevance
/aosp_15_r20/external/guice/core/test/com/google/inject/ |
H A D | TypeConversionTest.java | 340 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 D | test_fx_passes.py | 220 class InnerModule(torch.nn.Module): class 231 self.inner_module = InnerModule()
|
H A D | test_pytorch_onnx_onnxruntime.py | 11179 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 D | test_dynamo_distributed.py | 1421 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 D | test_modules.py | 2096 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 D | common_quantization.py | 1952 class InnerModule(torch.nn.Module): class 2138 self.sub = InnerModule() 2154 self.sub = QuantWrapper(InnerModule())
|
/aosp_15_r20/external/pytorch/test/jit/ |
H A D | test_freezing.py | 1891 class InnerModule(torch.nn.Module): class 1902 self.option1 = InnerModule(torch.rand((2, 2))) 1903 self.option2 = InnerModule(torch.rand((2, 2)))
|