File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -109,6 +109,6 @@ cc_test(cow_ptr_tests SRCS details/cow_ptr_test.cc)
109
109
110
110
# cc_test(channel_test SRCS channel_test.cc)
111
111
cc_test (tuple_test SRCS tuple_test.cc )
112
- cc_test (concurrency_test SRCS concurrency_test.cc DEPS go_op channel_close_op channel_create_op
113
- channel_send_op channel_recv_op sum_op select_op elementwise_add_op compare_op
114
- conditional_block_op while_op assign_op print_op executor proto_desc )
112
+ # cc_test(concurrency_test SRCS concurrency_test.cc DEPS go_op channel_close_op channel_create_op
113
+ # channel_send_op channel_recv_op sum_op select_op elementwise_add_op compare_op
114
+ # conditional_block_op while_op assign_op print_op executor proto_desc)
Original file line number Diff line number Diff line change @@ -59,9 +59,10 @@ inline size_t CpuTotalPhysicalMemory() {
59
59
size_t CpuMaxAllocSize () {
60
60
// For distributed systems, it requires configuring and limiting
61
61
// the fraction of memory to use.
62
- return std::min (static_cast <size_t >(FLAGS_fraction_of_cpu_memory_to_use *
63
- CpuTotalPhysicalMemory ()),
64
- FLAGS_initial_cpu_memory_in_mb * 1 << 20 );
62
+ return std::min (
63
+ static_cast <size_t >(FLAGS_fraction_of_cpu_memory_to_use *
64
+ CpuTotalPhysicalMemory ()),
65
+ static_cast <size_t >(FLAGS_initial_cpu_memory_in_mb * 1 << 20 ));
65
66
}
66
67
67
68
size_t CpuMinChunkSize () {
You can’t perform that action at this time.
0 commit comments