OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:timeout_s
(Results
1 - 2
of
2
) sorted by null
/external/tensorflow/tensorflow/core/grappler/clusters/
single_machine.cc
39
SingleMachine::SingleMachine(int
timeout_s
, int num_cpu_cores, int num_gpus)
40
: Cluster(
timeout_s
), expected_init_time_s_(0), closing_(false) {
56
if (
timeout_s
> 0) {
57
options_.config.set_operation_timeout_in_ms(
timeout_s
* 1000);
142
int64
timeout_s
= timeout_s_ + expected_init_time_s_;
local
144
RunWithTimeout({}, init_ops_, &init_metadata_,
timeout_s
));
239
int64
timeout_s
) {
253
timeout_s
* 1000, thread_pool_.get());
255
return errors::DeadlineExceeded("Failed to run the graph after ",
timeout_s
,
single_machine_test.cc
42
int
timeout_s
= 5;
variable
44
timeout_s
*= 5;
47
new SingleMachine(
timeout_s
, 3 /* num_cpu_cores */, 0 /* num_gpus */));
Completed in 97 milliseconds