Home
last modified time | relevance | path

Searched refs:l2_cache_size (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/tools/test/
Dsystem_info_lib.py99 l2_cache_size = re.match(r'(\d+)', str(info.get('l2_cache_size', '')))
100 if l2_cache_size:
102 cpu_info.cache_size['L2'] = int(l2_cache_size.group(0)) * 1024
/external/tensorflow/tensorflow/python/grappler/
Dgraph_placer_test.py76 l2_cache_size=3145728,
91 l2_cache_size=262144,
/external/tensorflow/tensorflow/core/protobuf/
Ddevice_properties.proto42 int64 l2_cache_size = 9; field
/external/tensorflow/tensorflow/compiler/tf2tensorrt/convert/
Dtrt_optimization_pass.cc120 LOG(INFO) << offset3 << "L2 cache size = " << dt.l2_cache_size(); in PrintDebugInfo()
/external/tensorflow/tensorflow/core/kernels/
Dconv_grad_input_ops.cc400 const size_t l2_cache_size = 256LL << 10; in Compute() local
422 const size_t min_thread_work_unit_size = l2_cache_size / sizeof(T); in Compute()