/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/tools/run_tests/xds_k8s_test_driver/framework/rpc/ |
D | grpc_testing.py | 45 log_target: Optional[str] = ''): 48 log_target=log_target) 89 log_target: Optional[str] = ''): 92 log_target=log_target) 127 def __init__(self, channel: grpc.Channel, log_target: Optional[str] = ''): 130 log_target=log_target) 146 def __init__(self, channel: grpc.Channel, log_target: Optional[str] = ''): 149 log_target=log_target)
|
D | grpc.py | 37 log_target: str 43 log_target: Optional[str] = ''): 48 self.log_target = log_target or '' 69 '[%s] RPC %s.%s(request=%s(%r), %s)', self.log_target,
|
D | grpc_csds.py | 50 log_target: Optional[str] = ''): 53 log_target=log_target)
|
D | grpc_channelz.py | 63 log_target: Optional[str] = ''): 66 log_target=log_target)
|
/aosp_15_r20/system/logging/logwrapper/ |
H A D | logwrap.cpp | 95 int log_target; member 158 if (log_info->log_target & LOG_KLOG) { in do_log_line() 161 if (log_info->log_target & LOG_ALOG) { in do_log_line() 328 static int parent(const char* tag, int parent_read, pid_t pid, int* chld_sts, int log_target, in parent() argument 359 if (abbreviated && (log_target == LOG_NONE)) { in parent() 366 if (log_target & LOG_KLOG) { in parent() 371 if ((log_target & LOG_FILE) && !file_path) { in parent() 373 log_target &= ~LOG_FILE; in parent() 376 if (log_target & LOG_FILE) { in parent() 380 log_target &= ~LOG_FILE; in parent() [all …]
|
H A D | logwrapper.cpp | 51 int log_target = LOG_ALOG; in main() local 66 log_target = LOG_KLOG; in main() 81 rc = logwrap_fork_execvp(argc, &argv[0], &status, true, log_target, abbreviated, nullptr); in main()
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/tools/run_tests/xds_k8s_test_driver/framework/test_app/ |
D | client_app.py | 70 log_target=f'{self.hostname}:{self.rpc_port}') 77 log_target=f'{self.hostname}:{self.rpc_port}') 84 log_target=f'{self.hostname}:{self.maintenance_port}') 91 log_target=f'{self.hostname}:{self.maintenance_port}')
|
D | server_app.py | 66 log_target=f'{self.hostname}:{self.maintenance_port}') 73 log_target=f'{self.hostname}:{self.maintenance_port}') 80 log_target=f'{self.hostname}:{self.maintenance_port}')
|
/aosp_15_r20/external/pytorch/torch/nn/modules/ |
H A D | loss.py | 535 log_target: bool = False, 538 self.log_target = log_target 542 input, target, reduction=self.reduction, log_target=self.log_target
|
/aosp_15_r20/external/pytorch/torch/csrc/api/include/torch/nn/functional/ |
H A D | loss.h | 49 bool log_target = false) { 67 auto reduced = torch::kl_div(input, target, reduction_enum, log_target); 97 input, target, options.reduction(), options.log_target());
|
/aosp_15_r20/device/google/cuttlefish/host/commands/assemble_cvd/ |
D | assemble_cvd.cc | 138 auto log_target = "logs/" + log_file; // Relative path in CreateLegacySymlinks() local 143 if (symlink(log_target.c_str(), symlink_location.c_str()) != 0) { in CreateLegacySymlinks() 144 return CF_ERRNO("symlink(\"" << log_target << ", " << symlink_location in CreateLegacySymlinks()
|
/aosp_15_r20/system/logging/logwrapper/include/logwrap/ |
H A D | logwrap.h | 61 int log_target, bool abbreviated, const char* file_path);
|
/aosp_15_r20/external/pytorch/aten/src/ATen/native/ |
H A D | Loss.cpp | 238 Tensor kl_div(const Tensor& input, const Tensor& target, int64_t reduction, bool log_target) { in kl_div() argument 245 if (log_target) { in kl_div()
|
/aosp_15_r20/external/pytorch/torch/csrc/api/include/torch/nn/options/ |
H A D | loss.h | 71 TORCH_ARG(bool, log_target) = false;
|
/aosp_15_r20/external/pytorch/torch/nn/ |
H A D | functional.py | 3312 log_target: bool = False, 3363 log_target=log_target, 3381 reduced = torch.kl_div(input, target, reduction_enum, log_target=log_target)
|
H A D | functional.pyi.in | 367 log_target: bool = ...,
|
/aosp_15_r20/external/pytorch/torch/csrc/api/src/nn/modules/ |
H A D | loss.cpp | 33 input, target, options.reduction(), options.log_target()); in forward()
|
/aosp_15_r20/external/pytorch/torch/testing/_internal/ |
H A D | common_nn.py | 366 lambda i: F.kl_div(i, t.type_as(i), reduction='none', log_target=True)), 382 lambda i: F.kl_div(i, t.type_as(i), reduction='none', log_target=True)), 399 lambda i: F.kl_div(i, t.type_as(i), reduction='none', log_target=True)), 2713 def kldivloss_reference(input, target, reduction='mean', log_target=False): argument 2714 if log_target: 3059 'KLDivLoss_log_target': partial(kldivloss_reference, log_target=True),
|
H A D | common_methods_invocations.py | 9112 for shape, reduction, log_target in product(shapes, reductions, (True, False)): 9114 target = make_log(shape) if log_target else make_prob(shape) 9115 … yield SampleInput(input, args=(target,), kwargs=dict(reduction=reduction, log_target=log_target))
|
/aosp_15_r20/external/pytorch/torch/ |
H A D | overrides.py | 718 …_div: lambda input, target, size_average=None, reduce=None, reduction="mean", log_target=False: -1, 903 …ambda input, target, size_average=None, reduce=None, reduction="mean", log_target=False: -1, # no…
|
/aosp_15_r20/external/pytorch/torch/onnx/ |
H A D | symbolic_opset9.py | 5863 def kl_div(g: jit_utils.GraphContext, input, target, reduction, log_target): argument 5864 if log_target:
|
/aosp_15_r20/external/pytorch/test/onnx/ |
H A D | test_pytorch_onnx_onnxruntime.py | 9086 self.loss = torch.nn.KLDivLoss(reduction="none", log_target=True) 9096 self.loss = torch.nn.KLDivLoss(reduction="mean", log_target=False) 9106 self.loss = torch.nn.KLDivLoss(reduction="sum", log_target=True) 9116 self.loss = torch.nn.KLDivLoss(reduction="batchmean", log_target=False) 9127 reduction="batchmean", size_average=False, log_target=True
|
/aosp_15_r20/external/pytorch/test/ |
H A D | test_nn.py | 2627 loss = nn.KLDivLoss(reduction='batchmean', log_target=True) 2630 loss_none_reduce = nn.KLDivLoss(reduction='sum', log_target=True)(log_prob1, log_prob2) 5168 expected = torch.nn.functional.kl_div(input, target, log_target=True) 5175 result = torch.nn.functional.kl_div(input, target, log_target=True) 5183 … F.kl_div(F.log_softmax(a, 1), F.log_softmax(b, 1), reduction='none', log_target=True),
|
/aosp_15_r20/external/pytorch/test/cpp/lazy/ |
H A D | test_lazy_ops.cpp | 2474 for (bool log_target : {true, false}) { in TEST_F() 2479 torch::kl_div(input, target, reduction, log_target); in TEST_F() 2483 torch::kl_div(lazy_input, lazy_target, reduction, log_target); in TEST_F()
|