Home | History | Annotate | Download | only in bench

Lines Matching refs:cache_id

58     int cache_id = 0;
62 EIGEN_CPUID(abcd,0x4,cache_id);
71 cout << "cache[" << cache_id << "].type = " << cache_type << "\n";
72 cout << "cache[" << cache_id << "].level = " << cache_level << "\n";
73 cout << "cache[" << cache_id << "].ways = " << ways << "\n";
74 cout << "cache[" << cache_id << "].partitions = " << partitions << "\n";
75 cout << "cache[" << cache_id << "].line_size = " << line_size << "\n";
76 cout << "cache[" << cache_id << "].sets = " << sets << "\n";
77 cout << "cache[" << cache_id << "].size = " << cache_size << "\n";
79 cache_id++;
80 } while(cache_type>0 && cache_id<16);