SlideShare a Scribd company logo
1 of 78
1
University of Texas at Dallas
Department of Electrical Engineering
EEDG 6304 – Computer Architecture
Project #1
“CACHE DESIGN”
Team Members
Bharat Biyani (2021152193)
Shree Viswa Shamanthan L D (2021180127)
2
TABLE OF CONTENTS
Sr. No. Description Page No.
1 INTRODUCTION 3
2 SIMULATION APPROACH 4
3 CPI FORMULAE 4
4 PART 2: FIND CPI 5
5 PART 3: OPTIMIZE CPI FOR EACH BENCHMARK 7
6 PART 4: DEFINE COST FUNCTION 10
7
PART 5: OPTIMIZE CACHE FOR PERFORMANCE/
COST
11
8 CONCLUSION 14
9 APPENDIX 15
3
1. INTRODUCTION
Caches are used by the central processing unit (CPU) of a computer to reduce the
average time to access memory. The cache is a smaller, faster memory which stores copies of
the data from frequently used main memory locations. Hence Caches form the integral part of a
microprocessor design. Any cache design is proven to the industry/customers through their
benchmarks. The main aim of this project is to analyze the cache performance of an Alpha
microprocessor for 3 individual benchmarks (GCC, Anagram Alpha and Go) with following
design constraints.
The cache design parameters that can be tuned in our example are
 Cache Levels: One or two levels, for data and instruction caches
 Unified caches: Selection of separate vs. unified instruction/data caches
 Size: Cache size is the most important factor to avoid capacity misses.
 Block size: Block size of the cache, usually 64 or 32 bytes.
 Block replacement policy: Selection between FIFO, LRU and Random.
 Associativity: Selection of cache associativity (e.g. direct mapped (1-way set
associative), 2-way set associative, etc.)
While larger caches generally mean better performance, they also come at a greater cost.
Thus, sensible design choices and trade-offs are required. So we are going to use the cost
function to identify the optimal configuration.
4
2. SIMULATION APPROACH
Three benchmarks (GCC, Anagram and Go) were selected and run on the Simplesim3.0
simulation tool. Multiple techniques are applied to achieve the optimal configuration. The
following steps were carried out in order to determine the optimal configuration:
1. Select a particular benchmark.
2. Select one cache structure combination from these 3 cases for each benchmark
 L1 Separate - L2 Separate
 L1 Separate - L2 Unified
 L1 Unified - L2 Unified
Where L1 and L2 are Levels of Cache.
3. For each cache structural combination; vary the page replacement policy iteratively
(LRU, FIFO and Random)
4. For each cache structural combination and page replacement policy; vary the block size
values iteratively (32Kb, 64Kb)
5. For each cache structural combination, page replacement policy and block size; vary
associativity iteratively (1, 2, 4, 8)
6. Calculate the CPI for each setting (shown below)
7. Repeat steps 1 to 6 for all possible combination of configurations.
8. Calculate the cost for each cache configuration using the cost function (shown on page
no. 10).
9. Compare the results and annotate graphically Optimal cache configuration for each
benchmark, as well as all benchmarks combined is selected with the help of the defined
cost function.
3. CPI FORMULAE
3.1. L1 separate and L2 separate
CPI = CPI ideal + 6 * ( L1InsMissRate * %L1Ins + L1DataMissRate * %L1Data) + 50 * (
L2InsMissRate * %L2Ins + L2DataMissRate * %L2Data )
3.2. L1 separate and L2 unified
CPI = CPI ideal + 6 * ( L1InsMissRate * %L1Ins + L1DataMissRate * %L1Data) + 50 * ( L2MissRate
* %L2Data ) )
3.3. L1 unified and L2 unified
CPI = CPI ideal + 6 * ( L1MissRate * ( %L1Data) ) + 50 * ( L2InsMissRate * ( %L2Data ) ) )
Where,
%LxIns = Instruction Accesses for Lx /Total Memory Accesses
%LxData = Data Accesses for Lx /Total Memory Accesses
5
4. PART 2: FIND CPI
In this part, the CPI for the 3 individual benchmarks was calculated. Our baseline configuration
will be the Alpha 21264 EV6 configuration:
 Cache Levels: Two Levels.
 Unified caches: Separate L1 data and Instruction cache, unified L2 cache.
 Size: 64KB Separate L1 data and instruction caches, 1MB unified L2 cache.
 Block size: 64 bytes
 Block replacement policy: FIFO
 Associativity: 2- way set associative L1 cache, Direct-mapped L2 cache.
-------------------------------------------------------------------------------------------------------------------------------
4.1. GCC Benchmark
Total Memory Accesses = 337327101
Number of L1 Instruction cache accesses = 337327101
Number of L1Data cache access = 124102799
Number of L2 access = 3330118
L1 Ins miss rate = 0.0047, L1 Data miss rate = 0.0106, L2 miss rate = 0.1311
CPI = CPI ideal + 6 * ( L1InsMissRate * %L1Ins + L1DataMissRate * %L1Data) + 50 * ( L2MissRate
* %L2Data ) )
CPI = 1 + 6 * (0.0047 * (337327101/337327101) + 0.0106 * (124102799/337327101)) + 50 *
(0.1311 * (3330118/337327101)))
CPI = 1.11631
----------------------------------------------------------------------------------------------------------------------------
4.2. Anagram Benchmark
Total Memory Accesses = 25724898
Number of L1 Instruction cache accesses = 25724898
Number of L1Data cache access = 11182060
Number of L2 access = 92401
L1 Ins miss rate = 0, L1 Data miss rate = 0.0048, L2 miss rate = 0.3191
6
CPI = 1 + 6 * (0 * (25724898/25724898) + 0.0048 * (11182060/25724898)) + 50 * (0.3191 *
(92401/25724898)))
CPI = CPI ideal + 6 * (L1InsMissRate * %Ins + L1DataMissRate * %Data) + 50 * (L2MissRate *
%Data))
CPI = 1.06983
----------------------------------------------------------------------------------------------------------------------------
4.3. GO Benchmark
Total Memory Accesses = 545823664
Number of L1 Instruction cache accesses = 545823664
Number of L1Data cache access = 213791111
Number of L2 access = 1021478
L1 Ins miss rate = 0.0013, L1 Data miss rate = 0.0010, L2 miss rate = 0.0907
CPI = CPI ideal + 6 * (L1InsMissRate * %Ins + L1DataMissRate * %Data) + 50 * (L2MissRate *
%Data))
CPI = 1 + 6 * (0.0013 * (545823664/545823664) + 0.0010 * (213791111/545823664)) + 50 *
(0.0907 * (1021478/545823664)))
CPI = 1.01864
CONCLUSION FOR PART 2:
Sr. No. Benchmark CPI
1 GCC 1.11631
2 Anagram 1.06983
3 GO 1.01864
7
5. PART 3: OPTIMIZE CPI FOR EACH BENCHMARK
Given a two-level cache hierarchy, 128KB available for L1 cache and 1MB available for L2 cache,
in order to find the optimal configuration (in terms of achieved CPI) for each benchmark,
Decision must be made between unified/separate caches, associativity, replacement policy etc.
5.1. Assumptions
1. Both L1 and L2 use the same block size (e.g. if L1 cache uses 32KB, L2 cache also uses
32KB). We have considered only 32KB and 64KB block sizes for both L1 and L2 in order
to find the optimal configuration. Having higher block size would decrease the number
of lines in the cache and increases the miss penalty.
2. L1 block size cannot be larger than L2 block size.
3. Associativity values range from 1, 2, 4 and 8. Design does not consider associativity
more than 8 because they have much higher cost for a very little performance
improvement in reality. Directly mapped design (1-way associative) is also taken into
consideration even though it gives poor performance, but it will help in analyzing the
design better.
4. While optimizing, only three replacement policies are considered Random, FIFO (First
IN First OUT) and LRU (Least Recently Used).
The below graphs show the CPI plotted against various configuration for L1 Separate-L2
separate, L1 Separate L2 unified, and L1 & L2 unified for all three benchmarks
5.2. GCC Benchmark
0.95
1
1.05
1.1
1.15
1.2
1.25
1.3
2048:32:2:f--16384:32:2:f
2048:32:2:f--8192:32:4:f
2048:32:2:l--4096:32:8:f
2048:32:2:r--…
2048:64:1:f--16384:64:1:f
2048:64:1:f--8192:64:2:f
2048:64:1:l--4096:64:4:f
2048:64:1:r--2048:64:8:f
256:64:8:f--16384:64:1:f
256:64:8:f--8192:64:2:f
256:64:8:l--4096:64:4:f
256:64:8:r--2048:64:8:f
4096:32:1:f--16384:32:2:f
4096:32:1:f--8192:32:4:f
4096:32:1:l--4096:32:8:f
4096:32:1:r--…
512:32:8:f--16384:32:2:f
512:32:8:f--8192:32:4:f
512:32:8:l--4096:32:8:f
512:32:8:r--32768:32:1:f
512:64:4:f--16384:64:1:f
512:64:4:f--8192:64:2:f
512:64:4:l--4096:64:4:f
512:64:4:r--2048:64:8:f
1024:32:4:f--16384:32:2:f
1024:32:4:f--8192:32:4:f
1024:32:4:l--4096:32:8:f
1024:32:4:r--…
1024:64:2:f--16384:64:1:f
1024:64:2:f--8192:64:2:f
1024:64:2:l--4096:64:4:f
1024:64:2:r--2048:64:8:f
L1L2unified
L1sepL2unified
L1sepL2sep
8
5.3. Anagram Benchmark
5.4. GO Benchmark
1
1.05
1.1
1.15
1.2
1.25
2048:32:2:f--16384:32:2:f
2048:32:2:f--8192:32:4:f
2048:32:2:l--4096:32:8:f
2048:32:2:r--32768:32:1:f
2048:64:1:f--16384:64:1:f
2048:64:1:f--8192:64:2:f
2048:64:1:l--4096:64:4:f
2048:64:1:r--2048:64:8:f
256:64:8:f--16384:64:1:f
256:64:8:f--8192:64:2:f
256:64:8:l--4096:64:4:f
256:64:8:r--2048:64:8:f
4096:32:1:f--16384:32:2:f
4096:32:1:f--8192:32:4:f
4096:32:1:l--4096:32:8:f
4096:32:1:r--32768:32:1:f
512:32:8:f--16384:32:2:f
512:32:8:f--8192:32:4:f
512:32:8:l--4096:32:8:f
512:32:8:r--32768:32:1:f
512:64:4:f--16384:64:1:f
512:64:4:f--8192:64:2:f
512:64:4:l--4096:64:4:f
512:64:4:r--2048:64:8:f
1024:32:4:f--16384:32:2:f
1024:32:4:f--8192:32:4:f
1024:32:4:l--4096:32:8:f
1024:32:4:r--32768:32:1:f
1024:64:2:f--16384:64:1:f
1024:64:2:f--8192:64:2:f
1024:64:2:l--4096:64:4:f
1024:64:2:r--2048:64:8:f
L1L2unified
L1sepL2unified
L1sepL2sep
0.9
0.95
1
1.05
1.1
1.15
1.2
2048:32:2:f--16384:32:2:f
2048:32:2:f--8192:32:4:f
2048:32:2:l--4096:32:8:f
2048:32:2:r--32768:32:1:f
2048:64:1:f--16384:64:1:f
2048:64:1:f--8192:64:2:f
2048:64:1:l--4096:64:4:f
2048:64:1:r--2048:64:8:f
256:64:8:f--16384:64:1:f
256:64:8:f--8192:64:2:f
256:64:8:l--4096:64:4:f
256:64:8:r--2048:64:8:f
4096:32:1:f--16384:32:2:f
4096:32:1:f--8192:32:4:f
4096:32:1:l--4096:32:8:f
4096:32:1:r--32768:32:1:f
512:32:8:f--16384:32:2:f
512:32:8:f--8192:32:4:f
512:32:8:l--4096:32:8:f
512:32:8:r--32768:32:1:f
512:64:4:f--16384:64:1:f
512:64:4:f--8192:64:2:f
512:64:4:l--4096:64:4:f
512:64:4:r--2048:64:8:f
1024:32:4:f--16384:32:2:f
1024:32:4:f--8192:32:4:f
1024:32:4:l--4096:32:8:f
1024:32:4:r--32768:32:1:f
1024:64:2:f--16384:64:1:f
1024:64:2:f--8192:64:2:f
1024:64:2:l--4096:64:4:f
1024:64:2:r--2048:64:8:f
L1L2unified
L1sepL2unified
L1sepL2sep
9
CONCLUSION FOR PART 3:
The graphs plotted above helps us to decide the design choices. Optimum CPI in each case is as
follows:
Sr. No. Benchmark Configuration Block Size (In
Bytes)
Replacement
Policy Associativity
Optimal CPI
L1 L2 L1 L2 L1 L2
1 GCC L1L2unified 64 64 LRU LRU 8 8 1.05296841
L1sepL2unified 64 64 LRU LRU 8 8 1.059915236
L1sepL2sep 64 64 LRU LRU 8 1 1.061853108
2 Anagram L1L2unified 64 64 LRU FIFO 4 1 1.07084492
L1sepL2unified 64 64 LRU FIFO 4 1 1.069724523
L1sepL2sep 64 64 FIFO FIFO 4 1 1.093832533
3 Go L1L2unified 64 64 Random LRU 8 4 1.011049037
L1sepL2unified 64 64 Random FIFO 8 2 1.012941826
L1sepL2sep 64 64 LRU Random 4 8 1.013631953
Row highlighted in green is the optimal CPI configuration for the corresponding Benchmark.
Hence, the Best Configuration for each benchmark from the above table is shown below:
-------------------------------------------------------------------------------------------------------------------------------
GO Benchmark
L1 unified 64 bytes block size, 8 way set associative and Random replacement Policy
L2 unified 64 bytes block size, 4 way set associative and LRU replacement Policy
CPI Optimum = 1.01105
-------------------------------------------------------------------------------------------------------------------------------
ANAGRAM Benchmark
L1 separate 64 bytes block size, 4-way set associative and LRU replacement policy
L2 unified 64 bytes block size, 1-way set associative and FIFO replacement policy
CPI Optimum = 1.06972
-------------------------------------------------------------------------------------------------------------------------------
GCC Benchmark:
L1 unified 64 bytes block size, 8-way set associative and LRU replacement Policy
L2 unified 64 bytes block size, 8-way set associative and LRU replacement Policy.
CPI Optimum = 1.05297
-------------------------------------------------------------------------------------------------------------------------------
10
6. PART 4: DEFINE COST FUNCTION
Cost function plays a major role in determining parameters that give least CPI. So we need to
define a cost function, which assists architect to design a cost efficient, and performance
effective Cache. It refrains us from choosing whatever design giving the least CPI.
The cost function can be defined as below.
Cost Function = 0.35*(L1 cache size) + 0.25* (L2 Cache size)+ 0.075* (L1 associativity) + 0.075*
(L2 associativity)+ 0.15 *(Unified/Separate)+ 0.05*(L1 policy)+0.05*(L2 policy)+ 0*(block size)
Explanation of the cost function can be found in the below table.
We normalized the cost function in such a way that the total cost will not exceed 100 units. For
a given cost of a configuration say 85%, if the L1Cache Size doubles, the new cost function will
become 120%. So assumed cost function is reasonable.
Cost Function Weight Overall Weight Comment
L1 Cache Size 0.35
64KB: 50 units
128KB: 100 units
If cache size doubles, cost also doubles
L2 Cache Size 0.25
512KB: 100 units
1MB: 200 units
If cache size doubles, cost also doubles
L1 Associativity 0.075
1: 2 units
2: 4 units
4: 8 units
8: 16 units
Increasing associativity increases number
of comparators on hardware, which in turn
increases cost.
L2 Associativity 0.075
1: 2 units
2: 4 units
4: 8 units
8: 16 units
Increasing associativity increases number
of comparators on hardware, which in turn
increases cost.
Unified/Separate 0.15
L1 Separate-L2 Separate: 1.5 units
L1 Separate - L2 Unified: 0.5 units
L1 Unified - L2 Unified: 0 units
Separate data and instruction cache will
involve some additional hardware cost
compared to unified
L1 Policy 0.05
LRU: 0.1 units
FIFO: 0.05 units
Random: 0 units
For Random, no extra hardware required.
For FIFO to LRU, cost should increase by
5%.
L2 Policy 0.05
LRU: 0.1 units
FIFO: 0.05 units
Random: 0 units
For Random, no extra hardware required.
For FIFO to LRU, cost should increase by
5%.
Block Size 0
32 Bytes: 0 units
64 Bytes: 0 units
With respect to hardware there will not be
any additional cost for change in block size.
11
7. PART 5: OPTIMIZE CACHE FOR PERFORMANCE/ COST
To find the optimal configuration, the cache configuration such as associativity, Replacement
policy and cache type is considered along with the cost. A plot of Cache configuration for each
benchmark is plotted against the product of the CPI and cost. The configuration, which gives
the lowest value among all in the graph, is considered as the optimal configuration.
7.1. GCC Benchmark
80
85
90
95
100
105
110
2048:32:2:f--16384:32:1:f
2048:32:2:f--8192:32:2:f
2048:32:2:l--4096:32:4:f
2048:32:2:r--2048:32:8:f
2048:64:1:f--1024:64:8:f
2048:64:1:f--8192:64:1:f
2048:64:1:l--4096:64:2:f
2048:64:1:r--2048:64:4:f
256:64:8:f--1024:64:8:f
256:64:8:f--8192:64:1:f
256:64:8:l--4096:64:2:f
256:64:8:r--2048:64:4:f
4096:32:1:f--16384:32:1:f
4096:32:1:f--8192:32:2:f
4096:32:1:l--4096:32:4:f
4096:32:1:r--2048:32:8:f
512:32:8:f--16384:32:1:f
512:32:8:f--8192:32:2:f
512:32:8:l--4096:32:4:f
512:32:8:r--2048:32:8:f
512:64:4:f--1024:64:8:f
512:64:4:f--8192:64:1:f
512:64:4:l--4096:64:2:f
512:64:4:r--2048:64:4:f
1024:32:4:f--16384:32:1:f
1024:32:4:f--8192:32:2:f
1024:32:4:l--4096:32:4:f
1024:32:4:r--2048:32:8:f
1024:64:2:f--1024:64:8:f
1024:64:2:f--8192:64:1:f
1024:64:2:l--4096:64:2:f
1024:64:2:r--2048:64:4:f
L1L2unified
L1sepL2unified
L1sepL2sep
12
7.2. Anagram Benchmark
7.3. GO Benchmark
80
85
90
95
100
105
110
2048:32:2:f--16384:32:2:f
2048:32:2:f--8192:32:4:f
2048:32:2:l--4096:32:8:f
2048:32:2:r--32768:32:1:f
2048:64:1:f--16384:64:1:f
2048:64:1:f--8192:64:2:f
2048:64:1:l--4096:64:4:f
2048:64:1:r--2048:64:8:f
256:64:8:f--16384:64:1:f
256:64:8:f--8192:64:2:f
256:64:8:l--4096:64:4:f
256:64:8:r--2048:64:8:f
4096:32:1:f--16384:32:2:f
4096:32:1:f--8192:32:4:f
4096:32:1:l--4096:32:8:f
4096:32:1:r--32768:32:1:f
512:32:8:f--16384:32:2:f
512:32:8:f--8192:32:4:f
512:32:8:l--4096:32:8:f
512:32:8:r--32768:32:1:f
512:64:4:f--16384:64:1:f
512:64:4:f--8192:64:2:f
512:64:4:l--4096:64:4:f
512:64:4:r--2048:64:8:f
1024:32:4:f--16384:32:2:f
1024:32:4:f--8192:32:4:f
1024:32:4:l--4096:32:8:f
1024:32:4:r--32768:32:1:f
1024:64:2:f--16384:64:1:f
1024:64:2:f--8192:64:2:f
1024:64:2:l--4096:64:4:f
1024:64:2:r--2048:64:8:f
L1L2unified
L1sepL2unified
L1sepL2sep
80
82
84
86
88
90
92
94
96
98
100
2048:32:2:f--16384:32:2:f
2048:32:2:f--8192:32:4:f
2048:32:2:l--4096:32:8:f
2048:32:2:r--32768:32:1:f
2048:64:1:f--16384:64:1:f
2048:64:1:f--8192:64:2:f
2048:64:1:l--4096:64:4:f
2048:64:1:r--2048:64:8:f
256:64:8:f--16384:64:1:f
256:64:8:f--8192:64:2:f
256:64:8:l--4096:64:4:f
256:64:8:r--2048:64:8:f
4096:32:1:f--16384:32:2:f
4096:32:1:f--8192:32:4:f
4096:32:1:l--4096:32:8:f
4096:32:1:r--32768:32:1:f
512:32:8:f--16384:32:2:f
512:32:8:f--8192:32:4:f
512:32:8:l--4096:32:8:f
512:32:8:r--32768:32:1:f
512:64:4:f--16384:64:1:f
512:64:4:f--8192:64:2:f
512:64:4:l--4096:64:4:f
512:64:4:r--2048:64:8:f
1024:32:4:f--16384:32:2:f
1024:32:4:f--8192:32:4:f
1024:32:4:l--4096:32:8:f
1024:32:4:r--32768:32:1:f
1024:64:2:f--16384:64:1:f
1024:64:2:f--8192:64:2:f
1024:64:2:l--4096:64:4:f
1024:64:2:r--2048:64:8:f
L1L2unified
L1sepL2unified
L1sepL2sep
13
Hence, from the graph above the optimum configuration would be as follows for all the 3
benchmarks-
Row highlighted in green is the optimal CPI configuration for the corresponding benchmark. Hence, the
optimum configuration considering all three benchmark together with different specification
constraints, Cost and CPI would be –
-----------------------------------------------------------------------------------------------------------------------------------
Benchmark: GO
Cache Levels: L1 and L2
Configuration: L1 separate and L2 unified
Block size: 64 Bytes for L1 and 64 Bytes for L2
Block replacement policy: LRU for L1 and FIFO for L2
Associativity: 2-way associative for L1 and 2-way associative for L2
------------------------------------------------------------------------------------------------------------------------------------
Sr.
No.
Benchmark Configuration Block Size (in
Bytes)
Replacement
Policy Associativity
Optimal
Configuration
L1 L2 L1 L2 L1 L2 (CPI*Cost)
1 GCC L1L2unified 64 64 LRU LRU 4 2 91.53571716
L1sepL2unified 64 64 LRU LRU 4 2 92.14588838
L1sepL2sep 64 64 LRU LRU 4 4 92.65215522
2 Anagram L1L2unified 64 64 LRU Random 2 1 91.51083284
L1sepL2unified 64 64 LRU Random 2 1 91.49413323
L1sepL2sep 64 64 LRU Random 4 2 93.74364974
3 Go L1L2unified 64 64 LRU FIFO 4 2 86.86445493
L1sepL2unified 64 64 LRU FIFO 2 2 86.83958025
L1sepL2sep 64 64 LRU Random 2 2 86.98242473
14
8. CONCLUSION
Thus, the best possible configuration and its cost function have been computed by
modifying various parameters such as cache type, associativity and replacement policies.
8.1 Optimal CPI
CPI is minimum mostly for LRU and High Associativity and Block size. It’s due to the
following real reasons.
 High Associativity: This will help to reduce the conflict misses
 High Block Size: It takes the advantage for spatial locality.
 LRU: It's the best page replacement policy, as it keeps track for the least frequent use of
any block need to be replaced.
8.2 Optimal CPI v/s Cost.
Here we have observed that high cost cache architectures have optimal values of CPI
but the % change of CPI to the % change in cost function is not good.
Usually defining the cost function plays a very crucial role such that it should not be very
large that CPI wont affect the optimization, at the same time it should not be so small that it
doesn’t affect the optimization. Usually a configuration involves with FIFO as replacement
policy, 2-way associativity or 4 – way associativity and L1 separate and L2 unified should give us
the optimum performance design because cost and CPI with such configuration doesn’t have
very high as well as very small value. So their product (CPI * Cost) will be minimum.
15
9. APPENDIX
Below table shows all the combination values (Replacement policy [l – LRU, f- FIFO, r -random],
Associativity [1, 2, 4, 8], Block Size [32 bytes, 64 bytes], Cost, CPI, Optimal Value (CPI*Cost),
Configuration [L1 unified L2 unified, L1 separate L2 unified, L1 separate L2 separate]) for all the
3 benchmarks (GCC, Anagram, GO) from which we plotted all our above corresponding graphs.
Sr
No. L1 L2 Benchmark Configuration CPI Cost CPI*Cost
1 1024:32:4:f 16384:32:2:f GCC L1L2unified 1.112259099 85.905 95.54861792
2 1024:32:4:f 16384:32:2:l GCC L1L2unified 1.108064778 85.9075 95.19107492
3 1024:32:4:f 16384:32:2:r GCC L1L2unified 1.115354908 85.9025 95.81177496
4 1024:32:4:f 32768:32:1:f GCC L1L2unified 1.149159139 85.755 98.54614197
5 1024:32:4:f 32768:32:1:l GCC L1L2unified 1.149159139 85.7575 98.54901486
6 1024:32:4:f 32768:32:1:r GCC L1L2unified 1.149159139 85.7525 98.54326907
7 1024:32:4:f 4096:32:8:f GCC L1L2unified 1.098028367 86.805 95.31435237
8 1024:32:4:f 4096:32:8:l GCC L1L2unified 1.089889386 86.8075 94.6105729
9 1024:32:4:f 4096:32:8:r GCC L1L2unified 1.103470998 86.8025 95.78404128
10 1024:32:4:f 8192:32:4:f GCC L1L2unified 1.103570863 86.205 95.1333262
11 1024:32:4:f 8192:32:4:l GCC L1L2unified 1.096680192 86.2075 94.54205765
12 1024:32:4:f 8192:32:4:r GCC L1L2unified 1.107515522 86.2025 95.47060676
13 1024:32:4:l 16384:32:2:f GCC L1L2unified 1.104782958 85.9075 94.90914199
14 1024:32:4:l 16384:32:2:l GCC L1L2unified 1.101219231 85.91 94.60574415
15 1024:32:4:l 16384:32:2:r GCC L1L2unified 1.107260183 85.905 95.11918604
16 1024:32:4:l 32768:32:1:f GCC L1L2unified 1.136074221 85.7575 97.42688498
17 1024:32:4:l 32768:32:1:l GCC L1L2unified 1.136074221 85.76 97.42972516
18 1024:32:4:l 32768:32:1:r GCC L1L2unified 1.136074221 85.755 97.42404479
19 1024:32:4:l 4096:32:8:f GCC L1L2unified 1.091223411 86.8075 94.72637628
20 1024:32:4:l 4096:32:8:l GCC L1L2unified 1.083487516 86.81 94.05755126
21 1024:32:4:l 4096:32:8:r GCC L1L2unified 1.096351702 86.805 95.16880945
22 1024:32:4:l 8192:32:4:f GCC L1L2unified 1.096612462 86.2075 94.53621882
23 1024:32:4:l 8192:32:4:l GCC L1L2unified 1.09039767 86.21 94.0031831
24 1024:32:4:l 8192:32:4:r GCC L1L2unified 1.100350029 86.205 94.85567429
25 1024:32:4:r 16384:32:2:f GCC L1L2unified 1.11527412 85.9025 95.8048351
26 1024:32:4:r 16384:32:2:l GCC L1L2unified 1.111187786 85.905 95.45658672
27 1024:32:4:r 16384:32:2:r GCC L1L2unified 1.118367254 85.9 96.06774715
28 1024:32:4:r 32768:32:1:f GCC L1L2unified 1.149631591 85.7525 98.58378298
29 1024:32:4:r 32768:32:1:l GCC L1L2unified 1.149631591 85.755 98.58665706
30 1024:32:4:r 32768:32:1:r GCC L1L2unified 1.149703786 85.75 98.58709962
16
31 1024:32:4:r 4096:32:8:f GCC L1L2unified 1.101294555 86.8025 95.59512057
32 1024:32:4:r 4096:32:8:l GCC L1L2unified 1.093175653 86.805 94.89311257
33 1024:32:4:r 4096:32:8:r GCC L1L2unified 1.107068127 86.8 96.09351342
34 1024:32:4:r 8192:32:4:f GCC L1L2unified 1.106725078 86.2025 95.40246855
35 1024:32:4:r 8192:32:4:l GCC L1L2unified 1.100004133 86.205 94.8258563
36 1024:32:4:r 8192:32:4:r GCC L1L2unified 1.110966593 86.2 95.7653203
37 1024:64:2:f 16384:64:1:f GCC L1L2unified 1.121501913 85.455 95.83794601
38 1024:64:2:f 16384:64:1:l GCC L1L2unified 1.121501913 85.4575 95.84074977
39 1024:64:2:f 16384:64:1:r GCC L1L2unified 1.121501913 85.4525 95.83514226
40 1024:64:2:f 2048:64:8:f GCC L1L2unified 1.078853515 86.505 93.32622333
41 1024:64:2:f 2048:64:8:l GCC L1L2unified 1.07324803 86.5075 92.84400397
42 1024:64:2:f 2048:64:8:r GCC L1L2unified 1.081796395 86.5025 93.57809264
43 1024:64:2:f 4096:64:4:f GCC L1L2unified 1.08268393 85.905 93.007963
44 1024:64:2:f 4096:64:4:l GCC L1L2unified 1.07796598 85.9075 92.60536243
45 1024:64:2:f 4096:64:4:r GCC L1L2unified 1.084879412 85.9025 93.19385365
46 1024:64:2:f 8192:64:2:f GCC L1L2unified 1.088616402 85.605 93.19100705
47 1024:64:2:f 8192:64:2:l GCC L1L2unified 1.08543996 85.6075 92.92180138
48 1024:64:2:f 8192:64:2:r GCC L1L2unified 1.090718458 85.6025 93.36822683
49 1024:64:2:l 16384:64:1:f GCC L1L2unified 1.113383427 85.4575 95.14696424
50 1024:64:2:l 16384:64:1:l GCC L1L2unified 1.113383427 85.46 95.14974769
51 1024:64:2:l 16384:64:1:r GCC L1L2unified 1.113383427 85.455 95.14418078
52 1024:64:2:l 2048:64:8:f GCC L1L2unified 1.074630245 86.5075 92.96357589
53 1024:64:2:l 2048:64:8:l GCC L1L2unified 1.069234774 86.51 92.49950029
54 1024:64:2:l 2048:64:8:r GCC L1L2unified 1.077499265 86.505 93.2090739
55 1024:64:2:l 4096:64:4:f GCC L1L2unified 1.078484152 85.9075 92.64987731
56 1024:64:2:l 4096:64:4:l GCC L1L2unified 1.073945105 85.91 92.26262401
57 1024:64:2:l 4096:64:4:r GCC L1L2unified 1.080368285 85.905 92.80903752
58 1024:64:2:l 8192:64:2:f GCC L1L2unified 1.08413655 85.6075 92.81021972
59 1024:64:2:l 8192:64:2:l GCC L1L2unified 1.08126753 85.61 92.56731325
60 1024:64:2:l 8192:64:2:r GCC L1L2unified 1.085892219 85.605 92.95780343
61 1024:64:2:r 16384:64:1:f GCC L1L2unified 1.120871514 85.4525 95.78127308
62 1024:64:2:r 16384:64:1:l GCC L1L2unified 1.120871514 85.455 95.78407526
63 1024:64:2:r 16384:64:1:r GCC L1L2unified 1.120801859 85.45 95.77251888
64 1024:64:2:r 2048:64:8:f GCC L1L2unified 1.080468975 86.5025 93.46326754
65 1024:64:2:r 2048:64:8:l GCC L1L2unified 1.074933051 86.505 92.98708353
66 1024:64:2:r 2048:64:8:r GCC L1L2unified 1.083577167 86.5 93.72942493
67 1024:64:2:r 4096:64:4:f GCC L1L2unified 1.084353835 85.9025 93.1487053
68 1024:64:2:r 4096:64:4:l GCC L1L2unified 1.079643443 85.905 92.74676994
69 1024:64:2:r 4096:64:4:r GCC L1L2unified 1.086481265 85.9 93.32874064
70 1024:64:2:r 8192:64:2:f GCC L1L2unified 1.090084003 85.6025 93.31391584
71 1024:64:2:r 8192:64:2:l GCC L1L2unified 1.086976115 85.605 93.05059033
17
72 1024:64:2:r 8192:64:2:r GCC L1L2unified 1.092974606 85.6 93.55862631
73 2048:32:2:f 16384:32:2:f GCC L1L2unified 1.124854724 85.605 96.29318861
74 2048:32:2:f 16384:32:2:l GCC L1L2unified 1.120328983 85.6075 95.90856345
75 2048:32:2:f 16384:32:2:r GCC L1L2unified 1.128157291 85.6025 96.57308447
76 2048:32:2:f 32768:32:1:f GCC L1L2unified 1.168888951 85.455 99.88740534
77 2048:32:2:f 32768:32:1:l GCC L1L2unified 1.168888951 85.4575 99.89032756
78 2048:32:2:f 32768:32:1:r GCC L1L2unified 1.168888951 85.4525 99.88448312
79 2048:32:2:f 4096:32:8:f GCC L1L2unified 1.110360124 86.505 96.05170249
80 2048:32:2:f 4096:32:8:l GCC L1L2unified 1.102103706 86.5075 95.34023634
81 2048:32:2:f 4096:32:8:r GCC L1L2unified 1.115680926 86.5025 96.50918931
82 2048:32:2:f 8192:32:4:f GCC L1L2unified 1.115864402 85.905 95.85833146
83 2048:32:2:f 8192:32:4:l GCC L1L2unified 1.108892316 85.9075 95.26216664
84 2048:32:2:f 8192:32:4:r GCC L1L2unified 1.119839714 85.9025 96.19703106
85 2048:32:2:l 16384:32:2:f GCC L1L2unified 1.119501213 85.6075 95.83770012
86 2048:32:2:l 16384:32:2:l GCC L1L2unified 1.115445076 85.61 95.49325292
87 2048:32:2:l 16384:32:2:r GCC L1L2unified 1.122317976 85.605 96.0760303
88 2048:32:2:l 32768:32:1:f GCC L1L2unified 1.158823215 85.4575 99.03013486
89 2048:32:2:l 32768:32:1:l GCC L1L2unified 1.158823215 85.46 99.03303191
90 2048:32:2:l 32768:32:1:r GCC L1L2unified 1.158823215 85.455 99.0272378
91 2048:32:2:l 4096:32:8:f GCC L1L2unified 1.105361067 86.5075 95.62202248
92 2048:32:2:l 4096:32:8:l GCC L1L2unified 1.097305127 86.51 94.9278665
93 2048:32:2:l 4096:32:8:r GCC L1L2unified 1.110543909 86.505 96.06760087
94 2048:32:2:l 8192:32:4:f GCC L1L2unified 1.110825585 85.9075 95.42824899
95 2048:32:2:l 8192:32:4:l GCC L1L2unified 1.104121691 85.91 94.8550945
96 2048:32:2:l 8192:32:4:r GCC L1L2unified 1.114543712 85.905 95.74487755
97 2048:32:2:r 16384:32:2:f GCC L1L2unified 1.127216284 85.6025 96.49253191
98 2048:32:2:r 16384:32:2:l GCC L1L2unified 1.122811537 85.605 96.1182816
99 2048:32:2:r 16384:32:2:r GCC L1L2unified 1.130453758 85.6 96.76684172
100 2048:32:2:r 32768:32:1:f GCC L1L2unified 1.168582602 85.4525 99.85830476
101 2048:32:2:r 32768:32:1:l GCC L1L2unified 1.168582602 85.455 99.86122622
102 2048:32:2:r 32768:32:1:r GCC L1L2unified 1.168476424 85.45 99.84631039
103 2048:32:2:r 4096:32:8:f GCC L1L2unified 1.112789142 86.5025 96.25904273
104 2048:32:2:r 4096:32:8:l GCC L1L2unified 1.104618017 86.505 95.55498157
105 2048:32:2:r 4096:32:8:r GCC L1L2unified 1.118366239 86.5 96.73867968
106 2048:32:2:r 8192:32:4:f GCC L1L2unified 1.118279116 85.9025 96.06297176
107 2048:32:2:r 8192:32:4:l GCC L1L2unified 1.111448567 85.905 95.47898911
108 2048:32:2:r 8192:32:4:r GCC L1L2unified 1.122223797 85.9 96.39902419
109 2048:64:1:f 16384:64:1:f GCC L1L2unified 1.178586689 85.305 100.5393375
110 2048:64:1:f 16384:64:1:l GCC L1L2unified 1.178586689 85.3075 100.542284
111 2048:64:1:f 16384:64:1:r GCC L1L2unified 1.178586689 85.3025 100.536391
112 2048:64:1:f 2048:64:8:f GCC L1L2unified 1.119054642 86.355 96.63596363
18
113 2048:64:1:f 2048:64:8:l GCC L1L2unified 1.113428906 86.3575 96.15293674
114 2048:64:1:f 2048:64:8:r GCC L1L2unified 1.121909494 86.3525 96.87968955
115 2048:64:1:f 4096:64:4:f GCC L1L2unified 1.122917088 85.755 96.2957549
116 2048:64:1:f 4096:64:4:l GCC L1L2unified 1.118131014 85.7575 95.88812043
117 2048:64:1:f 4096:64:4:r GCC L1L2unified 1.124932277 85.7525 96.46575511
118 2048:64:1:f 8192:64:2:f GCC L1L2unified 1.128794723 85.455 96.46115308
119 2048:64:1:f 8192:64:2:l GCC L1L2unified 1.125352108 85.4575 96.16977781
120 2048:64:1:f 8192:64:2:r GCC L1L2unified 1.131145777 85.4525 96.65923453
121 2048:64:1:l 16384:64:1:f GCC L1L2unified 1.178586689 85.3075 100.542284
122 2048:64:1:l 16384:64:1:l GCC L1L2unified 1.178586689 85.31 100.5452304
123 2048:64:1:l 16384:64:1:r GCC L1L2unified 1.178586689 85.305 100.5393375
124 2048:64:1:l 2048:64:8:f GCC L1L2unified 1.119054642 86.3575 96.63876127
125 2048:64:1:l 2048:64:8:l GCC L1L2unified 1.113428906 86.36 96.15572031
126 2048:64:1:l 2048:64:8:r GCC L1L2unified 1.121909494 86.355 96.88249432
127 2048:64:1:l 4096:64:4:f GCC L1L2unified 1.122917088 85.7575 96.29856219
128 2048:64:1:l 4096:64:4:l GCC L1L2unified 1.118131014 85.76 95.89091575
129 2048:64:1:l 4096:64:4:r GCC L1L2unified 1.124932277 85.755 96.46856744
130 2048:64:1:l 8192:64:2:f GCC L1L2unified 1.128794723 85.4575 96.46397506
131 2048:64:1:l 8192:64:2:l GCC L1L2unified 1.125352108 85.46 96.17259119
132 2048:64:1:l 8192:64:2:r GCC L1L2unified 1.131145777 85.455 96.6620624
133 2048:64:1:r 16384:64:1:f GCC L1L2unified 1.178586689 85.3025 100.536391
134 2048:64:1:r 16384:64:1:l GCC L1L2unified 1.178586689 85.305 100.5393375
135 2048:64:1:r 16384:64:1:r GCC L1L2unified 1.178586689 85.3 100.5334446
136 2048:64:1:r 2048:64:8:f GCC L1L2unified 1.119054642 86.3525 96.633166
137 2048:64:1:r 2048:64:8:l GCC L1L2unified 1.113428906 86.355 96.15015316
138 2048:64:1:r 2048:64:8:r GCC L1L2unified 1.121741561 86.35 96.86238381
139 2048:64:1:r 4096:64:4:f GCC L1L2unified 1.122917088 85.7525 96.2929476
140 2048:64:1:r 4096:64:4:l GCC L1L2unified 1.118131014 85.755 95.8853251
141 2048:64:1:r 4096:64:4:r GCC L1L2unified 1.125016244 85.75 96.47014289
142 2048:64:1:r 8192:64:2:f GCC L1L2unified 1.128794723 85.4525 96.45833109
143 2048:64:1:r 8192:64:2:l GCC L1L2unified 1.125352108 85.455 96.16696443
144 2048:64:1:r 8192:64:2:r GCC L1L2unified 1.131229744 85.45 96.66358158
145 256:64:8:f 16384:64:1:f GCC L1L2unified 1.098341943 86.355 94.84731853
146 256:64:8:f 16384:64:1:l GCC L1L2unified 1.098341943 86.3575 94.85006438
147 256:64:8:f 16384:64:1:r GCC L1L2unified 1.098341943 86.3525 94.84457267
148 256:64:8:f 2048:64:8:f GCC L1L2unified 1.06401642 87.405 93.00035517
149 256:64:8:f 2048:64:8:l GCC L1L2unified 1.058540363 87.4075 92.52436682
150 256:64:8:f 2048:64:8:r GCC L1L2unified 1.066954791 87.4025 93.25451616
151 256:64:8:f 4096:64:4:f GCC L1L2unified 1.067889728 86.805 92.69816783
152 256:64:8:f 4096:64:4:l GCC L1L2unified 1.063248436 86.8075 92.29793863
153 256:64:8:f 4096:64:4:r GCC L1L2unified 1.070126897 86.8025 92.88969
19
154 256:64:8:f 8192:64:2:f GCC L1L2unified 1.073399175 86.505 92.85439562
155 256:64:8:f 8192:64:2:l GCC L1L2unified 1.070494194 86.5075 92.60577646
156 256:64:8:f 8192:64:2:r GCC L1L2unified 1.075135485 86.5025 93.00190732
157 256:64:8:l 16384:64:1:f GCC L1L2unified 1.087020471 86.3575 93.87237031
158 256:64:8:l 16384:64:1:l GCC L1L2unified 1.087020471 86.36 93.87508786
159 256:64:8:l 16384:64:1:r GCC L1L2unified 1.087020471 86.355 93.86965276
160 256:64:8:l 2048:64:8:f GCC L1L2unified 1.057990675 87.4075 92.47631996
161 256:64:8:l 2048:64:8:l GCC L1L2unified 1.05296841 87.41 92.03996875
162 256:64:8:l 2048:64:8:r GCC L1L2unified 1.060832946 87.405 92.72210367
163 256:64:8:l 4096:64:4:f GCC L1L2unified 1.061798766 86.8075 92.17209642
164 256:64:8:l 4096:64:4:l GCC L1L2unified 1.057797511 86.81 91.82740196
165 256:64:8:l 4096:64:4:r GCC L1L2unified 1.063647622 86.805 92.32993185
166 256:64:8:l 8192:64:2:f GCC L1L2unified 1.066683057 86.5075 92.27608456
167 256:64:8:l 8192:64:2:l GCC L1L2unified 1.064309899 86.51 92.07344936
168 256:64:8:l 8192:64:2:r GCC L1L2unified 1.068035205 86.505 92.39038544
169 256:64:8:r 16384:64:1:f GCC L1L2unified 1.099248992 86.3525 94.92289861
170 256:64:8:r 16384:64:1:l GCC L1L2unified 1.099248992 86.355 94.92564674
171 256:64:8:r 16384:64:1:r GCC L1L2unified 1.099331277 86.35 94.92725574
172 256:64:8:r 2048:64:8:f GCC L1L2unified 1.067225384 87.4025 93.27816663
173 256:64:8:r 2048:64:8:l GCC L1L2unified 1.0618699 87.405 92.81273862
174 256:64:8:r 2048:64:8:r GCC L1L2unified 1.070485012 87.4 93.56039008
175 256:64:8:r 4096:64:4:f GCC L1L2unified 1.071087162 86.8025 92.97304335
176 256:64:8:r 4096:64:4:l GCC L1L2unified 1.066606042 86.805 92.58673751
177 256:64:8:r 4096:64:4:r GCC L1L2unified 1.073446877 86.8 93.1751889
178 256:64:8:r 8192:64:2:f GCC L1L2unified 1.076406214 86.5025 93.11182851
179 256:64:8:r 8192:64:2:l GCC L1L2unified 1.073528097 86.505 92.86554799
180 256:64:8:r 8192:64:2:r GCC L1L2unified 1.078152326 86.5 93.26017621
181 4096:32:1:f 16384:32:2:f GCC L1L2unified 1.172416832 85.455 100.1888804
182 4096:32:1:f 16384:32:2:l GCC L1L2unified 1.167558927 85.4575 99.77666697
183 4096:32:1:f 16384:32:2:r GCC L1L2unified 1.175796244 85.4525 100.4747286
184 4096:32:1:f 32768:32:1:f GCC L1L2unified 1.23366868 85.305 105.2381068
185 4096:32:1:f 32768:32:1:l GCC L1L2unified 1.23366868 85.3075 105.2411909
186 4096:32:1:f 32768:32:1:r GCC L1L2unified 1.23366868 85.3025 105.2350226
187 4096:32:1:f 4096:32:8:f GCC L1L2unified 1.157948723 86.355 99.99466196
188 4096:32:1:f 4096:32:8:l GCC L1L2unified 1.149605799 86.3575 99.27708276
189 4096:32:1:f 4096:32:8:r GCC L1L2unified 1.162806628 86.3525 100.4112593
190 4096:32:1:f 8192:32:4:f GCC L1L2unified 1.163440268 85.755 99.77082017
191 4096:32:1:f 8192:32:4:l GCC L1L2unified 1.15647023 85.7575 99.17599574
192 4096:32:1:f 8192:32:4:r GCC L1L2unified 1.1671365 85.7525 100.0848727
193 4096:32:1:l 16384:32:2:f GCC L1L2unified 1.172416832 85.4575 100.1918114
194 4096:32:1:l 16384:32:2:l GCC L1L2unified 1.167558927 85.46 99.77958587
20
195 4096:32:1:l 16384:32:2:r GCC L1L2unified 1.175796244 85.455 100.477668
196 4096:32:1:l 32768:32:1:f GCC L1L2unified 1.23366868 85.3075 105.2411909
197 4096:32:1:l 32768:32:1:l GCC L1L2unified 1.23366868 85.31 105.2442751
198 4096:32:1:l 32768:32:1:r GCC L1L2unified 1.23366868 85.305 105.2381068
199 4096:32:1:l 4096:32:8:f GCC L1L2unified 1.157948723 86.3575 99.99755683
200 4096:32:1:l 4096:32:8:l GCC L1L2unified 1.149605799 86.36 99.27995677
201 4096:32:1:l 4096:32:8:r GCC L1L2unified 1.162806628 86.355 100.4141664
202 4096:32:1:l 8192:32:4:f GCC L1L2unified 1.163440268 85.7575 99.77372877
203 4096:32:1:l 8192:32:4:l GCC L1L2unified 1.15647023 85.76 99.17888692
204 4096:32:1:l 8192:32:4:r GCC L1L2unified 1.1671365 85.755 100.0877906
205 4096:32:1:r 16384:32:2:f GCC L1L2unified 1.172416832 85.4525 100.1859493
206 4096:32:1:r 16384:32:2:l GCC L1L2unified 1.167558927 85.455 99.77374807
207 4096:32:1:r 16384:32:2:r GCC L1L2unified 1.175901851 85.45 100.4808131
208 4096:32:1:r 32768:32:1:f GCC L1L2unified 1.23366868 85.3025 105.2350226
209 4096:32:1:r 32768:32:1:l GCC L1L2unified 1.23366868 85.305 105.2381068
210 4096:32:1:r 32768:32:1:r GCC L1L2unified 1.23366868 85.3 105.2319384
211 4096:32:1:r 4096:32:8:f GCC L1L2unified 1.157948723 86.3525 99.99176709
212 4096:32:1:r 4096:32:8:l GCC L1L2unified 1.149605799 86.355 99.27420874
213 4096:32:1:r 4096:32:8:r GCC L1L2unified 1.162806628 86.35 100.4083523
214 4096:32:1:r 8192:32:4:f GCC L1L2unified 1.163440268 85.7525 99.76791157
215 4096:32:1:r 8192:32:4:l GCC L1L2unified 1.15647023 85.755 99.17310457
216 4096:32:1:r 8192:32:4:r GCC L1L2unified 1.1671365 85.75 100.0819549
217 512:32:8:f 16384:32:2:f GCC L1L2unified 1.108088666 86.505 95.85521002
218 512:32:8:f 16384:32:2:l GCC L1L2unified 1.104027508 86.5075 95.50665961
219 512:32:8:f 16384:32:2:r GCC L1L2unified 1.111226833 86.5025 96.12389914
220 512:32:8:f 32768:32:1:f GCC L1L2unified 1.142931556 86.355 98.69785452
221 512:32:8:f 32768:32:1:l GCC L1L2unified 1.142931556 86.3575 98.70071184
222 512:32:8:f 32768:32:1:r GCC L1L2unified 1.142931556 86.3525 98.69499719
223 512:32:8:f 4096:32:8:f GCC L1L2unified 1.093874612 87.405 95.6101105
224 512:32:8:f 4096:32:8:l GCC L1L2unified 1.085798446 87.4075 94.90692765
225 512:32:8:f 4096:32:8:r GCC L1L2unified 1.099181808 87.4025 96.07123794
226 512:32:8:f 8192:32:4:f GCC L1L2unified 1.099412555 86.805 95.43450686
227 512:32:8:f 8192:32:4:l GCC L1L2unified 1.092628575 86.8075 94.84835505
228 512:32:8:f 8192:32:4:r GCC L1L2unified 1.103427564 86.8025 95.78027111
229 512:32:8:l 16384:32:2:f GCC L1L2unified 1.099524081 86.5075 95.11707944
230 512:32:8:l 16384:32:2:l GCC L1L2unified 1.096285349 86.51 94.83964557
231 512:32:8:l 16384:32:2:r GCC L1L2unified 1.101943375 86.505 95.32361162
232 512:32:8:l 32768:32:1:f GCC L1L2unified 1.1283605 86.3575 97.44239185
233 512:32:8:l 32768:32:1:l GCC L1L2unified 1.1283605 86.36 97.44521275
234 512:32:8:l 32768:32:1:r GCC L1L2unified 1.1283605 86.355 97.43957095
235 512:32:8:l 4096:32:8:f GCC L1L2unified 1.086217966 87.4075 94.94359689
21
236 512:32:8:l 4096:32:8:l GCC L1L2unified 1.078647919 87.41 94.28461457
237 512:32:8:l 4096:32:8:r GCC L1L2unified 1.091407741 87.405 95.39449362
238 512:32:8:l 8192:32:4:f GCC L1L2unified 1.091641866 86.8075 94.76270132
239 512:32:8:l 8192:32:4:l GCC L1L2unified 1.085671674 86.81 94.24715804
240 512:32:8:l 8192:32:4:r GCC L1L2unified 1.095231786 86.805 95.07159518
241 512:32:8:r 16384:32:2:f GCC L1L2unified 1.111741929 86.5025 96.16845617
242 512:32:8:r 16384:32:2:l GCC L1L2unified 1.107851623 86.505 95.83470462
243 512:32:8:r 16384:32:2:r GCC L1L2unified 1.114791176 86.5 96.42943674
244 512:32:8:r 32768:32:1:f GCC L1L2unified 1.143925368 86.3525 98.78081536
245 512:32:8:r 32768:32:1:l GCC L1L2unified 1.143925368 86.355 98.78367517
246 512:32:8:r 32768:32:1:r GCC L1L2unified 1.143978171 86.35 98.78251503
247 512:32:8:r 4096:32:8:f GCC L1L2unified 1.097949026 87.4025 95.96348973
248 512:32:8:r 4096:32:8:l GCC L1L2unified 1.089915797 87.405 95.26409021
249 512:32:8:r 4096:32:8:r GCC L1L2unified 1.103738468 87.4 96.46674206
250 512:32:8:r 8192:32:4:f GCC L1L2unified 1.103405559 86.8025 95.77836101
251 512:32:8:r 8192:32:4:l GCC L1L2unified 1.09683751 86.805 95.21098004
252 512:32:8:r 8192:32:4:r GCC L1L2unified 1.107577561 86.8 96.13773225
253 512:64:4:f 16384:64:1:f GCC L1L2unified 1.104157357 85.755 94.68701418
254 512:64:4:f 16384:64:1:l GCC L1L2unified 1.104157357 85.7575 94.68977457
255 512:64:4:f 16384:64:1:r GCC L1L2unified 1.104157357 85.7525 94.68425378
256 512:64:4:f 2048:64:8:f GCC L1L2unified 1.068143166 86.805 92.72016756
257 512:64:4:f 2048:64:8:l GCC L1L2unified 1.062642017 86.8075 92.2452969
258 512:64:4:f 2048:64:8:r GCC L1L2unified 1.071113787 86.8025 92.9753545
259 512:64:4:f 4096:64:4:f GCC L1L2unified 1.071993971 86.205 92.41124027
260 512:64:4:f 4096:64:4:l GCC L1L2unified 1.067336331 86.2075 92.01239677
261 512:64:4:f 4096:64:4:r GCC L1L2unified 1.074047733 86.2025 92.58559974
262 512:64:4:f 8192:64:2:f GCC L1L2unified 1.077568469 85.905 92.56851933
263 512:64:4:f 8192:64:2:l GCC L1L2unified 1.074597848 85.9075 92.31601465
264 512:64:4:f 8192:64:2:r GCC L1L2unified 1.07943886 85.9025 92.72649665
265 512:64:4:l 16384:64:1:f GCC L1L2unified 1.093119318 85.7575 93.74317991
266 512:64:4:l 16384:64:1:l GCC L1L2unified 1.093119318 85.76 93.7459127
267 512:64:4:l 16384:64:1:r GCC L1L2unified 1.093119318 85.755 93.74044711
268 512:64:4:l 2048:64:8:f GCC L1L2unified 1.062216663 86.8075 92.20837293
269 512:64:4:l 2048:64:8:l GCC L1L2unified 1.057024261 86.81 91.76027611
270 512:64:4:l 2048:64:8:r GCC L1L2unified 1.065080351 86.805 92.45429983
271 512:64:4:l 4096:64:4:f GCC L1L2unified 1.066024424 86.2075 91.89930049
272 512:64:4:l 4096:64:4:l GCC L1L2unified 1.061776095 86.21 91.53571716
273 512:64:4:l 4096:64:4:r GCC L1L2unified 1.067944039 86.205 92.06211584
274 512:64:4:l 8192:64:2:f GCC L1L2unified 1.071090948 85.9075 92.01474566
275 512:64:4:l 8192:64:2:l GCC L1L2unified 1.068541951 85.91 91.79843905
276 512:64:4:l 8192:64:2:r GCC L1L2unified 1.07244412 85.905 92.12831211
22
277 512:64:4:r 16384:64:1:f GCC L1L2unified 1.104460372 85.7525 94.71023807
278 512:64:4:r 16384:64:1:l GCC L1L2unified 1.104460372 85.755 94.71299922
279 512:64:4:r 16384:64:1:r GCC L1L2unified 1.104537586 85.75 94.71409801
280 512:64:4:r 2048:64:8:f GCC L1L2unified 1.070551127 86.8025 92.92651424
281 512:64:4:r 2048:64:8:l GCC L1L2unified 1.065122501 86.805 92.45795872
282 512:64:4:r 2048:64:8:r GCC L1L2unified 1.073937809 86.8 93.21780182
283 512:64:4:r 4096:64:4:f GCC L1L2unified 1.074406239 86.2025 92.6165038
284 512:64:4:r 4096:64:4:l GCC L1L2unified 1.069843046 86.205 92.22581976
285 512:64:4:r 4096:64:4:r GCC L1L2unified 1.076706735 86.2 92.81212054
286 512:64:4:r 8192:64:2:f GCC L1L2unified 1.079834865 85.9025 92.76051449
287 512:64:4:r 8192:64:2:l GCC L1L2unified 1.076884525 85.905 92.50976509
288 512:64:4:r 8192:64:2:r GCC L1L2unified 1.081679127 85.9 92.91623701
289 1024:32:4:f 16384:32:2:f Anagram L1L2unified 1.15419899 85.905 99.15146424
290 1024:32:4:f 16384:32:2:l Anagram L1L2unified 1.15419899 85.9075 99.15434973
291 1024:32:4:f 16384:32:2:r Anagram L1L2unified 1.154234612 85.9025 99.15163873
292 1024:32:4:f 32768:32:1:f Anagram L1L2unified 1.139950304 85.755 97.7564383
293 1024:32:4:f 32768:32:1:l Anagram L1L2unified 1.139950304 85.7575 97.75928817
294 1024:32:4:f 32768:32:1:r Anagram L1L2unified 1.139950304 85.7525 97.75358842
295 1024:32:4:f 4096:32:8:f Anagram L1L2unified 1.187362807 86.805 103.0690285
296 1024:32:4:f 4096:32:8:l Anagram L1L2unified 1.18700659 86.8075 103.0410746
297 1024:32:4:f 4096:32:8:r Anagram L1L2unified 1.162391985 86.8025 100.8985302
298 1024:32:4:f 8192:32:4:f Anagram L1L2unified 1.184441827 86.205 102.1048077
299 1024:32:4:f 8192:32:4:l Anagram L1L2unified 1.184441827 86.2075 102.1077688
300 1024:32:4:f 8192:32:4:r Anagram L1L2unified 1.160860251 86.2025 100.0690558
301 1024:32:4:l 16384:32:2:f Anagram L1L2unified 1.15418893 85.9075 99.15348548
302 1024:32:4:l 16384:32:2:l Anagram L1L2unified 1.15418893 85.91 99.15637095
303 1024:32:4:l 16384:32:2:r Anagram L1L2unified 1.154578804 85.905 99.18409214
304 1024:32:4:l 32768:32:1:f Anagram L1L2unified 1.139905362 85.7575 97.75543412
305 1024:32:4:l 32768:32:1:l Anagram L1L2unified 1.139905362 85.76 97.75828389
306 1024:32:4:l 32768:32:1:r Anagram L1L2unified 1.139905362 85.755 97.75258436
307 1024:32:4:l 4096:32:8:f Anagram L1L2unified 1.187363666 86.8075 103.0720715
308 1024:32:4:l 4096:32:8:l Anagram L1L2unified 1.187009236 86.81 103.0442717
309 1024:32:4:l 4096:32:8:r Anagram L1L2unified 1.161986411 86.805 100.8662304
310 1024:32:4:l 8192:32:4:f Anagram L1L2unified 1.18442189 86.2075 102.10605
311 1024:32:4:l 8192:32:4:l Anagram L1L2unified 1.18442189 86.21 102.1090111
312 1024:32:4:l 8192:32:4:r Anagram L1L2unified 1.160994004 86.205 100.0834881
313 1024:32:4:r 16384:32:2:f Anagram L1L2unified 1.154294264 85.9025 99.15676303
314 1024:32:4:r 16384:32:2:l Anagram L1L2unified 1.153872189 85.905 99.1233904
315 1024:32:4:r 16384:32:2:r Anagram L1L2unified 1.156006744 85.9 99.30097935
316 1024:32:4:r 32768:32:1:f Anagram L1L2unified 1.143109273 85.7525 98.02447793
317 1024:32:4:r 32768:32:1:l Anagram L1L2unified 1.143109273 85.755 98.0273357
23
318 1024:32:4:r 32768:32:1:r Anagram L1L2unified 1.143185498 85.75 98.02815646
319 1024:32:4:r 4096:32:8:f Anagram L1L2unified 1.187286471 86.8025 103.0594339
320 1024:32:4:r 4096:32:8:l Anagram L1L2unified 1.182889855 86.805 102.6807539
321 1024:32:4:r 4096:32:8:r Anagram L1L2unified 1.167109777 86.8 101.3051286
322 1024:32:4:r 8192:32:4:f Anagram L1L2unified 1.184437464 86.2025 102.1014705
323 1024:32:4:r 8192:32:4:l Anagram L1L2unified 1.181658803 86.205 101.8648971
324 1024:32:4:r 8192:32:4:r Anagram L1L2unified 1.16280916 86.2 100.2341496
325 1024:64:2:f 16384:64:1:f Anagram L1L2unified 1.070921125 85.455 91.51556475
326 1024:64:2:f 16384:64:1:l Anagram L1L2unified 1.070921125 85.4575 91.51824206
327 1024:64:2:f 16384:64:1:r Anagram L1L2unified 1.070921125 85.4525 91.51288745
328 1024:64:2:f 2048:64:8:f Anagram L1L2unified 1.094472569 86.505 94.67734962
329 1024:64:2:f 2048:64:8:l Anagram L1L2unified 1.094291404 86.5075 94.66441367
330 1024:64:2:f 2048:64:8:r Anagram L1L2unified 1.08200842 86.5025 93.59643339
331 1024:64:2:f 4096:64:4:f Anagram L1L2unified 1.093005133 85.905 93.89460597
332 1024:64:2:f 4096:64:4:l Anagram L1L2unified 1.093005133 85.9075 93.89733849
333 1024:64:2:f 4096:64:4:r Anagram L1L2unified 1.081374343 85.9025 92.89275951
334 1024:64:2:f 8192:64:2:f Anagram L1L2unified 1.077895976 85.605 92.27328502
335 1024:64:2:f 8192:64:2:l Anagram L1L2unified 1.077895976 85.6075 92.27597976
336 1024:64:2:f 8192:64:2:r Anagram L1L2unified 1.078203956 85.6025 92.29695418
337 1024:64:2:l 16384:64:1:f Anagram L1L2unified 1.070865752 85.4575 91.51351
338 1024:64:2:l 16384:64:1:l Anagram L1L2unified 1.070865752 85.46 91.51618717
339 1024:64:2:l 16384:64:1:r Anagram L1L2unified 1.070865752 85.455 91.51083284
340 1024:64:2:l 2048:64:8:f Anagram L1L2unified 1.094464505 86.5075 94.67938819
341 1024:64:2:l 2048:64:8:l Anagram L1L2unified 1.094284637 86.51 94.66656392
342 1024:64:2:l 2048:64:8:r Anagram L1L2unified 1.082125523 86.505 93.60926837
343 1024:64:2:l 4096:64:4:f Anagram L1L2unified 1.09300757 85.9075 93.89754782
344 1024:64:2:l 4096:64:4:l Anagram L1L2unified 1.09300757 85.91 93.90028034
345 1024:64:2:l 4096:64:4:r Anagram L1L2unified 1.081693838 85.905 92.92290919
346 1024:64:2:l 8192:64:2:f Anagram L1L2unified 1.077898612 85.6075 92.27620544
347 1024:64:2:l 8192:64:2:l Anagram L1L2unified 1.077898612 85.61 92.27890019
348 1024:64:2:l 8192:64:2:r Anagram L1L2unified 1.078258349 85.605 92.30430599
349 1024:64:2:r 16384:64:1:f Anagram L1L2unified 1.071952102 85.4525 91.60098704
350 1024:64:2:r 16384:64:1:l Anagram L1L2unified 1.071952102 85.455 91.60366692
351 1024:64:2:r 16384:64:1:r Anagram L1L2unified 1.072037987 85.45 91.605646
352 1024:64:2:r 2048:64:8:f Anagram L1L2unified 1.094467508 86.5025 94.67417558
353 1024:64:2:r 2048:64:8:l Anagram L1L2unified 1.092848988 86.505 94.53690171
354 1024:64:2:r 2048:64:8:r Anagram L1L2unified 1.083444532 86.5 93.71795198
355 1024:64:2:r 4096:64:4:f Anagram L1L2unified 1.09301084 85.9025 93.89236368
356 1024:64:2:r 4096:64:4:l Anagram L1L2unified 1.092165613 85.905 93.822487
357 1024:64:2:r 4096:64:4:r Anagram L1L2unified 1.081431655 85.9 92.89497918
358 1024:64:2:r 8192:64:2:f Anagram L1L2unified 1.077922641 85.6025 92.27287289
24
359 1024:64:2:r 8192:64:2:l Anagram L1L2unified 1.077778773 85.605 92.26325185
360 1024:64:2:r 8192:64:2:r Anagram L1L2unified 1.078317303 85.6 92.30396111
361 2048:32:2:f 16384:32:2:f Anagram L1L2unified 1.154186291 85.605 98.80411748
362 2048:32:2:f 16384:32:2:l Anagram L1L2unified 1.154186291 85.6075 98.80700294
363 2048:32:2:f 16384:32:2:r Anagram L1L2unified 1.154579501 85.6025 98.83489171
364 2048:32:2:f 32768:32:1:f Anagram L1L2unified 1.139923516 85.455 97.4121641
365 2048:32:2:f 32768:32:1:l Anagram L1L2unified 1.139923516 85.4575 97.41501391
366 2048:32:2:f 32768:32:1:r Anagram L1L2unified 1.139923516 85.4525 97.40931429
367 2048:32:2:f 4096:32:8:f Anagram L1L2unified 1.187358861 86.505 102.7124782
368 2048:32:2:f 4096:32:8:l Anagram L1L2unified 1.187037144 86.5075 102.6876157
369 2048:32:2:f 4096:32:8:r Anagram L1L2unified 1.162372195 86.5025 100.5481008
370 2048:32:2:f 8192:32:4:f Anagram L1L2unified 1.184427664 85.905 101.7482585
371 2048:32:2:f 8192:32:4:l Anagram L1L2unified 1.184427664 85.9075 101.7512195
372 2048:32:2:f 8192:32:4:r Anagram L1L2unified 1.160978089 85.9025 99.73092029
373 2048:32:2:l 16384:32:2:f Anagram L1L2unified 1.15420365 85.6075 98.80848894
374 2048:32:2:l 16384:32:2:l Anagram L1L2unified 1.15420365 85.61 98.81137445
375 2048:32:2:l 16384:32:2:r Anagram L1L2unified 1.154310342 85.605 98.81473685
376 2048:32:2:l 32768:32:1:f Anagram L1L2unified 1.139906848 85.4575 97.41358945
377 2048:32:2:l 32768:32:1:l Anagram L1L2unified 1.139906848 85.46 97.41643921
378 2048:32:2:l 32768:32:1:r Anagram L1L2unified 1.139906848 85.455 97.41073968
379 2048:32:2:l 4096:32:8:f Anagram L1L2unified 1.187385033 86.5075 102.7177108
380 2048:32:2:l 4096:32:8:l Anagram L1L2unified 1.187029391 86.51 102.6899126
381 2048:32:2:l 4096:32:8:r Anagram L1L2unified 1.162347848 86.505 100.5489006
382 2048:32:2:l 8192:32:4:f Anagram L1L2unified 1.184433206 85.9075 101.7516956
383 2048:32:2:l 8192:32:4:l Anagram L1L2unified 1.184433206 85.91 101.7546567
384 2048:32:2:l 8192:32:4:r Anagram L1L2unified 1.161031973 85.905 99.73845164
385 2048:32:2:r 16384:32:2:f Anagram L1L2unified 1.154223578 85.6025 98.80442386
386 2048:32:2:r 16384:32:2:l Anagram L1L2unified 1.154011096 85.605 98.78911985
387 2048:32:2:r 16384:32:2:r Anagram L1L2unified 1.155751394 85.6 98.93231931
388 2048:32:2:r 32768:32:1:f Anagram L1L2unified 1.14204125 85.4525 97.59027989
389 2048:32:2:r 32768:32:1:l Anagram L1L2unified 1.14204125 85.455 97.59313499
390 2048:32:2:r 32768:32:1:r Anagram L1L2unified 1.14200969 85.45 97.58472802
391 2048:32:2:r 4096:32:8:f Anagram L1L2unified 1.187335431 86.5025 102.7074831
392 2048:32:2:r 4096:32:8:l Anagram L1L2unified 1.184041952 86.505 102.4255491
393 2048:32:2:r 4096:32:8:r Anagram L1L2unified 1.166079438 86.5 100.8658714
394 2048:32:2:r 8192:32:4:f Anagram L1L2unified 1.184431503 85.9025 101.7456272
395 2048:32:2:r 8192:32:4:l Anagram L1L2unified 1.182660816 85.905 101.5964774
396 2048:32:2:r 8192:32:4:r Anagram L1L2unified 1.161005521 85.9 99.73037425
397 2048:64:1:f 16384:64:1:f Anagram L1L2unified 1.086334221 85.305 92.6697407
398 2048:64:1:f 16384:64:1:l Anagram L1L2unified 1.086334221 85.3075 92.67245653
399 2048:64:1:f 16384:64:1:r Anagram L1L2unified 1.086334221 85.3025 92.66702486
25
400 2048:64:1:f 2048:64:8:f Anagram L1L2unified 1.098763637 86.355 94.8837339
401 2048:64:1:f 2048:64:8:l Anagram L1L2unified 1.098588266 86.3575 94.87133621
402 2048:64:1:f 2048:64:8:r Anagram L1L2unified 1.085610815 86.3525 93.74520794
403 2048:64:1:f 4096:64:4:f Anagram L1L2unified 1.097294906 85.755 94.09852462
404 2048:64:1:f 4096:64:4:l Anagram L1L2unified 1.097316827 85.7575 94.10314778
405 2048:64:1:f 4096:64:4:r Anagram L1L2unified 1.084032477 85.7525 92.95849497
406 2048:64:1:f 8192:64:2:f Anagram L1L2unified 1.082213003 85.455 92.48051219
407 2048:64:1:f 8192:64:2:l Anagram L1L2unified 1.082213003 85.4575 92.48321772
408 2048:64:1:f 8192:64:2:r Anagram L1L2unified 1.082519902 85.4525 92.50403196
409 2048:64:1:l 16384:64:1:f Anagram L1L2unified 1.086334221 85.3075 92.67245653
410 2048:64:1:l 16384:64:1:l Anagram L1L2unified 1.086334221 85.31 92.67517237
411 2048:64:1:l 16384:64:1:r Anagram L1L2unified 1.086334221 85.305 92.6697407
412 2048:64:1:l 2048:64:8:f Anagram L1L2unified 1.098763637 86.3575 94.88648081
413 2048:64:1:l 2048:64:8:l Anagram L1L2unified 1.098588266 86.36 94.87408268
414 2048:64:1:l 2048:64:8:r Anagram L1L2unified 1.085610815 86.355 93.74792197
415 2048:64:1:l 4096:64:4:f Anagram L1L2unified 1.097294906 85.7575 94.10126786
416 2048:64:1:l 4096:64:4:l Anagram L1L2unified 1.097316827 85.76 94.10589108
417 2048:64:1:l 4096:64:4:r Anagram L1L2unified 1.084032477 85.755 92.96120505
418 2048:64:1:l 8192:64:2:f Anagram L1L2unified 1.082213003 85.4575 92.48321772
419 2048:64:1:l 8192:64:2:l Anagram L1L2unified 1.082213003 85.46 92.48592325
420 2048:64:1:l 8192:64:2:r Anagram L1L2unified 1.082519902 85.455 92.50673826
421 2048:64:1:r 16384:64:1:f Anagram L1L2unified 1.086334221 85.3025 92.66702486
422 2048:64:1:r 16384:64:1:l Anagram L1L2unified 1.086334221 85.305 92.6697407
423 2048:64:1:r 16384:64:1:r Anagram L1L2unified 1.086334221 85.3 92.66430902
424 2048:64:1:r 2048:64:8:f Anagram L1L2unified 1.098763637 86.3525 94.88098699
425 2048:64:1:r 2048:64:8:l Anagram L1L2unified 1.098588266 86.355 94.86858974
426 2048:64:1:r 2048:64:8:r Anagram L1L2unified 1.085720422 86.35 93.75195847
427 2048:64:1:r 4096:64:4:f Anagram L1L2unified 1.097294906 85.7525 94.09578139
428 2048:64:1:r 4096:64:4:l Anagram L1L2unified 1.097316827 85.755 94.10040449
429 2048:64:1:r 4096:64:4:r Anagram L1L2unified 1.084010555 85.75 92.95390513
430 2048:64:1:r 8192:64:2:f Anagram L1L2unified 1.082213003 85.4525 92.47780665
431 2048:64:1:r 8192:64:2:l Anagram L1L2unified 1.082213003 85.455 92.48051219
432 2048:64:1:r 8192:64:2:r Anagram L1L2unified 1.082673352 85.45 92.51443792
433 256:64:8:f 16384:64:1:f Anagram L1L2unified 1.070904025 86.355 92.47791708
434 256:64:8:f 16384:64:1:l Anagram L1L2unified 1.070904025 86.3575 92.48059434
435 256:64:8:f 16384:64:1:r Anagram L1L2unified 1.070904025 86.3525 92.47523982
436 256:64:8:f 2048:64:8:f Anagram L1L2unified 1.094462682 87.405 95.66151073
437 256:64:8:f 2048:64:8:l Anagram L1L2unified 1.094283529 87.4075 95.64858755
438 256:64:8:f 2048:64:8:r Anagram L1L2unified 1.082154851 87.4025 94.5830394
439 256:64:8:f 4096:64:4:f Anagram L1L2unified 1.09301154 86.805 94.87886677
440 256:64:8:f 4096:64:4:l Anagram L1L2unified 1.092993625 86.8075 94.88004412
26
441 256:64:8:f 4096:64:4:r Anagram L1L2unified 1.081438238 86.8025 93.87154267
442 256:64:8:f 8192:64:2:f Anagram L1L2unified 1.077908919 86.505 93.244511
443 256:64:8:f 8192:64:2:l Anagram L1L2unified 1.077908919 86.5075 93.24720577
444 256:64:8:f 8192:64:2:r Anagram L1L2unified 1.078231394 86.5025 93.2697112
445 256:64:8:l 16384:64:1:f Anagram L1L2unified 1.070845642 86.3575 92.47555256
446 256:64:8:l 16384:64:1:l Anagram L1L2unified 1.070845642 86.36 92.47822967
447 256:64:8:l 16384:64:1:r Anagram L1L2unified 1.070845642 86.355 92.47287544
448 256:64:8:l 2048:64:8:f Anagram L1L2unified 1.094464015 87.4075 95.66436336
449 256:64:8:l 2048:64:8:l Anagram L1L2unified 1.094286031 87.41 95.65154201
450 256:64:8:l 2048:64:8:r Anagram L1L2unified 1.08200519 87.405 94.57266361
451 256:64:8:l 4096:64:4:f Anagram L1L2unified 1.093004552 86.8075 94.88099268
452 256:64:8:l 4096:64:4:l Anagram L1L2unified 1.093004552 86.81 94.88372519
453 256:64:8:l 4096:64:4:r Anagram L1L2unified 1.081239862 86.805 93.85702622
454 256:64:8:l 8192:64:2:f Anagram L1L2unified 1.077911576 86.5075 93.24743565
455 256:64:8:l 8192:64:2:l Anagram L1L2unified 1.077911576 86.51 93.25013043
456 256:64:8:l 8192:64:2:r Anagram L1L2unified 1.078267542 86.505 93.27553375
457 256:64:8:r 16384:64:1:f Anagram L1L2unified 1.071832535 86.3525 92.55541902
458 256:64:8:r 16384:64:1:l Anagram L1L2unified 1.071832535 86.355 92.5580986
459 256:64:8:r 16384:64:1:r Anagram L1L2unified 1.072661981 86.35 92.6243621
460 256:64:8:r 2048:64:8:f Anagram L1L2unified 1.093498812 87.4025 95.5745299
461 256:64:8:r 2048:64:8:l Anagram L1L2unified 1.091022666 87.405 95.36083612
462 256:64:8:r 2048:64:8:r Anagram L1L2unified 1.085128204 87.4 94.84020505
463 256:64:8:r 4096:64:4:f Anagram L1L2unified 1.092136932 86.8025 94.800216
464 256:64:8:r 4096:64:4:l Anagram L1L2unified 1.09045669 86.805 94.65709295
465 256:64:8:r 4096:64:4:r Anagram L1L2unified 1.082651112 86.8 93.97411651
466 256:64:8:r 8192:64:2:f Anagram L1L2unified 1.077067815 86.5025 93.16905869
467 256:64:8:r 8192:64:2:l Anagram L1L2unified 1.076784827 86.505 93.14727148
468 256:64:8:r 8192:64:2:r Anagram L1L2unified 1.079050254 86.5 93.33784697
469 4096:32:1:f 16384:32:2:f Anagram L1L2unified 1.156787617 85.455 98.85328577
470 4096:32:1:f 16384:32:2:l Anagram L1L2unified 1.156787617 85.4575 98.85617774
471 4096:32:1:f 16384:32:2:r Anagram L1L2unified 1.15758611 85.4525 98.91862702
472 4096:32:1:f 32768:32:1:f Anagram L1L2unified 1.142718931 85.305 97.47963841
473 4096:32:1:f 32768:32:1:l Anagram L1L2unified 1.142718931 85.3075 97.48249521
474 4096:32:1:f 32768:32:1:r Anagram L1L2unified 1.142718931 85.3025 97.47678161
475 4096:32:1:f 4096:32:8:f Anagram L1L2unified 1.189944086 86.355 102.7576216
476 4096:32:1:f 4096:32:8:l Anagram L1L2unified 1.189601875 86.3575 102.7310439
477 4096:32:1:f 4096:32:8:r Anagram L1L2unified 1.163669865 86.3525 100.4858021
478 4096:32:1:f 8192:32:4:f Anagram L1L2unified 1.187016279 85.755 101.792581
479 4096:32:1:f 8192:32:4:l Anagram L1L2unified 1.187016279 85.7575 101.7955485
480 4096:32:1:f 8192:32:4:r Anagram L1L2unified 1.160551941 85.7525 99.52023028
481 4096:32:1:l 16384:32:2:f Anagram L1L2unified 1.156787617 85.4575 98.85617774
27
482 4096:32:1:l 16384:32:2:l Anagram L1L2unified 1.156787617 85.46 98.85906971
483 4096:32:1:l 16384:32:2:r Anagram L1L2unified 1.15758611 85.455 98.92152099
484 4096:32:1:l 32768:32:1:f Anagram L1L2unified 1.142718931 85.3075 97.48249521
485 4096:32:1:l 32768:32:1:l Anagram L1L2unified 1.142718931 85.31 97.48535201
486 4096:32:1:l 32768:32:1:r Anagram L1L2unified 1.142718931 85.305 97.47963841
487 4096:32:1:l 4096:32:8:f Anagram L1L2unified 1.189944086 86.3575 102.7605964
488 4096:32:1:l 4096:32:8:l Anagram L1L2unified 1.189601875 86.36 102.7340179
489 4096:32:1:l 4096:32:8:r Anagram L1L2unified 1.163669865 86.355 100.4887112
490 4096:32:1:l 8192:32:4:f Anagram L1L2unified 1.187016279 85.7575 101.7955485
491 4096:32:1:l 8192:32:4:l Anagram L1L2unified 1.187016279 85.76 101.7985161
492 4096:32:1:l 8192:32:4:r Anagram L1L2unified 1.160551941 85.755 99.52313166
493 4096:32:1:r 16384:32:2:f Anagram L1L2unified 1.156787617 85.4525 98.8503938
494 4096:32:1:r 16384:32:2:l Anagram L1L2unified 1.156787617 85.455 98.85328577
495 4096:32:1:r 16384:32:2:r Anagram L1L2unified 1.157243898 85.45 98.88649111
496 4096:32:1:r 32768:32:1:f Anagram L1L2unified 1.142718931 85.3025 97.47678161
497 4096:32:1:r 32768:32:1:l Anagram L1L2unified 1.142718931 85.305 97.47963841
498 4096:32:1:r 32768:32:1:r Anagram L1L2unified 1.142718931 85.3 97.47392482
499 4096:32:1:r 4096:32:8:f Anagram L1L2unified 1.189944086 86.3525 102.7546467
500 4096:32:1:r 4096:32:8:l Anagram L1L2unified 1.189601875 86.355 102.7280699
501 4096:32:1:r 4096:32:8:r Anagram L1L2unified 1.163365678 86.35 100.4566263
502 4096:32:1:r 8192:32:4:f Anagram L1L2unified 1.187016279 85.7525 101.7896134
503 4096:32:1:r 8192:32:4:l Anagram L1L2unified 1.187016279 85.755 101.792581
504 4096:32:1:r 8192:32:4:r Anagram L1L2unified 1.160247753 85.75 99.4912448
505 512:32:8:f 16384:32:2:f Anagram L1L2unified 1.154214157 86.505 99.84529562
506 512:32:8:f 16384:32:2:l Anagram L1L2unified 1.154214157 86.5075 99.84818115
507 512:32:8:f 16384:32:2:r Anagram L1L2unified 1.154285389 86.5025 99.84857184
508 512:32:8:f 32768:32:1:f Anagram L1L2unified 1.139932109 86.355 98.43883727
509 512:32:8:f 32768:32:1:l Anagram L1L2unified 1.139932109 86.3575 98.4416871
510 512:32:8:f 32768:32:1:r Anagram L1L2unified 1.139932109 86.3525 98.43598744
511 512:32:8:f 4096:32:8:f Anagram L1L2unified 1.187372726 87.405 103.7823131
512 512:32:8:f 4096:32:8:l Anagram L1L2unified 1.187016565 87.4075 103.7541504
513 512:32:8:f 4096:32:8:r Anagram L1L2unified 1.162227774 87.4025 101.5816131
514 512:32:8:f 8192:32:4:f Anagram L1L2unified 1.184416592 86.805 102.8132822
515 512:32:8:f 8192:32:4:l Anagram L1L2unified 1.184416592 86.8075 102.8162433
516 512:32:8:f 8192:32:4:r Anagram L1L2unified 1.161052444 86.8025 100.7822548
517 512:32:8:l 16384:32:2:f Anagram L1L2unified 1.154203816 86.5075 99.84728663
518 512:32:8:l 16384:32:2:l Anagram L1L2unified 1.154203816 86.51 99.85017214
519 512:32:8:l 16384:32:2:r Anagram L1L2unified 1.154310129 86.505 99.85359768
520 512:32:8:l 32768:32:1:f Anagram L1L2unified 1.139887083 86.3575 98.43779878
521 512:32:8:l 32768:32:1:l Anagram L1L2unified 1.139887083 86.36 98.4406485
522 512:32:8:l 32768:32:1:r Anagram L1L2unified 1.139887083 86.355 98.43494906
28
523 512:32:8:l 4096:32:8:f Anagram L1L2unified 1.187373277 87.4075 103.7853297
524 512:32:8:l 4096:32:8:l Anagram L1L2unified 1.187018903 87.41 103.7573223
525 512:32:8:l 4096:32:8:r Anagram L1L2unified 1.162602494 87.405 101.617271
526 512:32:8:l 8192:32:4:f Anagram L1L2unified 1.184431968 86.8075 102.8175781
527 512:32:8:l 8192:32:4:l Anagram L1L2unified 1.184431968 86.81 102.8205392
528 512:32:8:l 8192:32:4:r Anagram L1L2unified 1.161184996 86.805 100.7966635
529 512:32:8:r 16384:32:2:f Anagram L1L2unified 1.1542611 86.5025 99.84647084
530 512:32:8:r 16384:32:2:l Anagram L1L2unified 1.153699089 86.505 99.80073972
531 512:32:8:r 16384:32:2:r Anagram L1L2unified 1.156319208 86.5 100.0216115
532 512:32:8:r 32768:32:1:f Anagram L1L2unified 1.143723391 86.3525 98.76337412
533 512:32:8:r 32768:32:1:l Anagram L1L2unified 1.143723391 86.355 98.76623343
534 512:32:8:r 32768:32:1:r Anagram L1L2unified 1.143722734 86.35 98.76045807
535 512:32:8:r 4096:32:8:f Anagram L1L2unified 1.187349508 87.4025 103.7773154
536 512:32:8:r 4096:32:8:l Anagram L1L2unified 1.182150905 87.405 103.3258998
537 512:32:8:r 4096:32:8:r Anagram L1L2unified 1.168534 87.4 102.1298716
538 512:32:8:r 8192:32:4:f Anagram L1L2unified 1.184434075 86.8025 102.8118388
539 512:32:8:r 8192:32:4:l Anagram L1L2unified 1.180921505 86.805 102.5098913
540 512:32:8:r 8192:32:4:r Anagram L1L2unified 1.163263992 86.8 100.9713145
541 512:64:4:f 16384:64:1:f Anagram L1L2unified 1.070924787 85.755 91.83715513
542 512:64:4:f 16384:64:1:l Anagram L1L2unified 1.070924787 85.7575 91.83983244
543 512:64:4:f 16384:64:1:r Anagram L1L2unified 1.070924787 85.7525 91.83447782
544 512:64:4:f 2048:64:8:f Anagram L1L2unified 1.094473957 86.805 95.00581184
545 512:64:4:f 2048:64:8:l Anagram L1L2unified 1.09429474 86.8075 94.9929906
546 512:64:4:f 2048:64:8:r Anagram L1L2unified 1.082179642 86.8025 93.93589834
547 512:64:4:f 4096:64:4:f Anagram L1L2unified 1.093004374 86.205 94.22244207
548 512:64:4:f 4096:64:4:l Anagram L1L2unified 1.093004374 86.2075 94.22517458
549 512:64:4:f 4096:64:4:r Anagram L1L2unified 1.081373163 86.2025 93.2170701
550 512:64:4:f 8192:64:2:f Anagram L1L2unified 1.077896345 85.905 92.59668552
551 512:64:4:f 8192:64:2:l Anagram L1L2unified 1.077896345 85.9075 92.59938027
552 512:64:4:f 8192:64:2:r Anagram L1L2unified 1.078201015 85.9025 92.62016267
553 512:64:4:l 16384:64:1:f Anagram L1L2unified 1.07084492 85.7575 91.83298326
554 512:64:4:l 16384:64:1:l Anagram L1L2unified 1.07084492 85.76 91.83566038
555 512:64:4:l 16384:64:1:r Anagram L1L2unified 1.07084492 85.755 91.83030615
556 512:64:4:l 2048:64:8:f Anagram L1L2unified 1.094470257 86.8075 95.00822681
557 512:64:4:l 2048:64:8:l Anagram L1L2unified 1.094292221 86.81 94.9955077
558 512:64:4:l 2048:64:8:r Anagram L1L2unified 1.081847526 86.805 93.90977451
559 512:64:4:l 4096:64:4:f Anagram L1L2unified 1.093010364 86.2075 94.22569096
560 512:64:4:l 4096:64:4:l Anagram L1L2unified 1.093010364 86.21 94.22842348
561 512:64:4:l 4096:64:4:r Anagram L1L2unified 1.081295616 86.205 93.21308854
562 512:64:4:l 8192:64:2:f Anagram L1L2unified 1.077895134 85.9075 92.59927621
563 512:64:4:l 8192:64:2:l Anagram L1L2unified 1.077895134 85.91 92.60197095
29
564 512:64:4:l 8192:64:2:r Anagram L1L2unified 1.078269009 85.905 92.6286992
565 512:64:4:r 16384:64:1:f Anagram L1L2unified 1.072468348 85.7525 91.96684202
566 512:64:4:r 16384:64:1:l Anagram L1L2unified 1.072468348 85.755 91.96952319
567 512:64:4:r 16384:64:1:r Anagram L1L2unified 1.072296851 85.75 91.94945495
568 512:64:4:r 2048:64:8:f Anagram L1L2unified 1.094440898 86.8025 95.00020603
569 512:64:4:r 2048:64:8:l Anagram L1L2unified 1.092208203 86.805 94.80913308
570 512:64:4:r 2048:64:8:r Anagram L1L2unified 1.084692914 86.8 94.15134489
571 512:64:4:r 4096:64:4:f Anagram L1L2unified 1.093005594 86.2025 94.21981473
572 512:64:4:r 4096:64:4:l Anagram L1L2unified 1.09162345 86.205 94.10339949
573 512:64:4:r 4096:64:4:r Anagram L1L2unified 1.082107918 86.2 93.27770255
574 512:64:4:r 8192:64:2:f Anagram L1L2unified 1.077943766 85.9025 92.59806433
575 512:64:4:r 8192:64:2:l Anagram L1L2unified 1.077713408 85.905 92.58097034
576 512:64:4:r 8192:64:2:r Anagram L1L2unified 1.078497182 85.9 92.64290796
577 1024:32:4:f 16384:32:2:f GO L1L2unified 1.020886414 85.905 87.69924741
578 1024:32:4:f 16384:32:2:l GO L1L2unified 1.020886414 85.9075 87.70179962
579 1024:32:4:f 16384:32:2:r GO L1L2unified 1.021604357 85.9025 87.75836825
580 1024:32:4:f 32768:32:1:f GO L1L2unified 1.038203187 85.755 89.0311143
581 1024:32:4:f 32768:32:1:l GO L1L2unified 1.038203187 85.7575 89.03370981
582 1024:32:4:f 32768:32:1:r GO L1L2unified 1.038203187 85.7525 89.02851879
583 1024:32:4:f 4096:32:8:f GO L1L2unified 1.021963328 86.805 88.71152668
584 1024:32:4:f 4096:32:8:l GO L1L2unified 1.021920251 86.8075 88.71034222
585 1024:32:4:f 4096:32:8:r GO L1L2unified 1.02143205 86.8025 88.66285556
586 1024:32:4:f 8192:32:4:f GO L1L2unified 1.021001285 86.205 88.01541577
587 1024:32:4:f 8192:32:4:l GO L1L2unified 1.020972567 86.2075 88.01549259
588 1024:32:4:f 8192:32:4:r GO L1L2unified 1.021374615 86.2025 88.04504525
589 1024:32:4:l 16384:32:2:f GO L1L2unified 1.018359866 85.9075 87.48475015
590 1024:32:4:l 16384:32:2:l GO L1L2unified 1.018371345 85.91 87.48828227
591 1024:32:4:l 16384:32:2:r GO L1L2unified 1.019106046 85.905 87.54630492
592 1024:32:4:l 32768:32:1:f GO L1L2unified 1.029345944 85.7575 88.27413478
593 1024:32:4:l 32768:32:1:l GO L1L2unified 1.029345944 85.76 88.27670815
594 1024:32:4:l 32768:32:1:r GO L1L2unified 1.029345944 85.755 88.27156142
595 1024:32:4:l 4096:32:8:f GO L1L2unified 1.019461917 86.8075 88.49694039
596 1024:32:4:l 4096:32:8:l GO L1L2unified 1.019415999 86.81 88.49550283
597 1024:32:4:l 4096:32:8:r GO L1L2unified 1.01895681 86.805 88.45054592
598 1024:32:4:l 8192:32:4:f GO L1L2unified 1.018497622 86.2075 87.80213375
599 1024:32:4:l 8192:32:4:l GO L1L2unified 1.018463183 86.21 87.801711
600 1024:32:4:l 8192:32:4:r GO L1L2unified 1.018853493 86.205 87.83026536
601 1024:32:4:r 16384:32:2:f GO L1L2unified 1.019155295 85.9025 87.54798771
602 1024:32:4:r 16384:32:2:l GO L1L2unified 1.019155295 85.905 87.5505356
603 1024:32:4:r 16384:32:2:r GO L1L2unified 1.019917903 85.9 87.61094783
604 1024:32:4:r 32768:32:1:f GO L1L2unified 1.031102274 85.7525 88.41959771
30
605 1024:32:4:r 32768:32:1:l GO L1L2unified 1.031102274 85.755 88.42217547
606 1024:32:4:r 32768:32:1:r GO L1L2unified 1.031118349 85.75 88.41839847
607 1024:32:4:r 4096:32:8:f GO L1L2unified 1.020290067 86.8025 88.5637285
608 1024:32:4:r 4096:32:8:l GO L1L2unified 1.020060562 86.805 88.54635709
609 1024:32:4:r 4096:32:8:r GO L1L2unified 1.020043883 86.8 88.53980902
610 1024:32:4:r 8192:32:4:f GO L1L2unified 1.019333798 86.2025 87.86912174
611 1024:32:4:r 8192:32:4:l GO L1L2unified 1.019282797 86.205 87.86727353
612 1024:32:4:r 8192:32:4:r GO L1L2unified 1.019810998 86.2 87.90770802
613 1024:64:2:f 16384:64:1:f GO L1L2unified 1.03617135 85.455 88.54602267
614 1024:64:2:f 16384:64:1:l GO L1L2unified 1.03617135 85.4575 88.5486131
615 1024:64:2:f 16384:64:1:r GO L1L2unified 1.03617135 85.4525 88.54343225
616 1024:64:2:f 2048:64:8:f GO L1L2unified 1.021568026 86.505 88.3707421
617 1024:64:2:f 2048:64:8:l GO L1L2unified 1.021550261 86.5075 88.37175916
618 1024:64:2:f 2048:64:8:r GO L1L2unified 1.021266011 86.5025 88.34206311
619 1024:64:2:f 4096:64:4:f GO L1L2unified 1.021088355 85.905 87.71659513
620 1024:64:2:f 4096:64:4:l GO L1L2unified 1.021070589 85.9075 87.71762165
621 1024:64:2:f 4096:64:4:r GO L1L2unified 1.021248245 85.9025 87.7277774
622 1024:64:2:f 8192:64:2:f GO L1L2unified 1.021159417 85.605 87.41635192
623 1024:64:2:f 8192:64:2:l GO L1L2unified 1.021177183 85.6075 87.42042569
624 1024:64:2:f 8192:64:2:r GO L1L2unified 1.021514729 85.6025 87.44421462
625 1024:64:2:l 16384:64:1:f GO L1L2unified 1.030714985 85.4575 88.08232581
626 1024:64:2:l 16384:64:1:l GO L1L2unified 1.030714985 85.46 88.08490259
627 1024:64:2:l 16384:64:1:r GO L1L2unified 1.030714985 85.455 88.07974902
628 1024:64:2:l 2048:64:8:f GO L1L2unified 1.01906772 86.5075 88.15700077
629 1024:64:2:l 2048:64:8:l GO L1L2unified 1.01905271 86.51 88.15824998
630 1024:64:2:l 2048:64:8:r GO L1L2unified 1.018767533 86.505 88.1284854
631 1024:64:2:l 4096:64:4:f GO L1L2unified 1.018572411 85.9075 87.50300938
632 1024:64:2:l 4096:64:4:l GO L1L2unified 1.018557401 85.91 87.50426636
633 1024:64:2:l 4096:64:4:r GO L1L2unified 1.018737514 85.905 87.51464612
634 1024:64:2:l 8192:64:2:f GO L1L2unified 1.018647458 85.6075 87.20386223
635 1024:64:2:l 8192:64:2:l GO L1L2unified 1.018662467 85.61 87.2076938
636 1024:64:2:l 8192:64:2:r GO L1L2unified 1.019007682 85.605 87.23215264
637 1024:64:2:r 16384:64:1:f GO L1L2unified 1.03468011 85.4525 88.41600212
638 1024:64:2:r 16384:64:1:l GO L1L2unified 1.03468011 85.455 88.41858882
639 1024:64:2:r 16384:64:1:r GO L1L2unified 1.034676764 85.45 88.41312951
640 1024:64:2:r 2048:64:8:f GO L1L2unified 1.021570397 86.5025 88.36839329
641 1024:64:2:r 2048:64:8:l GO L1L2unified 1.021497363 86.505 88.36462936
642 1024:64:2:r 2048:64:8:r GO L1L2unified 1.021349163 86.5 88.34670256
643 1024:64:2:r 4096:64:4:f GO L1L2unified 1.021077414 85.9025 87.71310252
644 1024:64:2:r 4096:64:4:l GO L1L2unified 1.021077414 85.905 87.71565522
645 1024:64:2:r 4096:64:4:r GO L1L2unified 1.021273352 85.9 87.72738093
31
646 1024:64:2:r 8192:64:2:f GO L1L2unified 1.021186966 85.6025 87.41615722
647 1024:64:2:r 8192:64:2:l GO L1L2unified 1.021205224 85.605 87.42027322
648 1024:64:2:r 8192:64:2:r GO L1L2unified 1.021511983 85.6 87.44142573
649 2048:32:2:f 16384:32:2:f GO L1L2unified 1.029224174 85.605 88.10673543
650 2048:32:2:f 16384:32:2:l GO L1L2unified 1.029201223 85.6075 88.10734368
651 2048:32:2:f 16384:32:2:r GO L1L2unified 1.029958621 85.6025 88.16703282
652 2048:32:2:f 32768:32:1:f GO L1L2unified 1.050614926 85.455 89.78029854
653 2048:32:2:f 32768:32:1:l GO L1L2unified 1.050614926 85.4575 89.78292507
654 2048:32:2:f 32768:32:1:r GO L1L2unified 1.050614926 85.4525 89.777672
655 2048:32:2:f 4096:32:8:f GO L1L2unified 1.030302892 86.505 89.12635171
656 2048:32:2:f 4096:32:8:l GO L1L2unified 1.030279941 86.5075 89.12694199
657 2048:32:2:f 4096:32:8:r GO L1L2unified 1.029775009 86.5025 89.07811272
658 2048:32:2:f 8192:32:4:f GO L1L2unified 1.029361883 85.905 88.42733255
659 2048:32:2:f 8192:32:4:l GO L1L2unified 1.02931598 85.9075 88.42596255
660 2048:32:2:f 8192:32:4:r GO L1L2unified 1.029706155 85.9025 88.45433295
661 2048:32:2:l 16384:32:2:f GO L1L2unified 1.026695708 85.6075 87.89285285
662 2048:32:2:l 16384:32:2:l GO L1L2unified 1.026695708 85.61 87.89541959
663 2048:32:2:l 16384:32:2:r GO L1L2unified 1.027406675 85.605 87.95114843
664 2048:32:2:l 32768:32:1:f GO L1L2unified 1.04381816 85.4575 89.20209044
665 2048:32:2:l 32768:32:1:l GO L1L2unified 1.04381816 85.46 89.20469998
666 2048:32:2:l 32768:32:1:r GO L1L2unified 1.04381816 85.455 89.19948089
667 2048:32:2:l 4096:32:8:f GO L1L2unified 1.027801657 86.5075 88.91255182
668 2048:32:2:l 4096:32:8:l GO L1L2unified 1.027762159 86.51 88.91170434
669 2048:32:2:l 4096:32:8:r GO L1L2unified 1.027268432 86.505 88.86385568
670 2048:32:2:l 8192:32:4:f GO L1L2unified 1.026853701 85.9075 88.21443431
671 2048:32:2:l 8192:32:4:l GO L1L2unified 1.026794454 85.91 88.21191152
672 2048:32:2:l 8192:32:4:r GO L1L2unified 1.027189435 85.905 88.24070844
673 2048:32:2:r 16384:32:2:f GO L1L2unified 1.029238215 85.6025 88.10536432
674 2048:32:2:r 16384:32:2:l GO L1L2unified 1.029238215 85.605 88.10793741
675 2048:32:2:r 16384:32:2:r GO L1L2unified 1.029979304 85.6 88.16622845
676 2048:32:2:r 32768:32:1:f GO L1L2unified 1.048131751 85.4525 89.56547849
677 2048:32:2:r 32768:32:1:l GO L1L2unified 1.048131751 85.455 89.56809882
678 2048:32:2:r 32768:32:1:r GO L1L2unified 1.048098834 85.45 89.56004533
679 2048:32:2:r 4096:32:8:f GO L1L2unified 1.030307222 86.5025 89.12415049
680 2048:32:2:r 4096:32:8:l GO L1L2unified 1.030144547 86.505 89.11265406
681 2048:32:2:r 4096:32:8:r GO L1L2unified 1.029938179 86.5 89.08965244
682 2048:32:2:r 8192:32:4:f GO L1L2unified 1.029354412 85.9025 88.42411734
683 2048:32:2:r 8192:32:4:l GO L1L2unified 1.029331172 85.905 88.42469436
684 2048:32:2:r 8192:32:4:r GO L1L2unified 1.029793654 85.9 88.45927491
685 2048:64:1:f 16384:64:1:f GO L1L2unified 1.120351157 85.305 95.57155542
686 2048:64:1:f 16384:64:1:l GO L1L2unified 1.120351157 85.3075 95.5743563
32
687 2048:64:1:f 16384:64:1:r GO L1L2unified 1.120351157 85.3025 95.56875454
688 2048:64:1:f 2048:64:8:f GO L1L2unified 1.099228122 86.355 94.92384446
689 2048:64:1:f 2048:64:8:l GO L1L2unified 1.099228122 86.3575 94.92659253
690 2048:64:1:f 2048:64:8:r GO L1L2unified 1.098852601 86.3525 94.88866925
691 2048:64:1:f 4096:64:4:f GO L1L2unified 1.098758721 85.755 94.22405413
692 2048:64:1:f 4096:64:4:l GO L1L2unified 1.098758721 85.7575 94.22680102
693 2048:64:1:f 4096:64:4:r GO L1L2unified 1.098852601 85.7525 94.22935769
694 2048:64:1:f 8192:64:2:f GO L1L2unified 1.098852601 85.455 93.90244904
695 2048:64:1:f 8192:64:2:l GO L1L2unified 1.098852601 85.4575 93.90519617
696 2048:64:1:f 8192:64:2:r GO L1L2unified 1.099134242 85.4525 93.92376879
697 2048:64:1:l 16384:64:1:f GO L1L2unified 1.120351157 85.3075 95.5743563
698 2048:64:1:l 16384:64:1:l GO L1L2unified 1.120351157 85.31 95.57715717
699 2048:64:1:l 16384:64:1:r GO L1L2unified 1.120351157 85.305 95.57155542
700 2048:64:1:l 2048:64:8:f GO L1L2unified 1.099228122 86.3575 94.92659253
701 2048:64:1:l 2048:64:8:l GO L1L2unified 1.099228122 86.36 94.9293406
702 2048:64:1:l 2048:64:8:r GO L1L2unified 1.098852601 86.355 94.89141638
703 2048:64:1:l 4096:64:4:f GO L1L2unified 1.098758721 85.7575 94.22680102
704 2048:64:1:l 4096:64:4:l GO L1L2unified 1.098758721 85.76 94.22954792
705 2048:64:1:l 4096:64:4:r GO L1L2unified 1.098852601 85.755 94.23210482
706 2048:64:1:l 8192:64:2:f GO L1L2unified 1.098852601 85.4575 93.90519617
707 2048:64:1:l 8192:64:2:l GO L1L2unified 1.098852601 85.46 93.9079433
708 2048:64:1:l 8192:64:2:r GO L1L2unified 1.099134242 85.455 93.92651662
709 2048:64:1:r 16384:64:1:f GO L1L2unified 1.120351157 85.3025 95.56875454
710 2048:64:1:r 16384:64:1:l GO L1L2unified 1.120351157 85.305 95.57155542
711 2048:64:1:r 16384:64:1:r GO L1L2unified 1.120351157 85.3 95.56595366
712 2048:64:1:r 2048:64:8:f GO L1L2unified 1.099228122 86.3525 94.92109639
713 2048:64:1:r 2048:64:8:l GO L1L2unified 1.099228122 86.355 94.92384446
714 2048:64:1:r 2048:64:8:r GO L1L2unified 1.098946481 86.35 94.89402867
715 2048:64:1:r 4096:64:4:f GO L1L2unified 1.098758721 85.7525 94.22130723
716 2048:64:1:r 4096:64:4:l GO L1L2unified 1.098758721 85.755 94.22405413
717 2048:64:1:r 4096:64:4:r GO L1L2unified 1.098852601 85.75 94.22661056
718 2048:64:1:r 8192:64:2:f GO L1L2unified 1.098852601 85.4525 93.89970191
719 2048:64:1:r 8192:64:2:l GO L1L2unified 1.098852601 85.455 93.90244904
720 2048:64:1:r 8192:64:2:r GO L1L2unified 1.099134242 85.45 93.92102095
721 256:64:8:f 16384:64:1:f GO L1L2unified 1.022288121 86.355 88.27969069
722 256:64:8:f 16384:64:1:l GO L1L2unified 1.022288121 86.3575 88.28224641
723 256:64:8:f 16384:64:1:r GO L1L2unified 1.022288121 86.3525 88.27713497
724 256:64:8:f 2048:64:8:f GO L1L2unified 1.013220302 87.405 88.56052053
725 256:64:8:f 2048:64:8:l GO L1L2unified 1.013220302 87.4075 88.56305358
726 256:64:8:f 2048:64:8:r GO L1L2unified 1.0129392 87.4025 88.53341843
727 256:64:8:f 4096:64:4:f GO L1L2unified 1.01273064 86.805 87.91008322
33
728 256:64:8:f 4096:64:4:l GO L1L2unified 1.01273064 86.8075 87.91261504
729 256:64:8:f 4096:64:4:r GO L1L2unified 1.012911997 86.8025 87.92329358
730 256:64:8:f 8192:64:2:f GO L1L2unified 1.012821318 86.505 87.61410814
731 256:64:8:f 8192:64:2:l GO L1L2unified 1.012875725 86.5075 87.6213468
732 256:64:8:f 8192:64:2:r GO L1L2unified 1.013193099 86.5025 87.64373604
733 256:64:8:l 16384:64:1:f GO L1L2unified 1.016169097 86.3575 87.75382279
734 256:64:8:l 16384:64:1:l GO L1L2unified 1.016169097 86.36 87.75636322
735 256:64:8:l 16384:64:1:r GO L1L2unified 1.016169097 86.355 87.75128237
736 256:64:8:l 2048:64:8:f GO L1L2unified 1.011550504 87.4075 88.41710068
737 256:64:8:l 2048:64:8:l GO L1L2unified 1.011550504 87.41 88.41962956
738 256:64:8:l 2048:64:8:r GO L1L2unified 1.011275668 87.405 88.39054973
739 256:64:8:l 4096:64:4:f GO L1L2unified 1.011061161 86.8075 87.76769175
740 256:64:8:l 4096:64:4:l GO L1L2unified 1.011061161 86.81 87.7702194
741 256:64:8:l 4096:64:4:r GO L1L2unified 1.011235448 86.805 87.78029303
742 256:64:8:l 8192:64:2:f GO L1L2unified 1.011134898 86.5075 87.47075217
743 256:64:8:l 8192:64:2:l GO L1L2unified 1.011188524 86.51 87.47791924
744 256:64:8:l 8192:64:2:r GO L1L2unified 1.011490174 86.505 87.49895751
745 256:64:8:r 16384:64:1:f GO L1L2unified 1.016923731 86.3525 87.81390647
746 256:64:8:r 16384:64:1:l GO L1L2unified 1.016923731 86.355 87.81644878
747 256:64:8:r 16384:64:1:r GO L1L2unified 1.016885941 86.35 87.80810104
748 256:64:8:r 2048:64:8:f GO L1L2unified 1.011550628 87.4025 88.41205375
749 256:64:8:r 2048:64:8:l GO L1L2unified 1.01143663 87.405 88.40461864
750 256:64:8:r 2048:64:8:r GO L1L2unified 1.011387128 87.4 88.39523502
751 256:64:8:r 4096:64:4:f GO L1L2unified 1.011064237 86.8025 87.7629034
752 256:64:8:r 4096:64:4:l GO L1L2unified 1.011049037 86.805 87.76411165
753 256:64:8:r 4096:64:4:r GO L1L2unified 1.011302729 86.8 87.78107684
754 256:64:8:r 8192:64:2:f GO L1L2unified 1.011094636 86.5025 87.46221376
755 256:64:8:r 8192:64:2:l GO L1L2unified 1.011117436 86.505 87.46671377
756 256:64:8:r 8192:64:2:r GO L1L2unified 1.011460029 86.5 87.49129247
757 4096:32:1:f 16384:32:2:f GO L1L2unified 1.111897854 85.455 95.01723111
758 4096:32:1:f 16384:32:2:l GO L1L2unified 1.111897854 85.4575 95.02001086
759 4096:32:1:f 16384:32:2:r GO L1L2unified 1.112515064 85.4525 95.06719353
760 4096:32:1:f 32768:32:1:f GO L1L2unified 1.141729684 85.305 97.39525066
761 4096:32:1:f 32768:32:1:l GO L1L2unified 1.141729684 85.3075 97.39810499
762 4096:32:1:f 32768:32:1:r GO L1L2unified 1.141729684 85.3025 97.39239634
763 4096:32:1:f 4096:32:8:f GO L1L2unified 1.113029406 86.355 96.11565437
764 4096:32:1:f 4096:32:8:l GO L1L2unified 1.113029406 86.3575 96.11843694
765 4096:32:1:f 4096:32:8:r GO L1L2unified 1.112412196 86.3525 96.05957415
766 4096:32:1:f 8192:32:4:f GO L1L2unified 1.112000722 85.755 95.35962195
767 4096:32:1:f 8192:32:4:l GO L1L2unified 1.112000722 85.7575 95.36240195
768 4096:32:1:f 8192:32:4:r GO L1L2unified 1.112309328 85.7525 95.38330561
34
769 4096:32:1:l 16384:32:2:f GO L1L2unified 1.111897854 85.4575 95.02001086
770 4096:32:1:l 16384:32:2:l GO L1L2unified 1.111897854 85.46 95.0227906
771 4096:32:1:l 16384:32:2:r GO L1L2unified 1.112515064 85.455 95.06997482
772 4096:32:1:l 32768:32:1:f GO L1L2unified 1.141729684 85.3075 97.39810499
773 4096:32:1:l 32768:32:1:l GO L1L2unified 1.141729684 85.31 97.40095931
774 4096:32:1:l 32768:32:1:r GO L1L2unified 1.141729684 85.305 97.39525066
775 4096:32:1:l 4096:32:8:f GO L1L2unified 1.113029406 86.3575 96.11843694
776 4096:32:1:l 4096:32:8:l GO L1L2unified 1.113029406 86.36 96.12121952
777 4096:32:1:l 4096:32:8:r GO L1L2unified 1.112412196 86.355 96.06235518
778 4096:32:1:l 8192:32:4:f GO L1L2unified 1.112000722 85.7575 95.36240195
779 4096:32:1:l 8192:32:4:l GO L1L2unified 1.112000722 85.76 95.36518195
780 4096:32:1:l 8192:32:4:r GO L1L2unified 1.112309328 85.755 95.38608638
781 4096:32:1:r 16384:32:2:f GO L1L2unified 1.111897854 85.4525 95.01445137
782 4096:32:1:r 16384:32:2:l GO L1L2unified 1.111897854 85.455 95.01723111
783 4096:32:1:r 16384:32:2:r GO L1L2unified 1.112515064 85.45 95.06441224
784 4096:32:1:r 32768:32:1:f GO L1L2unified 1.141729684 85.3025 97.39239634
785 4096:32:1:r 32768:32:1:l GO L1L2unified 1.141729684 85.305 97.39525066
786 4096:32:1:r 32768:32:1:r GO L1L2unified 1.141729684 85.3 97.38954201
787 4096:32:1:r 4096:32:8:f GO L1L2unified 1.113029406 86.3525 96.1128718
788 4096:32:1:r 4096:32:8:l GO L1L2unified 1.113029406 86.355 96.11565437
789 4096:32:1:r 4096:32:8:r GO L1L2unified 1.112412196 86.35 96.05679312
790 4096:32:1:r 8192:32:4:f GO L1L2unified 1.112000722 85.7525 95.35684195
791 4096:32:1:r 8192:32:4:l GO L1L2unified 1.112000722 85.755 95.35962195
792 4096:32:1:r 8192:32:4:r GO L1L2unified 1.112309328 85.75 95.38052483
793 512:32:8:f 16384:32:2:f GO L1L2unified 1.020048418 86.505 88.23928841
794 512:32:8:f 16384:32:2:l GO L1L2unified 1.02008879 86.5075 88.24533098
795 512:32:8:f 16384:32:2:r GO L1L2unified 1.020802023 86.5025 88.30192695
796 512:32:8:f 32768:32:1:f GO L1L2unified 1.032590549 86.355 89.16935683
797 512:32:8:f 32768:32:1:l GO L1L2unified 1.032590549 86.3575 89.1719383
798 512:32:8:f 32768:32:1:r GO L1L2unified 1.032590549 86.3525 89.16677535
799 512:32:8:f 4096:32:8:f GO L1L2unified 1.021124996 87.405 89.25143026
800 512:32:8:f 4096:32:8:l GO L1L2unified 1.021098081 87.4075 89.25163055
801 512:32:8:f 4096:32:8:r GO L1L2unified 1.020640536 87.4025 89.20653444
802 512:32:8:f 8192:32:4:f GO L1L2unified 1.020169533 86.805 88.55581632
803 512:32:8:f 8192:32:4:l GO L1L2unified 1.020142619 86.8075 88.55603037
804 512:32:8:f 8192:32:4:r GO L1L2unified 1.02057325 86.8025 88.58830951
805 512:32:8:l 16384:32:2:f GO L1L2unified 1.017519524 86.5075 88.02307026
806 512:32:8:l 16384:32:2:l GO L1L2unified 1.017560161 86.51 88.02912952
807 512:32:8:l 16384:32:2:r GO L1L2unified 1.018271299 86.505 88.08555871
808 512:32:8:l 32768:32:1:f GO L1L2unified 1.024275335 86.3575 88.45385728
809 512:32:8:l 32768:32:1:l GO L1L2unified 1.024275335 86.36 88.45641797
35
810 512:32:8:l 32768:32:1:r GO L1L2unified 1.024275335 86.355 88.45129659
811 512:32:8:l 4096:32:8:f GO L1L2unified 1.018626868 87.4075 89.03562795
812 512:32:8:l 4096:32:8:l GO L1L2unified 1.018596391 87.41 89.0355105
813 512:32:8:l 4096:32:8:r GO L1L2unified 1.018118912 87.405 88.98868352
814 512:32:8:l 8192:32:4:f GO L1L2unified 1.017661752 86.8075 88.34067254
815 512:32:8:l 8192:32:4:l GO L1L2unified 1.017631275 86.81 88.34057095
816 512:32:8:l 8192:32:4:r GO L1L2unified 1.018057957 86.805 88.372521
817 512:32:8:r 16384:32:2:f GO L1L2unified 1.018310321 86.5025 88.08638853
818 512:32:8:r 16384:32:2:l GO L1L2unified 1.018321794 86.505 88.08992681
819 512:32:8:r 16384:32:2:r GO L1L2unified 1.019070255 86.5 88.14957704
820 512:32:8:r 32768:32:1:f GO L1L2unified 1.026100774 86.3525 88.6063671
821 512:32:8:r 32768:32:1:l GO L1L2unified 1.026100774 86.355 88.60893235
822 512:32:8:r 32768:32:1:r GO L1L2unified 1.026129773 86.35 88.60630589
823 512:32:8:r 4096:32:8:f GO L1L2unified 1.019457663 87.4025 89.10314839
824 512:32:8:r 4096:32:8:l GO L1L2unified 1.019205248 87.405 89.08363468
825 512:32:8:r 4096:32:8:r GO L1L2unified 1.019224701 87.4 89.08023891
826 512:32:8:r 8192:32:4:f GO L1L2unified 1.018493896 86.8025 88.40781637
827 512:32:8:r 8192:32:4:l GO L1L2unified 1.018448002 86.805 88.40637881
828 512:32:8:r 8192:32:4:r GO L1L2unified 1.019027366 86.8 88.45157535
829 512:64:4:f 16384:64:1:f GO L1L2unified 1.024908163 85.755 87.89099954
830 512:64:4:f 16384:64:1:l GO L1L2unified 1.024908163 85.7575 87.89356181
831 512:64:4:f 16384:64:1:r GO L1L2unified 1.024908163 85.7525 87.88843727
832 512:64:4:f 2048:64:8:f GO L1L2unified 1.013221871 86.805 87.95272449
833 512:64:4:f 2048:64:8:l GO L1L2unified 1.013212654 86.8075 87.9544575
834 512:64:4:f 2048:64:8:r GO L1L2unified 1.012936165 86.8025 87.92539145
835 512:64:4:f 4096:64:4:f GO L1L2unified 1.012733406 86.205 87.30268325
836 512:64:4:f 4096:64:4:l GO L1L2unified 1.01272419 86.2075 87.30442057
837 512:64:4:f 4096:64:4:r GO L1L2unified 1.012908516 86.2025 87.31524634
838 512:64:4:f 8192:64:2:f GO L1L2unified 1.012825569 85.905 87.00678051
839 512:64:4:f 8192:64:2:l GO L1L2unified 1.012853218 85.9075 87.01168783
840 512:64:4:f 8192:64:2:r GO L1L2unified 1.013185005 85.9025 87.03512493
841 512:64:4:l 16384:64:1:f GO L1L2unified 1.018806631 85.7575 87.37030965
842 512:64:4:l 16384:64:1:l GO L1L2unified 1.018806631 85.76 87.37285667
843 512:64:4:l 16384:64:1:r GO L1L2unified 1.018806631 85.755 87.36776264
844 512:64:4:l 2048:64:8:f GO L1L2unified 1.011550884 86.8075 87.81020338
845 512:64:4:l 2048:64:8:l GO L1L2unified 1.011543665 86.81 87.81210552
846 512:64:4:l 2048:64:8:r GO L1L2unified 1.011254879 86.805 87.78197974
847 512:64:4:l 4096:64:4:f GO L1L2unified 1.011059948 86.2075 87.16095047
848 512:64:4:l 4096:64:4:l GO L1L2unified 1.011059948 86.21 87.16347812
849 512:64:4:l 4096:64:4:r GO L1L2unified 1.01123322 86.205 87.1733597
850 512:64:4:l 8192:64:2:f GO L1L2unified 1.011139364 85.9075 86.86445493
36
851 512:64:4:l 8192:64:2:l GO L1L2unified 1.011175462 85.91 86.87008398
852 512:64:4:l 8192:64:2:r GO L1L2unified 1.011493127 85.905 86.89231707
853 512:64:4:r 16384:64:1:f GO L1L2unified 1.020708464 85.7525 87.52830258
854 512:64:4:r 16384:64:1:l GO L1L2unified 1.020708464 85.755 87.53085435
855 512:64:4:r 16384:64:1:r GO L1L2unified 1.020746947 85.75 87.52905071
856 512:64:4:r 2048:64:8:f GO L1L2unified 1.012388734 86.8025 87.87787312
857 512:64:4:r 2048:64:8:l GO L1L2unified 1.012280034 86.805 87.87096839
858 512:64:4:r 2048:64:8:r GO L1L2unified 1.012223955 86.8 87.86103932
859 512:64:4:r 4096:64:4:f GO L1L2unified 1.011895404 86.2025 87.22791354
860 512:64:4:r 4096:64:4:l GO L1L2unified 1.011878681 86.205 87.22900167
861 512:64:4:r 4096:64:4:r GO L1L2unified 1.0121254 86.2 87.24520947
862 512:64:4:r 8192:64:2:f GO L1L2unified 1.011945573 85.9025 86.92865458
863 512:64:4:r 8192:64:2:l GO L1L2unified 1.011962296 85.905 86.93262104
864 512:64:4:r 8192:64:2:r GO L1L2unified 1.012307199 85.9 86.95718838
865 2048:32:2:f 16384:32:2:f GCC L1sepL2unified 1.131582136 85.68 96.95395738
866 2048:32:2:f 16384:32:2:l GCC L1sepL2unified 1.127655134 85.6825 96.62031098
867 2048:32:2:f 16384:32:2:r GCC L1sepL2unified 1.134177951 85.6775 97.17353136
868 2048:32:2:f 32768:32:1:f GCC L1sepL2unified 1.165527408 85.53 99.68755918
869 2048:32:2:f 32768:32:1:l GCC L1sepL2unified 1.165527408 85.5325 99.690473
870 2048:32:2:f 32768:32:1:r GCC L1sepL2unified 1.165527408 85.5275 99.68464537
871 2048:32:2:f 4096:32:8:f GCC L1sepL2unified 1.117737789 86.58 96.7737378
872 2048:32:2:f 4096:32:8:l GCC L1sepL2unified 1.109750666 86.5825 96.08498708
873 2048:32:2:f 4096:32:8:r GCC L1sepL2unified 1.122929419 86.5775 97.22042179
874 2048:32:2:f 8192:32:4:f GCC L1sepL2unified 1.123195657 85.98 96.57236255
875 2048:32:2:f 8192:32:4:l GCC L1sepL2unified 1.116539721 85.9825 96.00287655
876 2048:32:2:f 8192:32:4:r GCC L1sepL2unified 1.126922981 85.9775 96.89002056
877 2048:32:2:l 16384:32:2:f GCC L1sepL2unified 1.126487616 85.6825 96.52027516
878 2048:32:2:l 16384:32:2:l GCC L1sepL2unified 1.122926333 85.685 96.21794287
879 2048:32:2:l 16384:32:2:r GCC L1sepL2unified 1.128861804 85.68 96.72087941
880 2048:32:2:l 32768:32:1:f GCC L1sepL2unified 1.157726938 85.5325 99.02327934
881 2048:32:2:l 32768:32:1:l GCC L1sepL2unified 1.157726938 85.535 99.02617366
882 2048:32:2:l 32768:32:1:r GCC L1sepL2unified 1.157726938 85.53 99.02038503
883 2048:32:2:l 4096:32:8:f GCC L1sepL2unified 1.113242143 86.5825 96.38728788
884 2048:32:2:l 4096:32:8:l GCC L1sepL2unified 1.105494791 86.585 95.71926652
885 2048:32:2:l 4096:32:8:r GCC L1sepL2unified 1.118177956 86.58 96.81184746
886 2048:32:2:l 8192:32:4:f GCC L1sepL2unified 1.118615307 85.9825 96.18134062
887 2048:32:2:l 8192:32:4:l GCC L1sepL2unified 1.112242485 85.985 95.63617008
888 2048:32:2:l 8192:32:4:r GCC L1sepL2unified 1.122051632 85.98 96.47399934
889 2048:32:2:r 16384:32:2:f GCC L1sepL2unified 1.132966756 85.6775 97.0697592
890 2048:32:2:r 16384:32:2:l GCC L1sepL2unified 1.129072337 85.68 96.73891783
891 2048:32:2:r 16384:32:2:r GCC L1sepL2unified 1.135557366 85.675 97.28887733
37
892 2048:32:2:r 32768:32:1:f GCC L1sepL2unified 1.165488568 85.5275 99.68132348
893 2048:32:2:r 32768:32:1:l GCC L1sepL2unified 1.165488568 85.53 99.6842372
894 2048:32:2:r 32768:32:1:r GCC L1sepL2unified 1.165396968 85.525 99.67057573
895 2048:32:2:r 4096:32:8:f GCC L1sepL2unified 1.119370452 86.5775 96.91229529
896 2048:32:2:r 4096:32:8:l GCC L1sepL2unified 1.111444968 86.58 96.22890534
897 2048:32:2:r 4096:32:8:r GCC L1sepL2unified 1.124627135 86.575 97.36459418
898 2048:32:2:r 8192:32:4:f GCC L1sepL2unified 1.124767979 85.9775 96.70473895
899 2048:32:2:r 8192:32:4:l GCC L1sepL2unified 1.118208958 85.98 96.14360625
900 2048:32:2:r 8192:32:4:r GCC L1sepL2unified 1.128508021 85.975 97.02347707
901 2048:64:1:f 16384:64:1:f GCC L1sepL2unified 1.152854236 85.38 98.43069468
902 2048:64:1:f 16384:64:1:l GCC L1sepL2unified 1.152854236 85.3825 98.43357682
903 2048:64:1:f 16384:64:1:r GCC L1sepL2unified 1.152854236 85.3775 98.42781255
904 2048:64:1:f 2048:64:8:f GCC L1sepL2unified 1.113915777 86.43 96.27574062
905 2048:64:1:f 2048:64:8:l GCC L1sepL2unified 1.10854227 86.4325 95.81407973
906 2048:64:1:f 2048:64:8:r GCC L1sepL2unified 1.116641469 86.4275 96.50853058
907 2048:64:1:f 4096:64:4:f GCC L1sepL2unified 1.117731746 85.83 95.93491577
908 2048:64:1:f 4096:64:4:l GCC L1sepL2unified 1.113214885 85.8325 95.5500166
909 2048:64:1:f 4096:64:4:r GCC L1sepL2unified 1.119600792 85.8275 96.09253699
910 2048:64:1:f 8192:64:2:f GCC L1sepL2unified 1.1229495 85.53 96.0458707
911 2048:64:1:f 8192:64:2:l GCC L1sepL2unified 1.120145931 85.5325 95.80888181
912 2048:64:1:f 8192:64:2:r GCC L1sepL2unified 1.124662792 85.5275 96.18959693
913 2048:64:1:l 16384:64:1:f GCC L1sepL2unified 1.152854236 85.3825 98.43357682
914 2048:64:1:l 16384:64:1:l GCC L1sepL2unified 1.152854236 85.385 98.43645895
915 2048:64:1:l 16384:64:1:r GCC L1sepL2unified 1.152854236 85.38 98.43069468
916 2048:64:1:l 2048:64:8:f GCC L1sepL2unified 1.113915777 86.4325 96.27852541
917 2048:64:1:l 2048:64:8:l GCC L1sepL2unified 1.10854227 86.435 95.81685109
918 2048:64:1:l 2048:64:8:r GCC L1sepL2unified 1.116641469 86.43 96.51132219
919 2048:64:1:l 4096:64:4:f GCC L1sepL2unified 1.117731746 85.8325 95.9377101
920 2048:64:1:l 4096:64:4:l GCC L1sepL2unified 1.113214885 85.835 95.55279964
921 2048:64:1:l 4096:64:4:r GCC L1sepL2unified 1.119600792 85.83 96.09533599
922 2048:64:1:l 8192:64:2:f GCC L1sepL2unified 1.1229495 85.5325 96.04867808
923 2048:64:1:l 8192:64:2:l GCC L1sepL2unified 1.120145931 85.535 95.81168217
924 2048:64:1:l 8192:64:2:r GCC L1sepL2unified 1.124662792 85.53 96.19240858
925 2048:64:1:r 16384:64:1:f GCC L1sepL2unified 1.152854236 85.3775 98.42781255
926 2048:64:1:r 16384:64:1:l GCC L1sepL2unified 1.152854236 85.38 98.43069468
927 2048:64:1:r 16384:64:1:r GCC L1sepL2unified 1.152854236 85.375 98.42493041
928 2048:64:1:r 2048:64:8:f GCC L1sepL2unified 1.113915777 86.4275 96.27295583
929 2048:64:1:r 2048:64:8:l GCC L1sepL2unified 1.10854227 86.43 95.81130838
930 2048:64:1:r 2048:64:8:r GCC L1sepL2unified 1.116719346 86.425 96.51246949
931 2048:64:1:r 4096:64:4:f GCC L1sepL2unified 1.117731746 85.8275 95.93212144
932 2048:64:1:r 4096:64:4:l GCC L1sepL2unified 1.113214885 85.83 95.54723357
38
933 2048:64:1:r 4096:64:4:r GCC L1sepL2unified 1.119756546 85.825 96.10310556
934 2048:64:1:r 8192:64:2:f GCC L1sepL2unified 1.1229495 85.5275 96.04306333
935 2048:64:1:r 8192:64:2:l GCC L1sepL2unified 1.120145931 85.53 95.80608144
936 2048:64:1:r 8192:64:2:r GCC L1sepL2unified 1.124662792 85.525 96.18678527
937 256:64:8:f 16384:64:1:f GCC L1sepL2unified 1.103134863 86.43 95.3439462
938 256:64:8:f 16384:64:1:l GCC L1sepL2unified 1.103134863 86.4325 95.34670404
939 256:64:8:f 16384:64:1:r GCC L1sepL2unified 1.103134863 86.4275 95.34118836
940 256:64:8:f 2048:64:8:f GCC L1sepL2unified 1.070607661 87.48 93.65675817
941 256:64:8:f 2048:64:8:l GCC L1sepL2unified 1.065244338 87.4825 93.19023781
942 256:64:8:f 2048:64:8:r GCC L1sepL2unified 1.073462955 87.4775 93.90385565
943 256:64:8:f 4096:64:4:f GCC L1sepL2unified 1.074504752 86.88 93.35297281
944 256:64:8:f 4096:64:4:l GCC L1sepL2unified 1.0699903 86.8825 92.96343224
945 256:64:8:f 4096:64:4:r GCC L1sepL2unified 1.076549759 86.8775 93.52795173
946 256:64:8:f 8192:64:2:f GCC L1sepL2unified 1.079790904 86.58 93.48829648
947 256:64:8:f 8192:64:2:l GCC L1sepL2unified 1.077051365 86.5825 93.25379983
948 256:64:8:f 8192:64:2:r GCC L1sepL2unified 1.081334306 86.5775 93.61922091
949 256:64:8:l 16384:64:1:f GCC L1sepL2unified 1.093307993 86.4325 94.49734308
950 256:64:8:l 16384:64:1:l GCC L1sepL2unified 1.093307993 86.435 94.50007635
951 256:64:8:l 16384:64:1:r GCC L1sepL2unified 1.093307993 86.43 94.49460981
952 256:64:8:l 2048:64:8:f GCC L1sepL2unified 1.064909168 87.4825 93.16091627
953 256:64:8:l 2048:64:8:l GCC L1sepL2unified 1.059915236 87.485 92.72668443
954 256:64:8:l 2048:64:8:r GCC L1sepL2unified 1.067672477 87.48 93.39998826
955 256:64:8:l 4096:64:4:f GCC L1sepL2unified 1.068704556 86.8825 92.85172358
956 256:64:8:l 4096:64:4:l GCC L1sepL2unified 1.064709411 86.885 92.50727714
957 256:64:8:l 4096:64:4:r GCC L1sepL2unified 1.07060225 86.88 93.01392348
958 256:64:8:l 8192:64:2:f GCC L1sepL2unified 1.073365559 86.5825 92.9346735
959 256:64:8:l 8192:64:2:l GCC L1sepL2unified 1.071101643 86.585 92.74133577
960 256:64:8:l 8192:64:2:r GCC L1sepL2unified 1.074564102 86.58 93.03575999
961 256:64:8:r 16384:64:1:f GCC L1sepL2unified 1.10334704 86.4275 95.35952631
962 256:64:8:r 16384:64:1:l GCC L1sepL2unified 1.10334704 86.43 95.36228468
963 256:64:8:r 16384:64:1:r GCC L1sepL2unified 1.103345627 86.425 95.35664584
964 256:64:8:r 2048:64:8:f GCC L1sepL2unified 1.07277223 87.4775 93.84343275
965 256:64:8:r 2048:64:8:l GCC L1sepL2unified 1.067520365 87.48 93.38668155
966 256:64:8:r 2048:64:8:r GCC L1sepL2unified 1.075785151 87.475 94.10430606
967 256:64:8:r 4096:64:4:f GCC L1sepL2unified 1.07659917 86.8775 93.53224442
968 256:64:8:r 4096:64:4:l GCC L1sepL2unified 1.072283684 86.88 93.16000651
969 256:64:8:r 4096:64:4:r GCC L1sepL2unified 1.078690374 86.875 93.71122622
970 256:64:8:r 8192:64:2:f GCC L1sepL2unified 1.081728899 86.5775 93.65338373
971 256:64:8:r 8192:64:2:l GCC L1sepL2unified 1.079041898 86.58 93.42344754
972 256:64:8:r 8192:64:2:r GCC L1sepL2unified 1.082939836 86.575 93.75551634
973 4096:32:1:f 16384:32:2:f GCC L1sepL2unified 1.171155706 85.53 100.1689475
39
974 4096:32:1:f 16384:32:2:l GCC L1sepL2unified 1.167061644 85.5325 99.82170006
975 4096:32:1:f 16384:32:2:r GCC L1sepL2unified 1.173816846 85.5275 100.3936203
976 4096:32:1:f 32768:32:1:f GCC L1sepL2unified 1.210253996 85.38 103.3314862
977 4096:32:1:f 32768:32:1:l GCC L1sepL2unified 1.210253996 85.3825 103.3345118
978 4096:32:1:f 32768:32:1:r GCC L1sepL2unified 1.210253996 85.3775 103.3284605
979 4096:32:1:f 4096:32:8:f GCC L1sepL2unified 1.157440599 86.43 100.0375909
980 4096:32:1:f 4096:32:8:l GCC L1sepL2unified 1.149457178 86.4325 99.35045755
981 4096:32:1:f 4096:32:8:r GCC L1sepL2unified 1.162455824 86.4275 100.4681508
982 4096:32:1:f 8192:32:4:f GCC L1sepL2unified 1.162865231 85.83 99.80872274
983 4096:32:1:f 8192:32:4:l GCC L1sepL2unified 1.156314732 85.8325 99.2493842
984 4096:32:1:f 8192:32:4:r GCC L1sepL2unified 1.166549886 85.8275 100.1220604
985 4096:32:1:l 16384:32:2:f GCC L1sepL2unified 1.171155706 85.5325 100.1718754
986 4096:32:1:l 16384:32:2:l GCC L1sepL2unified 1.167061644 85.535 99.82461771
987 4096:32:1:l 16384:32:2:r GCC L1sepL2unified 1.173816846 85.53 100.3965548
988 4096:32:1:l 32768:32:1:f GCC L1sepL2unified 1.210253996 85.3825 103.3345118
989 4096:32:1:l 32768:32:1:l GCC L1sepL2unified 1.210253996 85.385 103.3375374
990 4096:32:1:l 32768:32:1:r GCC L1sepL2unified 1.210253996 85.38 103.3314862
991 4096:32:1:l 4096:32:8:f GCC L1sepL2unified 1.157440599 86.4325 100.0404845
992 4096:32:1:l 4096:32:8:l GCC L1sepL2unified 1.149457178 86.435 99.35333119
993 4096:32:1:l 4096:32:8:r GCC L1sepL2unified 1.162455824 86.43 100.4710569
994 4096:32:1:l 8192:32:4:f GCC L1sepL2unified 1.162865231 85.8325 99.8116299
995 4096:32:1:l 8192:32:4:l GCC L1sepL2unified 1.156314732 85.835 99.25227499
996 4096:32:1:l 8192:32:4:r GCC L1sepL2unified 1.166549886 85.83 100.1249767
997 4096:32:1:r 16384:32:2:f GCC L1sepL2unified 1.171155706 85.5275 100.1660196
998 4096:32:1:r 16384:32:2:l GCC L1sepL2unified 1.167061644 85.53 99.8187824
999 4096:32:1:r 16384:32:2:r GCC L1sepL2unified 1.173816846 85.525 100.3906857
1000 4096:32:1:r 32768:32:1:f GCC L1sepL2unified 1.210253996 85.3775 103.3284605
1001 4096:32:1:r 32768:32:1:l GCC L1sepL2unified 1.210253996 85.38 103.3314862
1002 4096:32:1:r 32768:32:1:r GCC L1sepL2unified 1.210253996 85.375 103.3254349
1003 4096:32:1:r 4096:32:8:f GCC L1sepL2unified 1.157440599 86.4275 100.0346973
1004 4096:32:1:r 4096:32:8:l GCC L1sepL2unified 1.149457178 86.43 99.34758391
1005 4096:32:1:r 4096:32:8:r GCC L1sepL2unified 1.162455824 86.425 100.4652446
1006 4096:32:1:r 8192:32:4:f GCC L1sepL2unified 1.162865231 85.8275 99.80581557
1007 4096:32:1:r 8192:32:4:l GCC L1sepL2unified 1.156314732 85.83 99.24649342
1008 4096:32:1:r 8192:32:4:r GCC L1sepL2unified 1.166549886 85.825 100.119144
1009 512:32:8:f 16384:32:2:f GCC L1sepL2unified 1.116047435 86.58 96.62738691
1010 512:32:8:f 16384:32:2:l GCC L1sepL2unified 1.112227143 86.5825 96.29940659
1011 512:32:8:f 16384:32:2:r GCC L1sepL2unified 1.118541237 86.5775 96.84050391
1012 512:32:8:f 32768:32:1:f GCC L1sepL2unified 1.149315811 86.43 99.33536558
1013 512:32:8:f 32768:32:1:l GCC L1sepL2unified 1.149315811 86.4325 99.33823887
1014 512:32:8:f 32768:32:1:r GCC L1sepL2unified 1.149315811 86.4275 99.33249229
40
1015 512:32:8:f 4096:32:8:f GCC L1sepL2unified 1.101880519 87.48 96.39250776
1016 512:32:8:f 4096:32:8:l GCC L1sepL2unified 1.093868517 87.4825 95.69435255
1017 512:32:8:f 4096:32:8:r GCC L1sepL2unified 1.106974241 87.4775 96.83533919
1018 512:32:8:f 8192:32:4:f GCC L1sepL2unified 1.107451778 86.88 96.21541045
1019 512:32:8:f 8192:32:4:l GCC L1sepL2unified 1.100819326 86.8825 95.64193512
1020 512:32:8:f 8192:32:4:r GCC L1sepL2unified 1.11127207 86.8775 96.54453924
1021 512:32:8:l 16384:32:2:f GCC L1sepL2unified 1.108182624 86.5825 95.94922205
1022 512:32:8:l 16384:32:2:l GCC L1sepL2unified 1.104961552 86.585 95.67309602
1023 512:32:8:l 16384:32:2:r GCC L1sepL2unified 1.110516734 86.58 96.14853882
1024 512:32:8:l 32768:32:1:f GCC L1sepL2unified 1.136938857 86.4325 98.26846776
1025 512:32:8:l 32768:32:1:l GCC L1sepL2unified 1.136938857 86.435 98.27131011
1026 512:32:8:l 32768:32:1:r GCC L1sepL2unified 1.136938857 86.43 98.26562542
1027 512:32:8:l 4096:32:8:f GCC L1sepL2unified 1.095064927 87.4825 95.79901746
1028 512:32:8:l 4096:32:8:l GCC L1sepL2unified 1.087549093 87.485 95.14423242
1029 512:32:8:l 4096:32:8:r GCC L1sepL2unified 1.100106604 87.48 96.23732572
1030 512:32:8:l 8192:32:4:f GCC L1sepL2unified 1.100433379 86.8825 95.60840309
1031 512:32:8:l 8192:32:4:l GCC L1sepL2unified 1.09450474 86.885 95.09604438
1032 512:32:8:l 8192:32:4:r GCC L1sepL2unified 1.103981226 86.88 95.91388895
1033 512:32:8:r 16384:32:2:f GCC L1sepL2unified 1.118641083 86.5775 96.84914834
1034 512:32:8:r 16384:32:2:l GCC L1sepL2unified 1.11488035 86.58 96.5263407
1035 512:32:8:r 16384:32:2:r GCC L1sepL2unified 1.1210859 86.575 97.05801181
1036 512:32:8:r 32768:32:1:f GCC L1sepL2unified 1.149175988 86.4275 99.32040769
1037 512:32:8:r 32768:32:1:l GCC L1sepL2unified 1.149175988 86.43 99.32328063
1038 512:32:8:r 32768:32:1:r GCC L1sepL2unified 1.149221405 86.425 99.3214599
1039 512:32:8:r 4096:32:8:f GCC L1sepL2unified 1.10494528 87.4775 96.6578507
1040 512:32:8:r 4096:32:8:l GCC L1sepL2unified 1.097143162 87.48 95.97808384
1041 512:32:8:r 4096:32:8:r GCC L1sepL2unified 1.110394899 87.475 97.1317938
1042 512:32:8:r 8192:32:4:f GCC L1sepL2unified 1.110446053 86.8775 96.47277697
1043 512:32:8:r 8192:32:4:l GCC L1sepL2unified 1.104047194 86.88 95.91962024
1044 512:32:8:r 8192:32:4:r GCC L1sepL2unified 1.114210389 86.875 96.79702753
1045 512:64:4:f 16384:64:1:f GCC L1sepL2unified 1.106487164 85.83 94.96979328
1046 512:64:4:f 16384:64:1:l GCC L1sepL2unified 1.106487164 85.8325 94.9725595
1047 512:64:4:f 16384:64:1:r GCC L1sepL2unified 1.106487164 85.8275 94.96702706
1048 512:64:4:f 2048:64:8:f GCC L1sepL2unified 1.073726184 86.88 93.28533084
1049 512:64:4:f 2048:64:8:l GCC L1sepL2unified 1.068334615 86.8825 92.81958221
1050 512:64:4:f 2048:64:8:r GCC L1sepL2unified 1.076566017 86.8775 93.52936417
1051 512:64:4:f 4096:64:4:f GCC L1sepL2unified 1.077553786 86.28 92.97134062
1052 512:64:4:f 4096:64:4:l GCC L1sepL2unified 1.073026514 86.2825 92.58341024
1053 512:64:4:f 4096:64:4:r GCC L1sepL2unified 1.079611636 86.2775 93.14619294
1054 512:64:4:f 8192:64:2:f GCC L1sepL2unified 1.082821883 85.98 93.1010255
1055 512:64:4:f 8192:64:2:l GCC L1sepL2unified 1.080064363 85.9825 92.86663411
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor
Cache Design for an Alpha Microprocessor

More Related Content

What's hot

Static-Noise-Margin Analysis of Modified 6T SRAM Cell during Read Operation
Static-Noise-Margin Analysis of Modified 6T SRAM Cell during Read OperationStatic-Noise-Margin Analysis of Modified 6T SRAM Cell during Read Operation
Static-Noise-Margin Analysis of Modified 6T SRAM Cell during Read Operationidescitation
 
250nm Technology Based Low Power SRAM Memory
250nm Technology Based Low Power SRAM Memory250nm Technology Based Low Power SRAM Memory
250nm Technology Based Low Power SRAM Memoryiosrjce
 
Design and Simulation Low power SRAM Circuits
Design and Simulation Low power SRAM CircuitsDesign and Simulation Low power SRAM Circuits
Design and Simulation Low power SRAM Circuitsijsrd.com
 
Project Report Of SRAM Design
Project Report Of SRAM DesignProject Report Of SRAM Design
Project Report Of SRAM DesignAalay Kapadia
 
Implementation of High Reliable 6T SRAM Cell Design
Implementation of High Reliable 6T SRAM Cell DesignImplementation of High Reliable 6T SRAM Cell Design
Implementation of High Reliable 6T SRAM Cell Designiosrjce
 
Design of a low power asynchronous SRAM in 45nM CMOS
Design of a low power asynchronous SRAM in 45nM CMOSDesign of a low power asynchronous SRAM in 45nM CMOS
Design of a low power asynchronous SRAM in 45nM CMOSNirav Desai
 
SRAM- Ultra low voltage operation
SRAM- Ultra low voltage operationSRAM- Ultra low voltage operation
SRAM- Ultra low voltage operationTeam-VLSI-ITMU
 
8086 MICROPROCESSOR
8086 MICROPROCESSOR8086 MICROPROCESSOR
8086 MICROPROCESSORAlxus Shuvo
 
A 128 kbit sram with an embedded energy monitoring circuit and sense amplifie...
A 128 kbit sram with an embedded energy monitoring circuit and sense amplifie...A 128 kbit sram with an embedded energy monitoring circuit and sense amplifie...
A 128 kbit sram with an embedded energy monitoring circuit and sense amplifie...Grace Abraham
 
SRAM read and write and sense amplifier
SRAM read and write and sense amplifierSRAM read and write and sense amplifier
SRAM read and write and sense amplifierSoumyajit Langal
 
Final Project Report
Final Project ReportFinal Project Report
Final Project ReportRiddhi Shah
 
ADS Lab 5 Report
ADS Lab 5 ReportADS Lab 5 Report
ADS Lab 5 ReportRiddhi Shah
 
Assignement 3 ADV report (1)
Assignement 3 ADV report (1)Assignement 3 ADV report (1)
Assignement 3 ADV report (1)Riddhi Shah
 
Low power sram design using block partitioning
Low power sram design using block partitioningLow power sram design using block partitioning
Low power sram design using block partitioningeSAT Publishing House
 

What's hot (19)

SRAM Design
SRAM DesignSRAM Design
SRAM Design
 
Static-Noise-Margin Analysis of Modified 6T SRAM Cell during Read Operation
Static-Noise-Margin Analysis of Modified 6T SRAM Cell during Read OperationStatic-Noise-Margin Analysis of Modified 6T SRAM Cell during Read Operation
Static-Noise-Margin Analysis of Modified 6T SRAM Cell during Read Operation
 
250nm Technology Based Low Power SRAM Memory
250nm Technology Based Low Power SRAM Memory250nm Technology Based Low Power SRAM Memory
250nm Technology Based Low Power SRAM Memory
 
Design and Simulation Low power SRAM Circuits
Design and Simulation Low power SRAM CircuitsDesign and Simulation Low power SRAM Circuits
Design and Simulation Low power SRAM Circuits
 
Project Report Of SRAM Design
Project Report Of SRAM DesignProject Report Of SRAM Design
Project Report Of SRAM Design
 
Implementation of High Reliable 6T SRAM Cell Design
Implementation of High Reliable 6T SRAM Cell DesignImplementation of High Reliable 6T SRAM Cell Design
Implementation of High Reliable 6T SRAM Cell Design
 
Design of a low power asynchronous SRAM in 45nM CMOS
Design of a low power asynchronous SRAM in 45nM CMOSDesign of a low power asynchronous SRAM in 45nM CMOS
Design of a low power asynchronous SRAM in 45nM CMOS
 
Sram pdf
Sram pdfSram pdf
Sram pdf
 
Low power sram
Low power sramLow power sram
Low power sram
 
SRAM- Ultra low voltage operation
SRAM- Ultra low voltage operationSRAM- Ultra low voltage operation
SRAM- Ultra low voltage operation
 
8086 MICROPROCESSOR
8086 MICROPROCESSOR8086 MICROPROCESSOR
8086 MICROPROCESSOR
 
A 128 kbit sram with an embedded energy monitoring circuit and sense amplifie...
A 128 kbit sram with an embedded energy monitoring circuit and sense amplifie...A 128 kbit sram with an embedded energy monitoring circuit and sense amplifie...
A 128 kbit sram with an embedded energy monitoring circuit and sense amplifie...
 
SRAM read and write and sense amplifier
SRAM read and write and sense amplifierSRAM read and write and sense amplifier
SRAM read and write and sense amplifier
 
Final Project Report
Final Project ReportFinal Project Report
Final Project Report
 
SRAM
SRAMSRAM
SRAM
 
ADS Lab 5 Report
ADS Lab 5 ReportADS Lab 5 Report
ADS Lab 5 Report
 
High Speed 8-bit Counters using State Excitation Logic and their Application ...
High Speed 8-bit Counters using State Excitation Logic and their Application ...High Speed 8-bit Counters using State Excitation Logic and their Application ...
High Speed 8-bit Counters using State Excitation Logic and their Application ...
 
Assignement 3 ADV report (1)
Assignement 3 ADV report (1)Assignement 3 ADV report (1)
Assignement 3 ADV report (1)
 
Low power sram design using block partitioning
Low power sram design using block partitioningLow power sram design using block partitioning
Low power sram design using block partitioning
 

Viewers also liked

Лекция 4. Оптимизация доступа к памяти (Memory access optimization, cache opt...
Лекция 4. Оптимизация доступа к памяти (Memory access optimization, cache opt...Лекция 4. Оптимизация доступа к памяти (Memory access optimization, cache opt...
Лекция 4. Оптимизация доступа к памяти (Memory access optimization, cache opt...Mikhail Kurnosov
 
Domain logic patterns of Software Architecture
Domain logic patterns of Software ArchitectureDomain logic patterns of Software Architecture
Domain logic patterns of Software ArchitectureShweta Ghate
 
Cache optimization
Cache optimizationCache optimization
Cache optimizationKavi Kathir
 
Cache Optimization with Akamai
Cache Optimization with AkamaiCache Optimization with Akamai
Cache Optimization with AkamaiBlake Crosby
 
Memory technology and optimization in Advance Computer Architechture
Memory technology and optimization in Advance Computer ArchitechtureMemory technology and optimization in Advance Computer Architechture
Memory technology and optimization in Advance Computer ArchitechtureShweta Ghate
 
Memory Hierarchy Design, Basics, Cache Optimization, Address Translation
Memory Hierarchy Design, Basics, Cache Optimization, Address TranslationMemory Hierarchy Design, Basics, Cache Optimization, Address Translation
Memory Hierarchy Design, Basics, Cache Optimization, Address TranslationFarwa Ansari
 
Classification of memory hierarchy in system unit
Classification of memory hierarchy in system unitClassification of memory hierarchy in system unit
Classification of memory hierarchy in system unitDeepjyoti Talukdar
 
Patterns of Enterprise Application Architecture (by example)
Patterns of Enterprise Application Architecture (by example)Patterns of Enterprise Application Architecture (by example)
Patterns of Enterprise Application Architecture (by example)Paulo Gandra de Sousa
 

Viewers also liked (9)

Cache memory
Cache memoryCache memory
Cache memory
 
Лекция 4. Оптимизация доступа к памяти (Memory access optimization, cache opt...
Лекция 4. Оптимизация доступа к памяти (Memory access optimization, cache opt...Лекция 4. Оптимизация доступа к памяти (Memory access optimization, cache opt...
Лекция 4. Оптимизация доступа к памяти (Memory access optimization, cache opt...
 
Domain logic patterns of Software Architecture
Domain logic patterns of Software ArchitectureDomain logic patterns of Software Architecture
Domain logic patterns of Software Architecture
 
Cache optimization
Cache optimizationCache optimization
Cache optimization
 
Cache Optimization with Akamai
Cache Optimization with AkamaiCache Optimization with Akamai
Cache Optimization with Akamai
 
Memory technology and optimization in Advance Computer Architechture
Memory technology and optimization in Advance Computer ArchitechtureMemory technology and optimization in Advance Computer Architechture
Memory technology and optimization in Advance Computer Architechture
 
Memory Hierarchy Design, Basics, Cache Optimization, Address Translation
Memory Hierarchy Design, Basics, Cache Optimization, Address TranslationMemory Hierarchy Design, Basics, Cache Optimization, Address Translation
Memory Hierarchy Design, Basics, Cache Optimization, Address Translation
 
Classification of memory hierarchy in system unit
Classification of memory hierarchy in system unitClassification of memory hierarchy in system unit
Classification of memory hierarchy in system unit
 
Patterns of Enterprise Application Architecture (by example)
Patterns of Enterprise Application Architecture (by example)Patterns of Enterprise Application Architecture (by example)
Patterns of Enterprise Application Architecture (by example)
 

Similar to Cache Design for an Alpha Microprocessor

POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAPOLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAAiman Hud
 
Notes of 8085 micro processor Programming for BCA, MCA, MSC (CS), MSC (IT) &...
Notes of 8085 micro processor Programming  for BCA, MCA, MSC (CS), MSC (IT) &...Notes of 8085 micro processor Programming  for BCA, MCA, MSC (CS), MSC (IT) &...
Notes of 8085 micro processor Programming for BCA, MCA, MSC (CS), MSC (IT) &...ssuserd6b1fd
 
8085 micro processor
8085 micro processor8085 micro processor
8085 micro processorArun Umrao
 
Single core design space exploration
Single core design space explorationSingle core design space exploration
Single core design space explorationVishesh Chanana
 
Chapter 8 : Memory
Chapter 8 : MemoryChapter 8 : Memory
Chapter 8 : MemoryAmin Omi
 
Section08 memory management
Section08 memory managementSection08 memory management
Section08 memory managementAlmedaAsuncion
 
Design and Implementation of DMC for Memory Reliability Enhancement
Design and Implementation of DMC for Memory Reliability EnhancementDesign and Implementation of DMC for Memory Reliability Enhancement
Design and Implementation of DMC for Memory Reliability EnhancementIRJET Journal
 
**Understanding_CTS_Log_Messages.pdf
**Understanding_CTS_Log_Messages.pdf**Understanding_CTS_Log_Messages.pdf
**Understanding_CTS_Log_Messages.pdfagnathavasi
 
A Novel Architecture Design & Characterization of CAM Controller IP Core with...
A Novel Architecture Design & Characterization of CAM Controller IP Core with...A Novel Architecture Design & Characterization of CAM Controller IP Core with...
A Novel Architecture Design & Characterization of CAM Controller IP Core with...idescitation
 
Paper id 37201520
Paper id 37201520Paper id 37201520
Paper id 37201520IJRAT
 
IMPLEMENTATION OF SOC CORE FOR IOT ENGINE
IMPLEMENTATION OF SOC CORE FOR IOT ENGINEIMPLEMENTATION OF SOC CORE FOR IOT ENGINE
IMPLEMENTATION OF SOC CORE FOR IOT ENGINEijistjournal
 
Due 24 August (Friday, 1159 p.m. EDT)Use Module 1 and Book Ch.docx
Due 24 August (Friday, 1159 p.m. EDT)Use Module 1 and Book Ch.docxDue 24 August (Friday, 1159 p.m. EDT)Use Module 1 and Book Ch.docx
Due 24 August (Friday, 1159 p.m. EDT)Use Module 1 and Book Ch.docxjacksnathalie
 
Analysis of Multicore Performance Degradation of Scientific Applications
Analysis of Multicore Performance Degradation of Scientific ApplicationsAnalysis of Multicore Performance Degradation of Scientific Applications
Analysis of Multicore Performance Degradation of Scientific ApplicationsJames McGalliard
 
Analysis of various mcm algorithms for reconfigurable rrc fir filter
Analysis of various mcm algorithms for reconfigurable rrc fir filterAnalysis of various mcm algorithms for reconfigurable rrc fir filter
Analysis of various mcm algorithms for reconfigurable rrc fir filtereSAT Journals
 
VJITSk 6713 user manual
VJITSk 6713 user manualVJITSk 6713 user manual
VJITSk 6713 user manualkot seelam
 
An application classification guided cache tuning heuristic for
An application classification guided cache tuning heuristic forAn application classification guided cache tuning heuristic for
An application classification guided cache tuning heuristic forKhyati Rajput
 
References1. HCS 2010 online manuals.2. Data Data provi.docx
References1. HCS 2010 online manuals.2. Data  Data provi.docxReferences1. HCS 2010 online manuals.2. Data  Data provi.docx
References1. HCS 2010 online manuals.2. Data Data provi.docxdebishakespeare
 
5035-Pipeline-Optimization-Techniques.pdf
5035-Pipeline-Optimization-Techniques.pdf5035-Pipeline-Optimization-Techniques.pdf
5035-Pipeline-Optimization-Techniques.pdfssmukherjee2013
 
DESIGNED DYNAMIC SEGMENTED LRU AND MODIFIED MOESI PROTOCOL FOR RING CONNECTED...
DESIGNED DYNAMIC SEGMENTED LRU AND MODIFIED MOESI PROTOCOL FOR RING CONNECTED...DESIGNED DYNAMIC SEGMENTED LRU AND MODIFIED MOESI PROTOCOL FOR RING CONNECTED...
DESIGNED DYNAMIC SEGMENTED LRU AND MODIFIED MOESI PROTOCOL FOR RING CONNECTED...Ilango Jeyasubramanian
 

Similar to Cache Design for an Alpha Microprocessor (20)

POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAPOLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA
 
Notes of 8085 micro processor Programming for BCA, MCA, MSC (CS), MSC (IT) &...
Notes of 8085 micro processor Programming  for BCA, MCA, MSC (CS), MSC (IT) &...Notes of 8085 micro processor Programming  for BCA, MCA, MSC (CS), MSC (IT) &...
Notes of 8085 micro processor Programming for BCA, MCA, MSC (CS), MSC (IT) &...
 
8085 micro processor
8085 micro processor8085 micro processor
8085 micro processor
 
Single core design space exploration
Single core design space explorationSingle core design space exploration
Single core design space exploration
 
Chapter 8 : Memory
Chapter 8 : MemoryChapter 8 : Memory
Chapter 8 : Memory
 
Section08 memory management
Section08 memory managementSection08 memory management
Section08 memory management
 
Design and Implementation of DMC for Memory Reliability Enhancement
Design and Implementation of DMC for Memory Reliability EnhancementDesign and Implementation of DMC for Memory Reliability Enhancement
Design and Implementation of DMC for Memory Reliability Enhancement
 
**Understanding_CTS_Log_Messages.pdf
**Understanding_CTS_Log_Messages.pdf**Understanding_CTS_Log_Messages.pdf
**Understanding_CTS_Log_Messages.pdf
 
A Novel Architecture Design & Characterization of CAM Controller IP Core with...
A Novel Architecture Design & Characterization of CAM Controller IP Core with...A Novel Architecture Design & Characterization of CAM Controller IP Core with...
A Novel Architecture Design & Characterization of CAM Controller IP Core with...
 
Paper id 37201520
Paper id 37201520Paper id 37201520
Paper id 37201520
 
IMPLEMENTATION OF SOC CORE FOR IOT ENGINE
IMPLEMENTATION OF SOC CORE FOR IOT ENGINEIMPLEMENTATION OF SOC CORE FOR IOT ENGINE
IMPLEMENTATION OF SOC CORE FOR IOT ENGINE
 
Multiprocessing operating systems
Multiprocessing operating systemsMultiprocessing operating systems
Multiprocessing operating systems
 
Due 24 August (Friday, 1159 p.m. EDT)Use Module 1 and Book Ch.docx
Due 24 August (Friday, 1159 p.m. EDT)Use Module 1 and Book Ch.docxDue 24 August (Friday, 1159 p.m. EDT)Use Module 1 and Book Ch.docx
Due 24 August (Friday, 1159 p.m. EDT)Use Module 1 and Book Ch.docx
 
Analysis of Multicore Performance Degradation of Scientific Applications
Analysis of Multicore Performance Degradation of Scientific ApplicationsAnalysis of Multicore Performance Degradation of Scientific Applications
Analysis of Multicore Performance Degradation of Scientific Applications
 
Analysis of various mcm algorithms for reconfigurable rrc fir filter
Analysis of various mcm algorithms for reconfigurable rrc fir filterAnalysis of various mcm algorithms for reconfigurable rrc fir filter
Analysis of various mcm algorithms for reconfigurable rrc fir filter
 
VJITSk 6713 user manual
VJITSk 6713 user manualVJITSk 6713 user manual
VJITSk 6713 user manual
 
An application classification guided cache tuning heuristic for
An application classification guided cache tuning heuristic forAn application classification guided cache tuning heuristic for
An application classification guided cache tuning heuristic for
 
References1. HCS 2010 online manuals.2. Data Data provi.docx
References1. HCS 2010 online manuals.2. Data  Data provi.docxReferences1. HCS 2010 online manuals.2. Data  Data provi.docx
References1. HCS 2010 online manuals.2. Data Data provi.docx
 
5035-Pipeline-Optimization-Techniques.pdf
5035-Pipeline-Optimization-Techniques.pdf5035-Pipeline-Optimization-Techniques.pdf
5035-Pipeline-Optimization-Techniques.pdf
 
DESIGNED DYNAMIC SEGMENTED LRU AND MODIFIED MOESI PROTOCOL FOR RING CONNECTED...
DESIGNED DYNAMIC SEGMENTED LRU AND MODIFIED MOESI PROTOCOL FOR RING CONNECTED...DESIGNED DYNAMIC SEGMENTED LRU AND MODIFIED MOESI PROTOCOL FOR RING CONNECTED...
DESIGNED DYNAMIC SEGMENTED LRU AND MODIFIED MOESI PROTOCOL FOR RING CONNECTED...
 

Recently uploaded

Wadi Rum luxhotel lodge Analysis case study.pptx
Wadi Rum luxhotel lodge Analysis case study.pptxWadi Rum luxhotel lodge Analysis case study.pptx
Wadi Rum luxhotel lodge Analysis case study.pptxNadaHaitham1
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaOmar Fathy
 
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills KuwaitKuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwaitjaanualu31
 
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptxA CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptxmaisarahman1
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptDineshKumar4165
 
Verification of thevenin's theorem for BEEE Lab (1).pptx
Verification of thevenin's theorem for BEEE Lab (1).pptxVerification of thevenin's theorem for BEEE Lab (1).pptx
Verification of thevenin's theorem for BEEE Lab (1).pptxchumtiyababu
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Arindam Chakraborty, Ph.D., P.E. (CA, TX)
 
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptxOrlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptxMuhammadAsimMuhammad6
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdfKamal Acharya
 
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARHAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARKOUSTAV SARKAR
 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityMorshed Ahmed Rahath
 
Hospital management system project report.pdf
Hospital management system project report.pdfHospital management system project report.pdf
Hospital management system project report.pdfKamal Acharya
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTbhaskargani46
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueBhangaleSonal
 
Engineering Drawing focus on projection of planes
Engineering Drawing focus on projection of planesEngineering Drawing focus on projection of planes
Engineering Drawing focus on projection of planesRAJNEESHKUMAR341697
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptNANDHAKUMARA10
 

Recently uploaded (20)

Wadi Rum luxhotel lodge Analysis case study.pptx
Wadi Rum luxhotel lodge Analysis case study.pptxWadi Rum luxhotel lodge Analysis case study.pptx
Wadi Rum luxhotel lodge Analysis case study.pptx
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills KuwaitKuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
 
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptxA CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
Verification of thevenin's theorem for BEEE Lab (1).pptx
Verification of thevenin's theorem for BEEE Lab (1).pptxVerification of thevenin's theorem for BEEE Lab (1).pptx
Verification of thevenin's theorem for BEEE Lab (1).pptx
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptxOrlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdf
 
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARHAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna Municipality
 
Hospital management system project report.pdf
Hospital management system project report.pdfHospital management system project report.pdf
Hospital management system project report.pdf
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
Engineering Drawing focus on projection of planes
Engineering Drawing focus on projection of planesEngineering Drawing focus on projection of planes
Engineering Drawing focus on projection of planes
 
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.ppt
 

Cache Design for an Alpha Microprocessor

  • 1. 1 University of Texas at Dallas Department of Electrical Engineering EEDG 6304 – Computer Architecture Project #1 “CACHE DESIGN” Team Members Bharat Biyani (2021152193) Shree Viswa Shamanthan L D (2021180127)
  • 2. 2 TABLE OF CONTENTS Sr. No. Description Page No. 1 INTRODUCTION 3 2 SIMULATION APPROACH 4 3 CPI FORMULAE 4 4 PART 2: FIND CPI 5 5 PART 3: OPTIMIZE CPI FOR EACH BENCHMARK 7 6 PART 4: DEFINE COST FUNCTION 10 7 PART 5: OPTIMIZE CACHE FOR PERFORMANCE/ COST 11 8 CONCLUSION 14 9 APPENDIX 15
  • 3. 3 1. INTRODUCTION Caches are used by the central processing unit (CPU) of a computer to reduce the average time to access memory. The cache is a smaller, faster memory which stores copies of the data from frequently used main memory locations. Hence Caches form the integral part of a microprocessor design. Any cache design is proven to the industry/customers through their benchmarks. The main aim of this project is to analyze the cache performance of an Alpha microprocessor for 3 individual benchmarks (GCC, Anagram Alpha and Go) with following design constraints. The cache design parameters that can be tuned in our example are  Cache Levels: One or two levels, for data and instruction caches  Unified caches: Selection of separate vs. unified instruction/data caches  Size: Cache size is the most important factor to avoid capacity misses.  Block size: Block size of the cache, usually 64 or 32 bytes.  Block replacement policy: Selection between FIFO, LRU and Random.  Associativity: Selection of cache associativity (e.g. direct mapped (1-way set associative), 2-way set associative, etc.) While larger caches generally mean better performance, they also come at a greater cost. Thus, sensible design choices and trade-offs are required. So we are going to use the cost function to identify the optimal configuration.
  • 4. 4 2. SIMULATION APPROACH Three benchmarks (GCC, Anagram and Go) were selected and run on the Simplesim3.0 simulation tool. Multiple techniques are applied to achieve the optimal configuration. The following steps were carried out in order to determine the optimal configuration: 1. Select a particular benchmark. 2. Select one cache structure combination from these 3 cases for each benchmark  L1 Separate - L2 Separate  L1 Separate - L2 Unified  L1 Unified - L2 Unified Where L1 and L2 are Levels of Cache. 3. For each cache structural combination; vary the page replacement policy iteratively (LRU, FIFO and Random) 4. For each cache structural combination and page replacement policy; vary the block size values iteratively (32Kb, 64Kb) 5. For each cache structural combination, page replacement policy and block size; vary associativity iteratively (1, 2, 4, 8) 6. Calculate the CPI for each setting (shown below) 7. Repeat steps 1 to 6 for all possible combination of configurations. 8. Calculate the cost for each cache configuration using the cost function (shown on page no. 10). 9. Compare the results and annotate graphically Optimal cache configuration for each benchmark, as well as all benchmarks combined is selected with the help of the defined cost function. 3. CPI FORMULAE 3.1. L1 separate and L2 separate CPI = CPI ideal + 6 * ( L1InsMissRate * %L1Ins + L1DataMissRate * %L1Data) + 50 * ( L2InsMissRate * %L2Ins + L2DataMissRate * %L2Data ) 3.2. L1 separate and L2 unified CPI = CPI ideal + 6 * ( L1InsMissRate * %L1Ins + L1DataMissRate * %L1Data) + 50 * ( L2MissRate * %L2Data ) ) 3.3. L1 unified and L2 unified CPI = CPI ideal + 6 * ( L1MissRate * ( %L1Data) ) + 50 * ( L2InsMissRate * ( %L2Data ) ) ) Where, %LxIns = Instruction Accesses for Lx /Total Memory Accesses %LxData = Data Accesses for Lx /Total Memory Accesses
  • 5. 5 4. PART 2: FIND CPI In this part, the CPI for the 3 individual benchmarks was calculated. Our baseline configuration will be the Alpha 21264 EV6 configuration:  Cache Levels: Two Levels.  Unified caches: Separate L1 data and Instruction cache, unified L2 cache.  Size: 64KB Separate L1 data and instruction caches, 1MB unified L2 cache.  Block size: 64 bytes  Block replacement policy: FIFO  Associativity: 2- way set associative L1 cache, Direct-mapped L2 cache. ------------------------------------------------------------------------------------------------------------------------------- 4.1. GCC Benchmark Total Memory Accesses = 337327101 Number of L1 Instruction cache accesses = 337327101 Number of L1Data cache access = 124102799 Number of L2 access = 3330118 L1 Ins miss rate = 0.0047, L1 Data miss rate = 0.0106, L2 miss rate = 0.1311 CPI = CPI ideal + 6 * ( L1InsMissRate * %L1Ins + L1DataMissRate * %L1Data) + 50 * ( L2MissRate * %L2Data ) ) CPI = 1 + 6 * (0.0047 * (337327101/337327101) + 0.0106 * (124102799/337327101)) + 50 * (0.1311 * (3330118/337327101))) CPI = 1.11631 ---------------------------------------------------------------------------------------------------------------------------- 4.2. Anagram Benchmark Total Memory Accesses = 25724898 Number of L1 Instruction cache accesses = 25724898 Number of L1Data cache access = 11182060 Number of L2 access = 92401 L1 Ins miss rate = 0, L1 Data miss rate = 0.0048, L2 miss rate = 0.3191
  • 6. 6 CPI = 1 + 6 * (0 * (25724898/25724898) + 0.0048 * (11182060/25724898)) + 50 * (0.3191 * (92401/25724898))) CPI = CPI ideal + 6 * (L1InsMissRate * %Ins + L1DataMissRate * %Data) + 50 * (L2MissRate * %Data)) CPI = 1.06983 ---------------------------------------------------------------------------------------------------------------------------- 4.3. GO Benchmark Total Memory Accesses = 545823664 Number of L1 Instruction cache accesses = 545823664 Number of L1Data cache access = 213791111 Number of L2 access = 1021478 L1 Ins miss rate = 0.0013, L1 Data miss rate = 0.0010, L2 miss rate = 0.0907 CPI = CPI ideal + 6 * (L1InsMissRate * %Ins + L1DataMissRate * %Data) + 50 * (L2MissRate * %Data)) CPI = 1 + 6 * (0.0013 * (545823664/545823664) + 0.0010 * (213791111/545823664)) + 50 * (0.0907 * (1021478/545823664))) CPI = 1.01864 CONCLUSION FOR PART 2: Sr. No. Benchmark CPI 1 GCC 1.11631 2 Anagram 1.06983 3 GO 1.01864
  • 7. 7 5. PART 3: OPTIMIZE CPI FOR EACH BENCHMARK Given a two-level cache hierarchy, 128KB available for L1 cache and 1MB available for L2 cache, in order to find the optimal configuration (in terms of achieved CPI) for each benchmark, Decision must be made between unified/separate caches, associativity, replacement policy etc. 5.1. Assumptions 1. Both L1 and L2 use the same block size (e.g. if L1 cache uses 32KB, L2 cache also uses 32KB). We have considered only 32KB and 64KB block sizes for both L1 and L2 in order to find the optimal configuration. Having higher block size would decrease the number of lines in the cache and increases the miss penalty. 2. L1 block size cannot be larger than L2 block size. 3. Associativity values range from 1, 2, 4 and 8. Design does not consider associativity more than 8 because they have much higher cost for a very little performance improvement in reality. Directly mapped design (1-way associative) is also taken into consideration even though it gives poor performance, but it will help in analyzing the design better. 4. While optimizing, only three replacement policies are considered Random, FIFO (First IN First OUT) and LRU (Least Recently Used). The below graphs show the CPI plotted against various configuration for L1 Separate-L2 separate, L1 Separate L2 unified, and L1 & L2 unified for all three benchmarks 5.2. GCC Benchmark 0.95 1 1.05 1.1 1.15 1.2 1.25 1.3 2048:32:2:f--16384:32:2:f 2048:32:2:f--8192:32:4:f 2048:32:2:l--4096:32:8:f 2048:32:2:r--… 2048:64:1:f--16384:64:1:f 2048:64:1:f--8192:64:2:f 2048:64:1:l--4096:64:4:f 2048:64:1:r--2048:64:8:f 256:64:8:f--16384:64:1:f 256:64:8:f--8192:64:2:f 256:64:8:l--4096:64:4:f 256:64:8:r--2048:64:8:f 4096:32:1:f--16384:32:2:f 4096:32:1:f--8192:32:4:f 4096:32:1:l--4096:32:8:f 4096:32:1:r--… 512:32:8:f--16384:32:2:f 512:32:8:f--8192:32:4:f 512:32:8:l--4096:32:8:f 512:32:8:r--32768:32:1:f 512:64:4:f--16384:64:1:f 512:64:4:f--8192:64:2:f 512:64:4:l--4096:64:4:f 512:64:4:r--2048:64:8:f 1024:32:4:f--16384:32:2:f 1024:32:4:f--8192:32:4:f 1024:32:4:l--4096:32:8:f 1024:32:4:r--… 1024:64:2:f--16384:64:1:f 1024:64:2:f--8192:64:2:f 1024:64:2:l--4096:64:4:f 1024:64:2:r--2048:64:8:f L1L2unified L1sepL2unified L1sepL2sep
  • 8. 8 5.3. Anagram Benchmark 5.4. GO Benchmark 1 1.05 1.1 1.15 1.2 1.25 2048:32:2:f--16384:32:2:f 2048:32:2:f--8192:32:4:f 2048:32:2:l--4096:32:8:f 2048:32:2:r--32768:32:1:f 2048:64:1:f--16384:64:1:f 2048:64:1:f--8192:64:2:f 2048:64:1:l--4096:64:4:f 2048:64:1:r--2048:64:8:f 256:64:8:f--16384:64:1:f 256:64:8:f--8192:64:2:f 256:64:8:l--4096:64:4:f 256:64:8:r--2048:64:8:f 4096:32:1:f--16384:32:2:f 4096:32:1:f--8192:32:4:f 4096:32:1:l--4096:32:8:f 4096:32:1:r--32768:32:1:f 512:32:8:f--16384:32:2:f 512:32:8:f--8192:32:4:f 512:32:8:l--4096:32:8:f 512:32:8:r--32768:32:1:f 512:64:4:f--16384:64:1:f 512:64:4:f--8192:64:2:f 512:64:4:l--4096:64:4:f 512:64:4:r--2048:64:8:f 1024:32:4:f--16384:32:2:f 1024:32:4:f--8192:32:4:f 1024:32:4:l--4096:32:8:f 1024:32:4:r--32768:32:1:f 1024:64:2:f--16384:64:1:f 1024:64:2:f--8192:64:2:f 1024:64:2:l--4096:64:4:f 1024:64:2:r--2048:64:8:f L1L2unified L1sepL2unified L1sepL2sep 0.9 0.95 1 1.05 1.1 1.15 1.2 2048:32:2:f--16384:32:2:f 2048:32:2:f--8192:32:4:f 2048:32:2:l--4096:32:8:f 2048:32:2:r--32768:32:1:f 2048:64:1:f--16384:64:1:f 2048:64:1:f--8192:64:2:f 2048:64:1:l--4096:64:4:f 2048:64:1:r--2048:64:8:f 256:64:8:f--16384:64:1:f 256:64:8:f--8192:64:2:f 256:64:8:l--4096:64:4:f 256:64:8:r--2048:64:8:f 4096:32:1:f--16384:32:2:f 4096:32:1:f--8192:32:4:f 4096:32:1:l--4096:32:8:f 4096:32:1:r--32768:32:1:f 512:32:8:f--16384:32:2:f 512:32:8:f--8192:32:4:f 512:32:8:l--4096:32:8:f 512:32:8:r--32768:32:1:f 512:64:4:f--16384:64:1:f 512:64:4:f--8192:64:2:f 512:64:4:l--4096:64:4:f 512:64:4:r--2048:64:8:f 1024:32:4:f--16384:32:2:f 1024:32:4:f--8192:32:4:f 1024:32:4:l--4096:32:8:f 1024:32:4:r--32768:32:1:f 1024:64:2:f--16384:64:1:f 1024:64:2:f--8192:64:2:f 1024:64:2:l--4096:64:4:f 1024:64:2:r--2048:64:8:f L1L2unified L1sepL2unified L1sepL2sep
  • 9. 9 CONCLUSION FOR PART 3: The graphs plotted above helps us to decide the design choices. Optimum CPI in each case is as follows: Sr. No. Benchmark Configuration Block Size (In Bytes) Replacement Policy Associativity Optimal CPI L1 L2 L1 L2 L1 L2 1 GCC L1L2unified 64 64 LRU LRU 8 8 1.05296841 L1sepL2unified 64 64 LRU LRU 8 8 1.059915236 L1sepL2sep 64 64 LRU LRU 8 1 1.061853108 2 Anagram L1L2unified 64 64 LRU FIFO 4 1 1.07084492 L1sepL2unified 64 64 LRU FIFO 4 1 1.069724523 L1sepL2sep 64 64 FIFO FIFO 4 1 1.093832533 3 Go L1L2unified 64 64 Random LRU 8 4 1.011049037 L1sepL2unified 64 64 Random FIFO 8 2 1.012941826 L1sepL2sep 64 64 LRU Random 4 8 1.013631953 Row highlighted in green is the optimal CPI configuration for the corresponding Benchmark. Hence, the Best Configuration for each benchmark from the above table is shown below: ------------------------------------------------------------------------------------------------------------------------------- GO Benchmark L1 unified 64 bytes block size, 8 way set associative and Random replacement Policy L2 unified 64 bytes block size, 4 way set associative and LRU replacement Policy CPI Optimum = 1.01105 ------------------------------------------------------------------------------------------------------------------------------- ANAGRAM Benchmark L1 separate 64 bytes block size, 4-way set associative and LRU replacement policy L2 unified 64 bytes block size, 1-way set associative and FIFO replacement policy CPI Optimum = 1.06972 ------------------------------------------------------------------------------------------------------------------------------- GCC Benchmark: L1 unified 64 bytes block size, 8-way set associative and LRU replacement Policy L2 unified 64 bytes block size, 8-way set associative and LRU replacement Policy. CPI Optimum = 1.05297 -------------------------------------------------------------------------------------------------------------------------------
  • 10. 10 6. PART 4: DEFINE COST FUNCTION Cost function plays a major role in determining parameters that give least CPI. So we need to define a cost function, which assists architect to design a cost efficient, and performance effective Cache. It refrains us from choosing whatever design giving the least CPI. The cost function can be defined as below. Cost Function = 0.35*(L1 cache size) + 0.25* (L2 Cache size)+ 0.075* (L1 associativity) + 0.075* (L2 associativity)+ 0.15 *(Unified/Separate)+ 0.05*(L1 policy)+0.05*(L2 policy)+ 0*(block size) Explanation of the cost function can be found in the below table. We normalized the cost function in such a way that the total cost will not exceed 100 units. For a given cost of a configuration say 85%, if the L1Cache Size doubles, the new cost function will become 120%. So assumed cost function is reasonable. Cost Function Weight Overall Weight Comment L1 Cache Size 0.35 64KB: 50 units 128KB: 100 units If cache size doubles, cost also doubles L2 Cache Size 0.25 512KB: 100 units 1MB: 200 units If cache size doubles, cost also doubles L1 Associativity 0.075 1: 2 units 2: 4 units 4: 8 units 8: 16 units Increasing associativity increases number of comparators on hardware, which in turn increases cost. L2 Associativity 0.075 1: 2 units 2: 4 units 4: 8 units 8: 16 units Increasing associativity increases number of comparators on hardware, which in turn increases cost. Unified/Separate 0.15 L1 Separate-L2 Separate: 1.5 units L1 Separate - L2 Unified: 0.5 units L1 Unified - L2 Unified: 0 units Separate data and instruction cache will involve some additional hardware cost compared to unified L1 Policy 0.05 LRU: 0.1 units FIFO: 0.05 units Random: 0 units For Random, no extra hardware required. For FIFO to LRU, cost should increase by 5%. L2 Policy 0.05 LRU: 0.1 units FIFO: 0.05 units Random: 0 units For Random, no extra hardware required. For FIFO to LRU, cost should increase by 5%. Block Size 0 32 Bytes: 0 units 64 Bytes: 0 units With respect to hardware there will not be any additional cost for change in block size.
  • 11. 11 7. PART 5: OPTIMIZE CACHE FOR PERFORMANCE/ COST To find the optimal configuration, the cache configuration such as associativity, Replacement policy and cache type is considered along with the cost. A plot of Cache configuration for each benchmark is plotted against the product of the CPI and cost. The configuration, which gives the lowest value among all in the graph, is considered as the optimal configuration. 7.1. GCC Benchmark 80 85 90 95 100 105 110 2048:32:2:f--16384:32:1:f 2048:32:2:f--8192:32:2:f 2048:32:2:l--4096:32:4:f 2048:32:2:r--2048:32:8:f 2048:64:1:f--1024:64:8:f 2048:64:1:f--8192:64:1:f 2048:64:1:l--4096:64:2:f 2048:64:1:r--2048:64:4:f 256:64:8:f--1024:64:8:f 256:64:8:f--8192:64:1:f 256:64:8:l--4096:64:2:f 256:64:8:r--2048:64:4:f 4096:32:1:f--16384:32:1:f 4096:32:1:f--8192:32:2:f 4096:32:1:l--4096:32:4:f 4096:32:1:r--2048:32:8:f 512:32:8:f--16384:32:1:f 512:32:8:f--8192:32:2:f 512:32:8:l--4096:32:4:f 512:32:8:r--2048:32:8:f 512:64:4:f--1024:64:8:f 512:64:4:f--8192:64:1:f 512:64:4:l--4096:64:2:f 512:64:4:r--2048:64:4:f 1024:32:4:f--16384:32:1:f 1024:32:4:f--8192:32:2:f 1024:32:4:l--4096:32:4:f 1024:32:4:r--2048:32:8:f 1024:64:2:f--1024:64:8:f 1024:64:2:f--8192:64:1:f 1024:64:2:l--4096:64:2:f 1024:64:2:r--2048:64:4:f L1L2unified L1sepL2unified L1sepL2sep
  • 12. 12 7.2. Anagram Benchmark 7.3. GO Benchmark 80 85 90 95 100 105 110 2048:32:2:f--16384:32:2:f 2048:32:2:f--8192:32:4:f 2048:32:2:l--4096:32:8:f 2048:32:2:r--32768:32:1:f 2048:64:1:f--16384:64:1:f 2048:64:1:f--8192:64:2:f 2048:64:1:l--4096:64:4:f 2048:64:1:r--2048:64:8:f 256:64:8:f--16384:64:1:f 256:64:8:f--8192:64:2:f 256:64:8:l--4096:64:4:f 256:64:8:r--2048:64:8:f 4096:32:1:f--16384:32:2:f 4096:32:1:f--8192:32:4:f 4096:32:1:l--4096:32:8:f 4096:32:1:r--32768:32:1:f 512:32:8:f--16384:32:2:f 512:32:8:f--8192:32:4:f 512:32:8:l--4096:32:8:f 512:32:8:r--32768:32:1:f 512:64:4:f--16384:64:1:f 512:64:4:f--8192:64:2:f 512:64:4:l--4096:64:4:f 512:64:4:r--2048:64:8:f 1024:32:4:f--16384:32:2:f 1024:32:4:f--8192:32:4:f 1024:32:4:l--4096:32:8:f 1024:32:4:r--32768:32:1:f 1024:64:2:f--16384:64:1:f 1024:64:2:f--8192:64:2:f 1024:64:2:l--4096:64:4:f 1024:64:2:r--2048:64:8:f L1L2unified L1sepL2unified L1sepL2sep 80 82 84 86 88 90 92 94 96 98 100 2048:32:2:f--16384:32:2:f 2048:32:2:f--8192:32:4:f 2048:32:2:l--4096:32:8:f 2048:32:2:r--32768:32:1:f 2048:64:1:f--16384:64:1:f 2048:64:1:f--8192:64:2:f 2048:64:1:l--4096:64:4:f 2048:64:1:r--2048:64:8:f 256:64:8:f--16384:64:1:f 256:64:8:f--8192:64:2:f 256:64:8:l--4096:64:4:f 256:64:8:r--2048:64:8:f 4096:32:1:f--16384:32:2:f 4096:32:1:f--8192:32:4:f 4096:32:1:l--4096:32:8:f 4096:32:1:r--32768:32:1:f 512:32:8:f--16384:32:2:f 512:32:8:f--8192:32:4:f 512:32:8:l--4096:32:8:f 512:32:8:r--32768:32:1:f 512:64:4:f--16384:64:1:f 512:64:4:f--8192:64:2:f 512:64:4:l--4096:64:4:f 512:64:4:r--2048:64:8:f 1024:32:4:f--16384:32:2:f 1024:32:4:f--8192:32:4:f 1024:32:4:l--4096:32:8:f 1024:32:4:r--32768:32:1:f 1024:64:2:f--16384:64:1:f 1024:64:2:f--8192:64:2:f 1024:64:2:l--4096:64:4:f 1024:64:2:r--2048:64:8:f L1L2unified L1sepL2unified L1sepL2sep
  • 13. 13 Hence, from the graph above the optimum configuration would be as follows for all the 3 benchmarks- Row highlighted in green is the optimal CPI configuration for the corresponding benchmark. Hence, the optimum configuration considering all three benchmark together with different specification constraints, Cost and CPI would be – ----------------------------------------------------------------------------------------------------------------------------------- Benchmark: GO Cache Levels: L1 and L2 Configuration: L1 separate and L2 unified Block size: 64 Bytes for L1 and 64 Bytes for L2 Block replacement policy: LRU for L1 and FIFO for L2 Associativity: 2-way associative for L1 and 2-way associative for L2 ------------------------------------------------------------------------------------------------------------------------------------ Sr. No. Benchmark Configuration Block Size (in Bytes) Replacement Policy Associativity Optimal Configuration L1 L2 L1 L2 L1 L2 (CPI*Cost) 1 GCC L1L2unified 64 64 LRU LRU 4 2 91.53571716 L1sepL2unified 64 64 LRU LRU 4 2 92.14588838 L1sepL2sep 64 64 LRU LRU 4 4 92.65215522 2 Anagram L1L2unified 64 64 LRU Random 2 1 91.51083284 L1sepL2unified 64 64 LRU Random 2 1 91.49413323 L1sepL2sep 64 64 LRU Random 4 2 93.74364974 3 Go L1L2unified 64 64 LRU FIFO 4 2 86.86445493 L1sepL2unified 64 64 LRU FIFO 2 2 86.83958025 L1sepL2sep 64 64 LRU Random 2 2 86.98242473
  • 14. 14 8. CONCLUSION Thus, the best possible configuration and its cost function have been computed by modifying various parameters such as cache type, associativity and replacement policies. 8.1 Optimal CPI CPI is minimum mostly for LRU and High Associativity and Block size. It’s due to the following real reasons.  High Associativity: This will help to reduce the conflict misses  High Block Size: It takes the advantage for spatial locality.  LRU: It's the best page replacement policy, as it keeps track for the least frequent use of any block need to be replaced. 8.2 Optimal CPI v/s Cost. Here we have observed that high cost cache architectures have optimal values of CPI but the % change of CPI to the % change in cost function is not good. Usually defining the cost function plays a very crucial role such that it should not be very large that CPI wont affect the optimization, at the same time it should not be so small that it doesn’t affect the optimization. Usually a configuration involves with FIFO as replacement policy, 2-way associativity or 4 – way associativity and L1 separate and L2 unified should give us the optimum performance design because cost and CPI with such configuration doesn’t have very high as well as very small value. So their product (CPI * Cost) will be minimum.
  • 15. 15 9. APPENDIX Below table shows all the combination values (Replacement policy [l – LRU, f- FIFO, r -random], Associativity [1, 2, 4, 8], Block Size [32 bytes, 64 bytes], Cost, CPI, Optimal Value (CPI*Cost), Configuration [L1 unified L2 unified, L1 separate L2 unified, L1 separate L2 separate]) for all the 3 benchmarks (GCC, Anagram, GO) from which we plotted all our above corresponding graphs. Sr No. L1 L2 Benchmark Configuration CPI Cost CPI*Cost 1 1024:32:4:f 16384:32:2:f GCC L1L2unified 1.112259099 85.905 95.54861792 2 1024:32:4:f 16384:32:2:l GCC L1L2unified 1.108064778 85.9075 95.19107492 3 1024:32:4:f 16384:32:2:r GCC L1L2unified 1.115354908 85.9025 95.81177496 4 1024:32:4:f 32768:32:1:f GCC L1L2unified 1.149159139 85.755 98.54614197 5 1024:32:4:f 32768:32:1:l GCC L1L2unified 1.149159139 85.7575 98.54901486 6 1024:32:4:f 32768:32:1:r GCC L1L2unified 1.149159139 85.7525 98.54326907 7 1024:32:4:f 4096:32:8:f GCC L1L2unified 1.098028367 86.805 95.31435237 8 1024:32:4:f 4096:32:8:l GCC L1L2unified 1.089889386 86.8075 94.6105729 9 1024:32:4:f 4096:32:8:r GCC L1L2unified 1.103470998 86.8025 95.78404128 10 1024:32:4:f 8192:32:4:f GCC L1L2unified 1.103570863 86.205 95.1333262 11 1024:32:4:f 8192:32:4:l GCC L1L2unified 1.096680192 86.2075 94.54205765 12 1024:32:4:f 8192:32:4:r GCC L1L2unified 1.107515522 86.2025 95.47060676 13 1024:32:4:l 16384:32:2:f GCC L1L2unified 1.104782958 85.9075 94.90914199 14 1024:32:4:l 16384:32:2:l GCC L1L2unified 1.101219231 85.91 94.60574415 15 1024:32:4:l 16384:32:2:r GCC L1L2unified 1.107260183 85.905 95.11918604 16 1024:32:4:l 32768:32:1:f GCC L1L2unified 1.136074221 85.7575 97.42688498 17 1024:32:4:l 32768:32:1:l GCC L1L2unified 1.136074221 85.76 97.42972516 18 1024:32:4:l 32768:32:1:r GCC L1L2unified 1.136074221 85.755 97.42404479 19 1024:32:4:l 4096:32:8:f GCC L1L2unified 1.091223411 86.8075 94.72637628 20 1024:32:4:l 4096:32:8:l GCC L1L2unified 1.083487516 86.81 94.05755126 21 1024:32:4:l 4096:32:8:r GCC L1L2unified 1.096351702 86.805 95.16880945 22 1024:32:4:l 8192:32:4:f GCC L1L2unified 1.096612462 86.2075 94.53621882 23 1024:32:4:l 8192:32:4:l GCC L1L2unified 1.09039767 86.21 94.0031831 24 1024:32:4:l 8192:32:4:r GCC L1L2unified 1.100350029 86.205 94.85567429 25 1024:32:4:r 16384:32:2:f GCC L1L2unified 1.11527412 85.9025 95.8048351 26 1024:32:4:r 16384:32:2:l GCC L1L2unified 1.111187786 85.905 95.45658672 27 1024:32:4:r 16384:32:2:r GCC L1L2unified 1.118367254 85.9 96.06774715 28 1024:32:4:r 32768:32:1:f GCC L1L2unified 1.149631591 85.7525 98.58378298 29 1024:32:4:r 32768:32:1:l GCC L1L2unified 1.149631591 85.755 98.58665706 30 1024:32:4:r 32768:32:1:r GCC L1L2unified 1.149703786 85.75 98.58709962
  • 16. 16 31 1024:32:4:r 4096:32:8:f GCC L1L2unified 1.101294555 86.8025 95.59512057 32 1024:32:4:r 4096:32:8:l GCC L1L2unified 1.093175653 86.805 94.89311257 33 1024:32:4:r 4096:32:8:r GCC L1L2unified 1.107068127 86.8 96.09351342 34 1024:32:4:r 8192:32:4:f GCC L1L2unified 1.106725078 86.2025 95.40246855 35 1024:32:4:r 8192:32:4:l GCC L1L2unified 1.100004133 86.205 94.8258563 36 1024:32:4:r 8192:32:4:r GCC L1L2unified 1.110966593 86.2 95.7653203 37 1024:64:2:f 16384:64:1:f GCC L1L2unified 1.121501913 85.455 95.83794601 38 1024:64:2:f 16384:64:1:l GCC L1L2unified 1.121501913 85.4575 95.84074977 39 1024:64:2:f 16384:64:1:r GCC L1L2unified 1.121501913 85.4525 95.83514226 40 1024:64:2:f 2048:64:8:f GCC L1L2unified 1.078853515 86.505 93.32622333 41 1024:64:2:f 2048:64:8:l GCC L1L2unified 1.07324803 86.5075 92.84400397 42 1024:64:2:f 2048:64:8:r GCC L1L2unified 1.081796395 86.5025 93.57809264 43 1024:64:2:f 4096:64:4:f GCC L1L2unified 1.08268393 85.905 93.007963 44 1024:64:2:f 4096:64:4:l GCC L1L2unified 1.07796598 85.9075 92.60536243 45 1024:64:2:f 4096:64:4:r GCC L1L2unified 1.084879412 85.9025 93.19385365 46 1024:64:2:f 8192:64:2:f GCC L1L2unified 1.088616402 85.605 93.19100705 47 1024:64:2:f 8192:64:2:l GCC L1L2unified 1.08543996 85.6075 92.92180138 48 1024:64:2:f 8192:64:2:r GCC L1L2unified 1.090718458 85.6025 93.36822683 49 1024:64:2:l 16384:64:1:f GCC L1L2unified 1.113383427 85.4575 95.14696424 50 1024:64:2:l 16384:64:1:l GCC L1L2unified 1.113383427 85.46 95.14974769 51 1024:64:2:l 16384:64:1:r GCC L1L2unified 1.113383427 85.455 95.14418078 52 1024:64:2:l 2048:64:8:f GCC L1L2unified 1.074630245 86.5075 92.96357589 53 1024:64:2:l 2048:64:8:l GCC L1L2unified 1.069234774 86.51 92.49950029 54 1024:64:2:l 2048:64:8:r GCC L1L2unified 1.077499265 86.505 93.2090739 55 1024:64:2:l 4096:64:4:f GCC L1L2unified 1.078484152 85.9075 92.64987731 56 1024:64:2:l 4096:64:4:l GCC L1L2unified 1.073945105 85.91 92.26262401 57 1024:64:2:l 4096:64:4:r GCC L1L2unified 1.080368285 85.905 92.80903752 58 1024:64:2:l 8192:64:2:f GCC L1L2unified 1.08413655 85.6075 92.81021972 59 1024:64:2:l 8192:64:2:l GCC L1L2unified 1.08126753 85.61 92.56731325 60 1024:64:2:l 8192:64:2:r GCC L1L2unified 1.085892219 85.605 92.95780343 61 1024:64:2:r 16384:64:1:f GCC L1L2unified 1.120871514 85.4525 95.78127308 62 1024:64:2:r 16384:64:1:l GCC L1L2unified 1.120871514 85.455 95.78407526 63 1024:64:2:r 16384:64:1:r GCC L1L2unified 1.120801859 85.45 95.77251888 64 1024:64:2:r 2048:64:8:f GCC L1L2unified 1.080468975 86.5025 93.46326754 65 1024:64:2:r 2048:64:8:l GCC L1L2unified 1.074933051 86.505 92.98708353 66 1024:64:2:r 2048:64:8:r GCC L1L2unified 1.083577167 86.5 93.72942493 67 1024:64:2:r 4096:64:4:f GCC L1L2unified 1.084353835 85.9025 93.1487053 68 1024:64:2:r 4096:64:4:l GCC L1L2unified 1.079643443 85.905 92.74676994 69 1024:64:2:r 4096:64:4:r GCC L1L2unified 1.086481265 85.9 93.32874064 70 1024:64:2:r 8192:64:2:f GCC L1L2unified 1.090084003 85.6025 93.31391584 71 1024:64:2:r 8192:64:2:l GCC L1L2unified 1.086976115 85.605 93.05059033
  • 17. 17 72 1024:64:2:r 8192:64:2:r GCC L1L2unified 1.092974606 85.6 93.55862631 73 2048:32:2:f 16384:32:2:f GCC L1L2unified 1.124854724 85.605 96.29318861 74 2048:32:2:f 16384:32:2:l GCC L1L2unified 1.120328983 85.6075 95.90856345 75 2048:32:2:f 16384:32:2:r GCC L1L2unified 1.128157291 85.6025 96.57308447 76 2048:32:2:f 32768:32:1:f GCC L1L2unified 1.168888951 85.455 99.88740534 77 2048:32:2:f 32768:32:1:l GCC L1L2unified 1.168888951 85.4575 99.89032756 78 2048:32:2:f 32768:32:1:r GCC L1L2unified 1.168888951 85.4525 99.88448312 79 2048:32:2:f 4096:32:8:f GCC L1L2unified 1.110360124 86.505 96.05170249 80 2048:32:2:f 4096:32:8:l GCC L1L2unified 1.102103706 86.5075 95.34023634 81 2048:32:2:f 4096:32:8:r GCC L1L2unified 1.115680926 86.5025 96.50918931 82 2048:32:2:f 8192:32:4:f GCC L1L2unified 1.115864402 85.905 95.85833146 83 2048:32:2:f 8192:32:4:l GCC L1L2unified 1.108892316 85.9075 95.26216664 84 2048:32:2:f 8192:32:4:r GCC L1L2unified 1.119839714 85.9025 96.19703106 85 2048:32:2:l 16384:32:2:f GCC L1L2unified 1.119501213 85.6075 95.83770012 86 2048:32:2:l 16384:32:2:l GCC L1L2unified 1.115445076 85.61 95.49325292 87 2048:32:2:l 16384:32:2:r GCC L1L2unified 1.122317976 85.605 96.0760303 88 2048:32:2:l 32768:32:1:f GCC L1L2unified 1.158823215 85.4575 99.03013486 89 2048:32:2:l 32768:32:1:l GCC L1L2unified 1.158823215 85.46 99.03303191 90 2048:32:2:l 32768:32:1:r GCC L1L2unified 1.158823215 85.455 99.0272378 91 2048:32:2:l 4096:32:8:f GCC L1L2unified 1.105361067 86.5075 95.62202248 92 2048:32:2:l 4096:32:8:l GCC L1L2unified 1.097305127 86.51 94.9278665 93 2048:32:2:l 4096:32:8:r GCC L1L2unified 1.110543909 86.505 96.06760087 94 2048:32:2:l 8192:32:4:f GCC L1L2unified 1.110825585 85.9075 95.42824899 95 2048:32:2:l 8192:32:4:l GCC L1L2unified 1.104121691 85.91 94.8550945 96 2048:32:2:l 8192:32:4:r GCC L1L2unified 1.114543712 85.905 95.74487755 97 2048:32:2:r 16384:32:2:f GCC L1L2unified 1.127216284 85.6025 96.49253191 98 2048:32:2:r 16384:32:2:l GCC L1L2unified 1.122811537 85.605 96.1182816 99 2048:32:2:r 16384:32:2:r GCC L1L2unified 1.130453758 85.6 96.76684172 100 2048:32:2:r 32768:32:1:f GCC L1L2unified 1.168582602 85.4525 99.85830476 101 2048:32:2:r 32768:32:1:l GCC L1L2unified 1.168582602 85.455 99.86122622 102 2048:32:2:r 32768:32:1:r GCC L1L2unified 1.168476424 85.45 99.84631039 103 2048:32:2:r 4096:32:8:f GCC L1L2unified 1.112789142 86.5025 96.25904273 104 2048:32:2:r 4096:32:8:l GCC L1L2unified 1.104618017 86.505 95.55498157 105 2048:32:2:r 4096:32:8:r GCC L1L2unified 1.118366239 86.5 96.73867968 106 2048:32:2:r 8192:32:4:f GCC L1L2unified 1.118279116 85.9025 96.06297176 107 2048:32:2:r 8192:32:4:l GCC L1L2unified 1.111448567 85.905 95.47898911 108 2048:32:2:r 8192:32:4:r GCC L1L2unified 1.122223797 85.9 96.39902419 109 2048:64:1:f 16384:64:1:f GCC L1L2unified 1.178586689 85.305 100.5393375 110 2048:64:1:f 16384:64:1:l GCC L1L2unified 1.178586689 85.3075 100.542284 111 2048:64:1:f 16384:64:1:r GCC L1L2unified 1.178586689 85.3025 100.536391 112 2048:64:1:f 2048:64:8:f GCC L1L2unified 1.119054642 86.355 96.63596363
  • 18. 18 113 2048:64:1:f 2048:64:8:l GCC L1L2unified 1.113428906 86.3575 96.15293674 114 2048:64:1:f 2048:64:8:r GCC L1L2unified 1.121909494 86.3525 96.87968955 115 2048:64:1:f 4096:64:4:f GCC L1L2unified 1.122917088 85.755 96.2957549 116 2048:64:1:f 4096:64:4:l GCC L1L2unified 1.118131014 85.7575 95.88812043 117 2048:64:1:f 4096:64:4:r GCC L1L2unified 1.124932277 85.7525 96.46575511 118 2048:64:1:f 8192:64:2:f GCC L1L2unified 1.128794723 85.455 96.46115308 119 2048:64:1:f 8192:64:2:l GCC L1L2unified 1.125352108 85.4575 96.16977781 120 2048:64:1:f 8192:64:2:r GCC L1L2unified 1.131145777 85.4525 96.65923453 121 2048:64:1:l 16384:64:1:f GCC L1L2unified 1.178586689 85.3075 100.542284 122 2048:64:1:l 16384:64:1:l GCC L1L2unified 1.178586689 85.31 100.5452304 123 2048:64:1:l 16384:64:1:r GCC L1L2unified 1.178586689 85.305 100.5393375 124 2048:64:1:l 2048:64:8:f GCC L1L2unified 1.119054642 86.3575 96.63876127 125 2048:64:1:l 2048:64:8:l GCC L1L2unified 1.113428906 86.36 96.15572031 126 2048:64:1:l 2048:64:8:r GCC L1L2unified 1.121909494 86.355 96.88249432 127 2048:64:1:l 4096:64:4:f GCC L1L2unified 1.122917088 85.7575 96.29856219 128 2048:64:1:l 4096:64:4:l GCC L1L2unified 1.118131014 85.76 95.89091575 129 2048:64:1:l 4096:64:4:r GCC L1L2unified 1.124932277 85.755 96.46856744 130 2048:64:1:l 8192:64:2:f GCC L1L2unified 1.128794723 85.4575 96.46397506 131 2048:64:1:l 8192:64:2:l GCC L1L2unified 1.125352108 85.46 96.17259119 132 2048:64:1:l 8192:64:2:r GCC L1L2unified 1.131145777 85.455 96.6620624 133 2048:64:1:r 16384:64:1:f GCC L1L2unified 1.178586689 85.3025 100.536391 134 2048:64:1:r 16384:64:1:l GCC L1L2unified 1.178586689 85.305 100.5393375 135 2048:64:1:r 16384:64:1:r GCC L1L2unified 1.178586689 85.3 100.5334446 136 2048:64:1:r 2048:64:8:f GCC L1L2unified 1.119054642 86.3525 96.633166 137 2048:64:1:r 2048:64:8:l GCC L1L2unified 1.113428906 86.355 96.15015316 138 2048:64:1:r 2048:64:8:r GCC L1L2unified 1.121741561 86.35 96.86238381 139 2048:64:1:r 4096:64:4:f GCC L1L2unified 1.122917088 85.7525 96.2929476 140 2048:64:1:r 4096:64:4:l GCC L1L2unified 1.118131014 85.755 95.8853251 141 2048:64:1:r 4096:64:4:r GCC L1L2unified 1.125016244 85.75 96.47014289 142 2048:64:1:r 8192:64:2:f GCC L1L2unified 1.128794723 85.4525 96.45833109 143 2048:64:1:r 8192:64:2:l GCC L1L2unified 1.125352108 85.455 96.16696443 144 2048:64:1:r 8192:64:2:r GCC L1L2unified 1.131229744 85.45 96.66358158 145 256:64:8:f 16384:64:1:f GCC L1L2unified 1.098341943 86.355 94.84731853 146 256:64:8:f 16384:64:1:l GCC L1L2unified 1.098341943 86.3575 94.85006438 147 256:64:8:f 16384:64:1:r GCC L1L2unified 1.098341943 86.3525 94.84457267 148 256:64:8:f 2048:64:8:f GCC L1L2unified 1.06401642 87.405 93.00035517 149 256:64:8:f 2048:64:8:l GCC L1L2unified 1.058540363 87.4075 92.52436682 150 256:64:8:f 2048:64:8:r GCC L1L2unified 1.066954791 87.4025 93.25451616 151 256:64:8:f 4096:64:4:f GCC L1L2unified 1.067889728 86.805 92.69816783 152 256:64:8:f 4096:64:4:l GCC L1L2unified 1.063248436 86.8075 92.29793863 153 256:64:8:f 4096:64:4:r GCC L1L2unified 1.070126897 86.8025 92.88969
  • 19. 19 154 256:64:8:f 8192:64:2:f GCC L1L2unified 1.073399175 86.505 92.85439562 155 256:64:8:f 8192:64:2:l GCC L1L2unified 1.070494194 86.5075 92.60577646 156 256:64:8:f 8192:64:2:r GCC L1L2unified 1.075135485 86.5025 93.00190732 157 256:64:8:l 16384:64:1:f GCC L1L2unified 1.087020471 86.3575 93.87237031 158 256:64:8:l 16384:64:1:l GCC L1L2unified 1.087020471 86.36 93.87508786 159 256:64:8:l 16384:64:1:r GCC L1L2unified 1.087020471 86.355 93.86965276 160 256:64:8:l 2048:64:8:f GCC L1L2unified 1.057990675 87.4075 92.47631996 161 256:64:8:l 2048:64:8:l GCC L1L2unified 1.05296841 87.41 92.03996875 162 256:64:8:l 2048:64:8:r GCC L1L2unified 1.060832946 87.405 92.72210367 163 256:64:8:l 4096:64:4:f GCC L1L2unified 1.061798766 86.8075 92.17209642 164 256:64:8:l 4096:64:4:l GCC L1L2unified 1.057797511 86.81 91.82740196 165 256:64:8:l 4096:64:4:r GCC L1L2unified 1.063647622 86.805 92.32993185 166 256:64:8:l 8192:64:2:f GCC L1L2unified 1.066683057 86.5075 92.27608456 167 256:64:8:l 8192:64:2:l GCC L1L2unified 1.064309899 86.51 92.07344936 168 256:64:8:l 8192:64:2:r GCC L1L2unified 1.068035205 86.505 92.39038544 169 256:64:8:r 16384:64:1:f GCC L1L2unified 1.099248992 86.3525 94.92289861 170 256:64:8:r 16384:64:1:l GCC L1L2unified 1.099248992 86.355 94.92564674 171 256:64:8:r 16384:64:1:r GCC L1L2unified 1.099331277 86.35 94.92725574 172 256:64:8:r 2048:64:8:f GCC L1L2unified 1.067225384 87.4025 93.27816663 173 256:64:8:r 2048:64:8:l GCC L1L2unified 1.0618699 87.405 92.81273862 174 256:64:8:r 2048:64:8:r GCC L1L2unified 1.070485012 87.4 93.56039008 175 256:64:8:r 4096:64:4:f GCC L1L2unified 1.071087162 86.8025 92.97304335 176 256:64:8:r 4096:64:4:l GCC L1L2unified 1.066606042 86.805 92.58673751 177 256:64:8:r 4096:64:4:r GCC L1L2unified 1.073446877 86.8 93.1751889 178 256:64:8:r 8192:64:2:f GCC L1L2unified 1.076406214 86.5025 93.11182851 179 256:64:8:r 8192:64:2:l GCC L1L2unified 1.073528097 86.505 92.86554799 180 256:64:8:r 8192:64:2:r GCC L1L2unified 1.078152326 86.5 93.26017621 181 4096:32:1:f 16384:32:2:f GCC L1L2unified 1.172416832 85.455 100.1888804 182 4096:32:1:f 16384:32:2:l GCC L1L2unified 1.167558927 85.4575 99.77666697 183 4096:32:1:f 16384:32:2:r GCC L1L2unified 1.175796244 85.4525 100.4747286 184 4096:32:1:f 32768:32:1:f GCC L1L2unified 1.23366868 85.305 105.2381068 185 4096:32:1:f 32768:32:1:l GCC L1L2unified 1.23366868 85.3075 105.2411909 186 4096:32:1:f 32768:32:1:r GCC L1L2unified 1.23366868 85.3025 105.2350226 187 4096:32:1:f 4096:32:8:f GCC L1L2unified 1.157948723 86.355 99.99466196 188 4096:32:1:f 4096:32:8:l GCC L1L2unified 1.149605799 86.3575 99.27708276 189 4096:32:1:f 4096:32:8:r GCC L1L2unified 1.162806628 86.3525 100.4112593 190 4096:32:1:f 8192:32:4:f GCC L1L2unified 1.163440268 85.755 99.77082017 191 4096:32:1:f 8192:32:4:l GCC L1L2unified 1.15647023 85.7575 99.17599574 192 4096:32:1:f 8192:32:4:r GCC L1L2unified 1.1671365 85.7525 100.0848727 193 4096:32:1:l 16384:32:2:f GCC L1L2unified 1.172416832 85.4575 100.1918114 194 4096:32:1:l 16384:32:2:l GCC L1L2unified 1.167558927 85.46 99.77958587
  • 20. 20 195 4096:32:1:l 16384:32:2:r GCC L1L2unified 1.175796244 85.455 100.477668 196 4096:32:1:l 32768:32:1:f GCC L1L2unified 1.23366868 85.3075 105.2411909 197 4096:32:1:l 32768:32:1:l GCC L1L2unified 1.23366868 85.31 105.2442751 198 4096:32:1:l 32768:32:1:r GCC L1L2unified 1.23366868 85.305 105.2381068 199 4096:32:1:l 4096:32:8:f GCC L1L2unified 1.157948723 86.3575 99.99755683 200 4096:32:1:l 4096:32:8:l GCC L1L2unified 1.149605799 86.36 99.27995677 201 4096:32:1:l 4096:32:8:r GCC L1L2unified 1.162806628 86.355 100.4141664 202 4096:32:1:l 8192:32:4:f GCC L1L2unified 1.163440268 85.7575 99.77372877 203 4096:32:1:l 8192:32:4:l GCC L1L2unified 1.15647023 85.76 99.17888692 204 4096:32:1:l 8192:32:4:r GCC L1L2unified 1.1671365 85.755 100.0877906 205 4096:32:1:r 16384:32:2:f GCC L1L2unified 1.172416832 85.4525 100.1859493 206 4096:32:1:r 16384:32:2:l GCC L1L2unified 1.167558927 85.455 99.77374807 207 4096:32:1:r 16384:32:2:r GCC L1L2unified 1.175901851 85.45 100.4808131 208 4096:32:1:r 32768:32:1:f GCC L1L2unified 1.23366868 85.3025 105.2350226 209 4096:32:1:r 32768:32:1:l GCC L1L2unified 1.23366868 85.305 105.2381068 210 4096:32:1:r 32768:32:1:r GCC L1L2unified 1.23366868 85.3 105.2319384 211 4096:32:1:r 4096:32:8:f GCC L1L2unified 1.157948723 86.3525 99.99176709 212 4096:32:1:r 4096:32:8:l GCC L1L2unified 1.149605799 86.355 99.27420874 213 4096:32:1:r 4096:32:8:r GCC L1L2unified 1.162806628 86.35 100.4083523 214 4096:32:1:r 8192:32:4:f GCC L1L2unified 1.163440268 85.7525 99.76791157 215 4096:32:1:r 8192:32:4:l GCC L1L2unified 1.15647023 85.755 99.17310457 216 4096:32:1:r 8192:32:4:r GCC L1L2unified 1.1671365 85.75 100.0819549 217 512:32:8:f 16384:32:2:f GCC L1L2unified 1.108088666 86.505 95.85521002 218 512:32:8:f 16384:32:2:l GCC L1L2unified 1.104027508 86.5075 95.50665961 219 512:32:8:f 16384:32:2:r GCC L1L2unified 1.111226833 86.5025 96.12389914 220 512:32:8:f 32768:32:1:f GCC L1L2unified 1.142931556 86.355 98.69785452 221 512:32:8:f 32768:32:1:l GCC L1L2unified 1.142931556 86.3575 98.70071184 222 512:32:8:f 32768:32:1:r GCC L1L2unified 1.142931556 86.3525 98.69499719 223 512:32:8:f 4096:32:8:f GCC L1L2unified 1.093874612 87.405 95.6101105 224 512:32:8:f 4096:32:8:l GCC L1L2unified 1.085798446 87.4075 94.90692765 225 512:32:8:f 4096:32:8:r GCC L1L2unified 1.099181808 87.4025 96.07123794 226 512:32:8:f 8192:32:4:f GCC L1L2unified 1.099412555 86.805 95.43450686 227 512:32:8:f 8192:32:4:l GCC L1L2unified 1.092628575 86.8075 94.84835505 228 512:32:8:f 8192:32:4:r GCC L1L2unified 1.103427564 86.8025 95.78027111 229 512:32:8:l 16384:32:2:f GCC L1L2unified 1.099524081 86.5075 95.11707944 230 512:32:8:l 16384:32:2:l GCC L1L2unified 1.096285349 86.51 94.83964557 231 512:32:8:l 16384:32:2:r GCC L1L2unified 1.101943375 86.505 95.32361162 232 512:32:8:l 32768:32:1:f GCC L1L2unified 1.1283605 86.3575 97.44239185 233 512:32:8:l 32768:32:1:l GCC L1L2unified 1.1283605 86.36 97.44521275 234 512:32:8:l 32768:32:1:r GCC L1L2unified 1.1283605 86.355 97.43957095 235 512:32:8:l 4096:32:8:f GCC L1L2unified 1.086217966 87.4075 94.94359689
  • 21. 21 236 512:32:8:l 4096:32:8:l GCC L1L2unified 1.078647919 87.41 94.28461457 237 512:32:8:l 4096:32:8:r GCC L1L2unified 1.091407741 87.405 95.39449362 238 512:32:8:l 8192:32:4:f GCC L1L2unified 1.091641866 86.8075 94.76270132 239 512:32:8:l 8192:32:4:l GCC L1L2unified 1.085671674 86.81 94.24715804 240 512:32:8:l 8192:32:4:r GCC L1L2unified 1.095231786 86.805 95.07159518 241 512:32:8:r 16384:32:2:f GCC L1L2unified 1.111741929 86.5025 96.16845617 242 512:32:8:r 16384:32:2:l GCC L1L2unified 1.107851623 86.505 95.83470462 243 512:32:8:r 16384:32:2:r GCC L1L2unified 1.114791176 86.5 96.42943674 244 512:32:8:r 32768:32:1:f GCC L1L2unified 1.143925368 86.3525 98.78081536 245 512:32:8:r 32768:32:1:l GCC L1L2unified 1.143925368 86.355 98.78367517 246 512:32:8:r 32768:32:1:r GCC L1L2unified 1.143978171 86.35 98.78251503 247 512:32:8:r 4096:32:8:f GCC L1L2unified 1.097949026 87.4025 95.96348973 248 512:32:8:r 4096:32:8:l GCC L1L2unified 1.089915797 87.405 95.26409021 249 512:32:8:r 4096:32:8:r GCC L1L2unified 1.103738468 87.4 96.46674206 250 512:32:8:r 8192:32:4:f GCC L1L2unified 1.103405559 86.8025 95.77836101 251 512:32:8:r 8192:32:4:l GCC L1L2unified 1.09683751 86.805 95.21098004 252 512:32:8:r 8192:32:4:r GCC L1L2unified 1.107577561 86.8 96.13773225 253 512:64:4:f 16384:64:1:f GCC L1L2unified 1.104157357 85.755 94.68701418 254 512:64:4:f 16384:64:1:l GCC L1L2unified 1.104157357 85.7575 94.68977457 255 512:64:4:f 16384:64:1:r GCC L1L2unified 1.104157357 85.7525 94.68425378 256 512:64:4:f 2048:64:8:f GCC L1L2unified 1.068143166 86.805 92.72016756 257 512:64:4:f 2048:64:8:l GCC L1L2unified 1.062642017 86.8075 92.2452969 258 512:64:4:f 2048:64:8:r GCC L1L2unified 1.071113787 86.8025 92.9753545 259 512:64:4:f 4096:64:4:f GCC L1L2unified 1.071993971 86.205 92.41124027 260 512:64:4:f 4096:64:4:l GCC L1L2unified 1.067336331 86.2075 92.01239677 261 512:64:4:f 4096:64:4:r GCC L1L2unified 1.074047733 86.2025 92.58559974 262 512:64:4:f 8192:64:2:f GCC L1L2unified 1.077568469 85.905 92.56851933 263 512:64:4:f 8192:64:2:l GCC L1L2unified 1.074597848 85.9075 92.31601465 264 512:64:4:f 8192:64:2:r GCC L1L2unified 1.07943886 85.9025 92.72649665 265 512:64:4:l 16384:64:1:f GCC L1L2unified 1.093119318 85.7575 93.74317991 266 512:64:4:l 16384:64:1:l GCC L1L2unified 1.093119318 85.76 93.7459127 267 512:64:4:l 16384:64:1:r GCC L1L2unified 1.093119318 85.755 93.74044711 268 512:64:4:l 2048:64:8:f GCC L1L2unified 1.062216663 86.8075 92.20837293 269 512:64:4:l 2048:64:8:l GCC L1L2unified 1.057024261 86.81 91.76027611 270 512:64:4:l 2048:64:8:r GCC L1L2unified 1.065080351 86.805 92.45429983 271 512:64:4:l 4096:64:4:f GCC L1L2unified 1.066024424 86.2075 91.89930049 272 512:64:4:l 4096:64:4:l GCC L1L2unified 1.061776095 86.21 91.53571716 273 512:64:4:l 4096:64:4:r GCC L1L2unified 1.067944039 86.205 92.06211584 274 512:64:4:l 8192:64:2:f GCC L1L2unified 1.071090948 85.9075 92.01474566 275 512:64:4:l 8192:64:2:l GCC L1L2unified 1.068541951 85.91 91.79843905 276 512:64:4:l 8192:64:2:r GCC L1L2unified 1.07244412 85.905 92.12831211
  • 22. 22 277 512:64:4:r 16384:64:1:f GCC L1L2unified 1.104460372 85.7525 94.71023807 278 512:64:4:r 16384:64:1:l GCC L1L2unified 1.104460372 85.755 94.71299922 279 512:64:4:r 16384:64:1:r GCC L1L2unified 1.104537586 85.75 94.71409801 280 512:64:4:r 2048:64:8:f GCC L1L2unified 1.070551127 86.8025 92.92651424 281 512:64:4:r 2048:64:8:l GCC L1L2unified 1.065122501 86.805 92.45795872 282 512:64:4:r 2048:64:8:r GCC L1L2unified 1.073937809 86.8 93.21780182 283 512:64:4:r 4096:64:4:f GCC L1L2unified 1.074406239 86.2025 92.6165038 284 512:64:4:r 4096:64:4:l GCC L1L2unified 1.069843046 86.205 92.22581976 285 512:64:4:r 4096:64:4:r GCC L1L2unified 1.076706735 86.2 92.81212054 286 512:64:4:r 8192:64:2:f GCC L1L2unified 1.079834865 85.9025 92.76051449 287 512:64:4:r 8192:64:2:l GCC L1L2unified 1.076884525 85.905 92.50976509 288 512:64:4:r 8192:64:2:r GCC L1L2unified 1.081679127 85.9 92.91623701 289 1024:32:4:f 16384:32:2:f Anagram L1L2unified 1.15419899 85.905 99.15146424 290 1024:32:4:f 16384:32:2:l Anagram L1L2unified 1.15419899 85.9075 99.15434973 291 1024:32:4:f 16384:32:2:r Anagram L1L2unified 1.154234612 85.9025 99.15163873 292 1024:32:4:f 32768:32:1:f Anagram L1L2unified 1.139950304 85.755 97.7564383 293 1024:32:4:f 32768:32:1:l Anagram L1L2unified 1.139950304 85.7575 97.75928817 294 1024:32:4:f 32768:32:1:r Anagram L1L2unified 1.139950304 85.7525 97.75358842 295 1024:32:4:f 4096:32:8:f Anagram L1L2unified 1.187362807 86.805 103.0690285 296 1024:32:4:f 4096:32:8:l Anagram L1L2unified 1.18700659 86.8075 103.0410746 297 1024:32:4:f 4096:32:8:r Anagram L1L2unified 1.162391985 86.8025 100.8985302 298 1024:32:4:f 8192:32:4:f Anagram L1L2unified 1.184441827 86.205 102.1048077 299 1024:32:4:f 8192:32:4:l Anagram L1L2unified 1.184441827 86.2075 102.1077688 300 1024:32:4:f 8192:32:4:r Anagram L1L2unified 1.160860251 86.2025 100.0690558 301 1024:32:4:l 16384:32:2:f Anagram L1L2unified 1.15418893 85.9075 99.15348548 302 1024:32:4:l 16384:32:2:l Anagram L1L2unified 1.15418893 85.91 99.15637095 303 1024:32:4:l 16384:32:2:r Anagram L1L2unified 1.154578804 85.905 99.18409214 304 1024:32:4:l 32768:32:1:f Anagram L1L2unified 1.139905362 85.7575 97.75543412 305 1024:32:4:l 32768:32:1:l Anagram L1L2unified 1.139905362 85.76 97.75828389 306 1024:32:4:l 32768:32:1:r Anagram L1L2unified 1.139905362 85.755 97.75258436 307 1024:32:4:l 4096:32:8:f Anagram L1L2unified 1.187363666 86.8075 103.0720715 308 1024:32:4:l 4096:32:8:l Anagram L1L2unified 1.187009236 86.81 103.0442717 309 1024:32:4:l 4096:32:8:r Anagram L1L2unified 1.161986411 86.805 100.8662304 310 1024:32:4:l 8192:32:4:f Anagram L1L2unified 1.18442189 86.2075 102.10605 311 1024:32:4:l 8192:32:4:l Anagram L1L2unified 1.18442189 86.21 102.1090111 312 1024:32:4:l 8192:32:4:r Anagram L1L2unified 1.160994004 86.205 100.0834881 313 1024:32:4:r 16384:32:2:f Anagram L1L2unified 1.154294264 85.9025 99.15676303 314 1024:32:4:r 16384:32:2:l Anagram L1L2unified 1.153872189 85.905 99.1233904 315 1024:32:4:r 16384:32:2:r Anagram L1L2unified 1.156006744 85.9 99.30097935 316 1024:32:4:r 32768:32:1:f Anagram L1L2unified 1.143109273 85.7525 98.02447793 317 1024:32:4:r 32768:32:1:l Anagram L1L2unified 1.143109273 85.755 98.0273357
  • 23. 23 318 1024:32:4:r 32768:32:1:r Anagram L1L2unified 1.143185498 85.75 98.02815646 319 1024:32:4:r 4096:32:8:f Anagram L1L2unified 1.187286471 86.8025 103.0594339 320 1024:32:4:r 4096:32:8:l Anagram L1L2unified 1.182889855 86.805 102.6807539 321 1024:32:4:r 4096:32:8:r Anagram L1L2unified 1.167109777 86.8 101.3051286 322 1024:32:4:r 8192:32:4:f Anagram L1L2unified 1.184437464 86.2025 102.1014705 323 1024:32:4:r 8192:32:4:l Anagram L1L2unified 1.181658803 86.205 101.8648971 324 1024:32:4:r 8192:32:4:r Anagram L1L2unified 1.16280916 86.2 100.2341496 325 1024:64:2:f 16384:64:1:f Anagram L1L2unified 1.070921125 85.455 91.51556475 326 1024:64:2:f 16384:64:1:l Anagram L1L2unified 1.070921125 85.4575 91.51824206 327 1024:64:2:f 16384:64:1:r Anagram L1L2unified 1.070921125 85.4525 91.51288745 328 1024:64:2:f 2048:64:8:f Anagram L1L2unified 1.094472569 86.505 94.67734962 329 1024:64:2:f 2048:64:8:l Anagram L1L2unified 1.094291404 86.5075 94.66441367 330 1024:64:2:f 2048:64:8:r Anagram L1L2unified 1.08200842 86.5025 93.59643339 331 1024:64:2:f 4096:64:4:f Anagram L1L2unified 1.093005133 85.905 93.89460597 332 1024:64:2:f 4096:64:4:l Anagram L1L2unified 1.093005133 85.9075 93.89733849 333 1024:64:2:f 4096:64:4:r Anagram L1L2unified 1.081374343 85.9025 92.89275951 334 1024:64:2:f 8192:64:2:f Anagram L1L2unified 1.077895976 85.605 92.27328502 335 1024:64:2:f 8192:64:2:l Anagram L1L2unified 1.077895976 85.6075 92.27597976 336 1024:64:2:f 8192:64:2:r Anagram L1L2unified 1.078203956 85.6025 92.29695418 337 1024:64:2:l 16384:64:1:f Anagram L1L2unified 1.070865752 85.4575 91.51351 338 1024:64:2:l 16384:64:1:l Anagram L1L2unified 1.070865752 85.46 91.51618717 339 1024:64:2:l 16384:64:1:r Anagram L1L2unified 1.070865752 85.455 91.51083284 340 1024:64:2:l 2048:64:8:f Anagram L1L2unified 1.094464505 86.5075 94.67938819 341 1024:64:2:l 2048:64:8:l Anagram L1L2unified 1.094284637 86.51 94.66656392 342 1024:64:2:l 2048:64:8:r Anagram L1L2unified 1.082125523 86.505 93.60926837 343 1024:64:2:l 4096:64:4:f Anagram L1L2unified 1.09300757 85.9075 93.89754782 344 1024:64:2:l 4096:64:4:l Anagram L1L2unified 1.09300757 85.91 93.90028034 345 1024:64:2:l 4096:64:4:r Anagram L1L2unified 1.081693838 85.905 92.92290919 346 1024:64:2:l 8192:64:2:f Anagram L1L2unified 1.077898612 85.6075 92.27620544 347 1024:64:2:l 8192:64:2:l Anagram L1L2unified 1.077898612 85.61 92.27890019 348 1024:64:2:l 8192:64:2:r Anagram L1L2unified 1.078258349 85.605 92.30430599 349 1024:64:2:r 16384:64:1:f Anagram L1L2unified 1.071952102 85.4525 91.60098704 350 1024:64:2:r 16384:64:1:l Anagram L1L2unified 1.071952102 85.455 91.60366692 351 1024:64:2:r 16384:64:1:r Anagram L1L2unified 1.072037987 85.45 91.605646 352 1024:64:2:r 2048:64:8:f Anagram L1L2unified 1.094467508 86.5025 94.67417558 353 1024:64:2:r 2048:64:8:l Anagram L1L2unified 1.092848988 86.505 94.53690171 354 1024:64:2:r 2048:64:8:r Anagram L1L2unified 1.083444532 86.5 93.71795198 355 1024:64:2:r 4096:64:4:f Anagram L1L2unified 1.09301084 85.9025 93.89236368 356 1024:64:2:r 4096:64:4:l Anagram L1L2unified 1.092165613 85.905 93.822487 357 1024:64:2:r 4096:64:4:r Anagram L1L2unified 1.081431655 85.9 92.89497918 358 1024:64:2:r 8192:64:2:f Anagram L1L2unified 1.077922641 85.6025 92.27287289
  • 24. 24 359 1024:64:2:r 8192:64:2:l Anagram L1L2unified 1.077778773 85.605 92.26325185 360 1024:64:2:r 8192:64:2:r Anagram L1L2unified 1.078317303 85.6 92.30396111 361 2048:32:2:f 16384:32:2:f Anagram L1L2unified 1.154186291 85.605 98.80411748 362 2048:32:2:f 16384:32:2:l Anagram L1L2unified 1.154186291 85.6075 98.80700294 363 2048:32:2:f 16384:32:2:r Anagram L1L2unified 1.154579501 85.6025 98.83489171 364 2048:32:2:f 32768:32:1:f Anagram L1L2unified 1.139923516 85.455 97.4121641 365 2048:32:2:f 32768:32:1:l Anagram L1L2unified 1.139923516 85.4575 97.41501391 366 2048:32:2:f 32768:32:1:r Anagram L1L2unified 1.139923516 85.4525 97.40931429 367 2048:32:2:f 4096:32:8:f Anagram L1L2unified 1.187358861 86.505 102.7124782 368 2048:32:2:f 4096:32:8:l Anagram L1L2unified 1.187037144 86.5075 102.6876157 369 2048:32:2:f 4096:32:8:r Anagram L1L2unified 1.162372195 86.5025 100.5481008 370 2048:32:2:f 8192:32:4:f Anagram L1L2unified 1.184427664 85.905 101.7482585 371 2048:32:2:f 8192:32:4:l Anagram L1L2unified 1.184427664 85.9075 101.7512195 372 2048:32:2:f 8192:32:4:r Anagram L1L2unified 1.160978089 85.9025 99.73092029 373 2048:32:2:l 16384:32:2:f Anagram L1L2unified 1.15420365 85.6075 98.80848894 374 2048:32:2:l 16384:32:2:l Anagram L1L2unified 1.15420365 85.61 98.81137445 375 2048:32:2:l 16384:32:2:r Anagram L1L2unified 1.154310342 85.605 98.81473685 376 2048:32:2:l 32768:32:1:f Anagram L1L2unified 1.139906848 85.4575 97.41358945 377 2048:32:2:l 32768:32:1:l Anagram L1L2unified 1.139906848 85.46 97.41643921 378 2048:32:2:l 32768:32:1:r Anagram L1L2unified 1.139906848 85.455 97.41073968 379 2048:32:2:l 4096:32:8:f Anagram L1L2unified 1.187385033 86.5075 102.7177108 380 2048:32:2:l 4096:32:8:l Anagram L1L2unified 1.187029391 86.51 102.6899126 381 2048:32:2:l 4096:32:8:r Anagram L1L2unified 1.162347848 86.505 100.5489006 382 2048:32:2:l 8192:32:4:f Anagram L1L2unified 1.184433206 85.9075 101.7516956 383 2048:32:2:l 8192:32:4:l Anagram L1L2unified 1.184433206 85.91 101.7546567 384 2048:32:2:l 8192:32:4:r Anagram L1L2unified 1.161031973 85.905 99.73845164 385 2048:32:2:r 16384:32:2:f Anagram L1L2unified 1.154223578 85.6025 98.80442386 386 2048:32:2:r 16384:32:2:l Anagram L1L2unified 1.154011096 85.605 98.78911985 387 2048:32:2:r 16384:32:2:r Anagram L1L2unified 1.155751394 85.6 98.93231931 388 2048:32:2:r 32768:32:1:f Anagram L1L2unified 1.14204125 85.4525 97.59027989 389 2048:32:2:r 32768:32:1:l Anagram L1L2unified 1.14204125 85.455 97.59313499 390 2048:32:2:r 32768:32:1:r Anagram L1L2unified 1.14200969 85.45 97.58472802 391 2048:32:2:r 4096:32:8:f Anagram L1L2unified 1.187335431 86.5025 102.7074831 392 2048:32:2:r 4096:32:8:l Anagram L1L2unified 1.184041952 86.505 102.4255491 393 2048:32:2:r 4096:32:8:r Anagram L1L2unified 1.166079438 86.5 100.8658714 394 2048:32:2:r 8192:32:4:f Anagram L1L2unified 1.184431503 85.9025 101.7456272 395 2048:32:2:r 8192:32:4:l Anagram L1L2unified 1.182660816 85.905 101.5964774 396 2048:32:2:r 8192:32:4:r Anagram L1L2unified 1.161005521 85.9 99.73037425 397 2048:64:1:f 16384:64:1:f Anagram L1L2unified 1.086334221 85.305 92.6697407 398 2048:64:1:f 16384:64:1:l Anagram L1L2unified 1.086334221 85.3075 92.67245653 399 2048:64:1:f 16384:64:1:r Anagram L1L2unified 1.086334221 85.3025 92.66702486
  • 25. 25 400 2048:64:1:f 2048:64:8:f Anagram L1L2unified 1.098763637 86.355 94.8837339 401 2048:64:1:f 2048:64:8:l Anagram L1L2unified 1.098588266 86.3575 94.87133621 402 2048:64:1:f 2048:64:8:r Anagram L1L2unified 1.085610815 86.3525 93.74520794 403 2048:64:1:f 4096:64:4:f Anagram L1L2unified 1.097294906 85.755 94.09852462 404 2048:64:1:f 4096:64:4:l Anagram L1L2unified 1.097316827 85.7575 94.10314778 405 2048:64:1:f 4096:64:4:r Anagram L1L2unified 1.084032477 85.7525 92.95849497 406 2048:64:1:f 8192:64:2:f Anagram L1L2unified 1.082213003 85.455 92.48051219 407 2048:64:1:f 8192:64:2:l Anagram L1L2unified 1.082213003 85.4575 92.48321772 408 2048:64:1:f 8192:64:2:r Anagram L1L2unified 1.082519902 85.4525 92.50403196 409 2048:64:1:l 16384:64:1:f Anagram L1L2unified 1.086334221 85.3075 92.67245653 410 2048:64:1:l 16384:64:1:l Anagram L1L2unified 1.086334221 85.31 92.67517237 411 2048:64:1:l 16384:64:1:r Anagram L1L2unified 1.086334221 85.305 92.6697407 412 2048:64:1:l 2048:64:8:f Anagram L1L2unified 1.098763637 86.3575 94.88648081 413 2048:64:1:l 2048:64:8:l Anagram L1L2unified 1.098588266 86.36 94.87408268 414 2048:64:1:l 2048:64:8:r Anagram L1L2unified 1.085610815 86.355 93.74792197 415 2048:64:1:l 4096:64:4:f Anagram L1L2unified 1.097294906 85.7575 94.10126786 416 2048:64:1:l 4096:64:4:l Anagram L1L2unified 1.097316827 85.76 94.10589108 417 2048:64:1:l 4096:64:4:r Anagram L1L2unified 1.084032477 85.755 92.96120505 418 2048:64:1:l 8192:64:2:f Anagram L1L2unified 1.082213003 85.4575 92.48321772 419 2048:64:1:l 8192:64:2:l Anagram L1L2unified 1.082213003 85.46 92.48592325 420 2048:64:1:l 8192:64:2:r Anagram L1L2unified 1.082519902 85.455 92.50673826 421 2048:64:1:r 16384:64:1:f Anagram L1L2unified 1.086334221 85.3025 92.66702486 422 2048:64:1:r 16384:64:1:l Anagram L1L2unified 1.086334221 85.305 92.6697407 423 2048:64:1:r 16384:64:1:r Anagram L1L2unified 1.086334221 85.3 92.66430902 424 2048:64:1:r 2048:64:8:f Anagram L1L2unified 1.098763637 86.3525 94.88098699 425 2048:64:1:r 2048:64:8:l Anagram L1L2unified 1.098588266 86.355 94.86858974 426 2048:64:1:r 2048:64:8:r Anagram L1L2unified 1.085720422 86.35 93.75195847 427 2048:64:1:r 4096:64:4:f Anagram L1L2unified 1.097294906 85.7525 94.09578139 428 2048:64:1:r 4096:64:4:l Anagram L1L2unified 1.097316827 85.755 94.10040449 429 2048:64:1:r 4096:64:4:r Anagram L1L2unified 1.084010555 85.75 92.95390513 430 2048:64:1:r 8192:64:2:f Anagram L1L2unified 1.082213003 85.4525 92.47780665 431 2048:64:1:r 8192:64:2:l Anagram L1L2unified 1.082213003 85.455 92.48051219 432 2048:64:1:r 8192:64:2:r Anagram L1L2unified 1.082673352 85.45 92.51443792 433 256:64:8:f 16384:64:1:f Anagram L1L2unified 1.070904025 86.355 92.47791708 434 256:64:8:f 16384:64:1:l Anagram L1L2unified 1.070904025 86.3575 92.48059434 435 256:64:8:f 16384:64:1:r Anagram L1L2unified 1.070904025 86.3525 92.47523982 436 256:64:8:f 2048:64:8:f Anagram L1L2unified 1.094462682 87.405 95.66151073 437 256:64:8:f 2048:64:8:l Anagram L1L2unified 1.094283529 87.4075 95.64858755 438 256:64:8:f 2048:64:8:r Anagram L1L2unified 1.082154851 87.4025 94.5830394 439 256:64:8:f 4096:64:4:f Anagram L1L2unified 1.09301154 86.805 94.87886677 440 256:64:8:f 4096:64:4:l Anagram L1L2unified 1.092993625 86.8075 94.88004412
  • 26. 26 441 256:64:8:f 4096:64:4:r Anagram L1L2unified 1.081438238 86.8025 93.87154267 442 256:64:8:f 8192:64:2:f Anagram L1L2unified 1.077908919 86.505 93.244511 443 256:64:8:f 8192:64:2:l Anagram L1L2unified 1.077908919 86.5075 93.24720577 444 256:64:8:f 8192:64:2:r Anagram L1L2unified 1.078231394 86.5025 93.2697112 445 256:64:8:l 16384:64:1:f Anagram L1L2unified 1.070845642 86.3575 92.47555256 446 256:64:8:l 16384:64:1:l Anagram L1L2unified 1.070845642 86.36 92.47822967 447 256:64:8:l 16384:64:1:r Anagram L1L2unified 1.070845642 86.355 92.47287544 448 256:64:8:l 2048:64:8:f Anagram L1L2unified 1.094464015 87.4075 95.66436336 449 256:64:8:l 2048:64:8:l Anagram L1L2unified 1.094286031 87.41 95.65154201 450 256:64:8:l 2048:64:8:r Anagram L1L2unified 1.08200519 87.405 94.57266361 451 256:64:8:l 4096:64:4:f Anagram L1L2unified 1.093004552 86.8075 94.88099268 452 256:64:8:l 4096:64:4:l Anagram L1L2unified 1.093004552 86.81 94.88372519 453 256:64:8:l 4096:64:4:r Anagram L1L2unified 1.081239862 86.805 93.85702622 454 256:64:8:l 8192:64:2:f Anagram L1L2unified 1.077911576 86.5075 93.24743565 455 256:64:8:l 8192:64:2:l Anagram L1L2unified 1.077911576 86.51 93.25013043 456 256:64:8:l 8192:64:2:r Anagram L1L2unified 1.078267542 86.505 93.27553375 457 256:64:8:r 16384:64:1:f Anagram L1L2unified 1.071832535 86.3525 92.55541902 458 256:64:8:r 16384:64:1:l Anagram L1L2unified 1.071832535 86.355 92.5580986 459 256:64:8:r 16384:64:1:r Anagram L1L2unified 1.072661981 86.35 92.6243621 460 256:64:8:r 2048:64:8:f Anagram L1L2unified 1.093498812 87.4025 95.5745299 461 256:64:8:r 2048:64:8:l Anagram L1L2unified 1.091022666 87.405 95.36083612 462 256:64:8:r 2048:64:8:r Anagram L1L2unified 1.085128204 87.4 94.84020505 463 256:64:8:r 4096:64:4:f Anagram L1L2unified 1.092136932 86.8025 94.800216 464 256:64:8:r 4096:64:4:l Anagram L1L2unified 1.09045669 86.805 94.65709295 465 256:64:8:r 4096:64:4:r Anagram L1L2unified 1.082651112 86.8 93.97411651 466 256:64:8:r 8192:64:2:f Anagram L1L2unified 1.077067815 86.5025 93.16905869 467 256:64:8:r 8192:64:2:l Anagram L1L2unified 1.076784827 86.505 93.14727148 468 256:64:8:r 8192:64:2:r Anagram L1L2unified 1.079050254 86.5 93.33784697 469 4096:32:1:f 16384:32:2:f Anagram L1L2unified 1.156787617 85.455 98.85328577 470 4096:32:1:f 16384:32:2:l Anagram L1L2unified 1.156787617 85.4575 98.85617774 471 4096:32:1:f 16384:32:2:r Anagram L1L2unified 1.15758611 85.4525 98.91862702 472 4096:32:1:f 32768:32:1:f Anagram L1L2unified 1.142718931 85.305 97.47963841 473 4096:32:1:f 32768:32:1:l Anagram L1L2unified 1.142718931 85.3075 97.48249521 474 4096:32:1:f 32768:32:1:r Anagram L1L2unified 1.142718931 85.3025 97.47678161 475 4096:32:1:f 4096:32:8:f Anagram L1L2unified 1.189944086 86.355 102.7576216 476 4096:32:1:f 4096:32:8:l Anagram L1L2unified 1.189601875 86.3575 102.7310439 477 4096:32:1:f 4096:32:8:r Anagram L1L2unified 1.163669865 86.3525 100.4858021 478 4096:32:1:f 8192:32:4:f Anagram L1L2unified 1.187016279 85.755 101.792581 479 4096:32:1:f 8192:32:4:l Anagram L1L2unified 1.187016279 85.7575 101.7955485 480 4096:32:1:f 8192:32:4:r Anagram L1L2unified 1.160551941 85.7525 99.52023028 481 4096:32:1:l 16384:32:2:f Anagram L1L2unified 1.156787617 85.4575 98.85617774
  • 27. 27 482 4096:32:1:l 16384:32:2:l Anagram L1L2unified 1.156787617 85.46 98.85906971 483 4096:32:1:l 16384:32:2:r Anagram L1L2unified 1.15758611 85.455 98.92152099 484 4096:32:1:l 32768:32:1:f Anagram L1L2unified 1.142718931 85.3075 97.48249521 485 4096:32:1:l 32768:32:1:l Anagram L1L2unified 1.142718931 85.31 97.48535201 486 4096:32:1:l 32768:32:1:r Anagram L1L2unified 1.142718931 85.305 97.47963841 487 4096:32:1:l 4096:32:8:f Anagram L1L2unified 1.189944086 86.3575 102.7605964 488 4096:32:1:l 4096:32:8:l Anagram L1L2unified 1.189601875 86.36 102.7340179 489 4096:32:1:l 4096:32:8:r Anagram L1L2unified 1.163669865 86.355 100.4887112 490 4096:32:1:l 8192:32:4:f Anagram L1L2unified 1.187016279 85.7575 101.7955485 491 4096:32:1:l 8192:32:4:l Anagram L1L2unified 1.187016279 85.76 101.7985161 492 4096:32:1:l 8192:32:4:r Anagram L1L2unified 1.160551941 85.755 99.52313166 493 4096:32:1:r 16384:32:2:f Anagram L1L2unified 1.156787617 85.4525 98.8503938 494 4096:32:1:r 16384:32:2:l Anagram L1L2unified 1.156787617 85.455 98.85328577 495 4096:32:1:r 16384:32:2:r Anagram L1L2unified 1.157243898 85.45 98.88649111 496 4096:32:1:r 32768:32:1:f Anagram L1L2unified 1.142718931 85.3025 97.47678161 497 4096:32:1:r 32768:32:1:l Anagram L1L2unified 1.142718931 85.305 97.47963841 498 4096:32:1:r 32768:32:1:r Anagram L1L2unified 1.142718931 85.3 97.47392482 499 4096:32:1:r 4096:32:8:f Anagram L1L2unified 1.189944086 86.3525 102.7546467 500 4096:32:1:r 4096:32:8:l Anagram L1L2unified 1.189601875 86.355 102.7280699 501 4096:32:1:r 4096:32:8:r Anagram L1L2unified 1.163365678 86.35 100.4566263 502 4096:32:1:r 8192:32:4:f Anagram L1L2unified 1.187016279 85.7525 101.7896134 503 4096:32:1:r 8192:32:4:l Anagram L1L2unified 1.187016279 85.755 101.792581 504 4096:32:1:r 8192:32:4:r Anagram L1L2unified 1.160247753 85.75 99.4912448 505 512:32:8:f 16384:32:2:f Anagram L1L2unified 1.154214157 86.505 99.84529562 506 512:32:8:f 16384:32:2:l Anagram L1L2unified 1.154214157 86.5075 99.84818115 507 512:32:8:f 16384:32:2:r Anagram L1L2unified 1.154285389 86.5025 99.84857184 508 512:32:8:f 32768:32:1:f Anagram L1L2unified 1.139932109 86.355 98.43883727 509 512:32:8:f 32768:32:1:l Anagram L1L2unified 1.139932109 86.3575 98.4416871 510 512:32:8:f 32768:32:1:r Anagram L1L2unified 1.139932109 86.3525 98.43598744 511 512:32:8:f 4096:32:8:f Anagram L1L2unified 1.187372726 87.405 103.7823131 512 512:32:8:f 4096:32:8:l Anagram L1L2unified 1.187016565 87.4075 103.7541504 513 512:32:8:f 4096:32:8:r Anagram L1L2unified 1.162227774 87.4025 101.5816131 514 512:32:8:f 8192:32:4:f Anagram L1L2unified 1.184416592 86.805 102.8132822 515 512:32:8:f 8192:32:4:l Anagram L1L2unified 1.184416592 86.8075 102.8162433 516 512:32:8:f 8192:32:4:r Anagram L1L2unified 1.161052444 86.8025 100.7822548 517 512:32:8:l 16384:32:2:f Anagram L1L2unified 1.154203816 86.5075 99.84728663 518 512:32:8:l 16384:32:2:l Anagram L1L2unified 1.154203816 86.51 99.85017214 519 512:32:8:l 16384:32:2:r Anagram L1L2unified 1.154310129 86.505 99.85359768 520 512:32:8:l 32768:32:1:f Anagram L1L2unified 1.139887083 86.3575 98.43779878 521 512:32:8:l 32768:32:1:l Anagram L1L2unified 1.139887083 86.36 98.4406485 522 512:32:8:l 32768:32:1:r Anagram L1L2unified 1.139887083 86.355 98.43494906
  • 28. 28 523 512:32:8:l 4096:32:8:f Anagram L1L2unified 1.187373277 87.4075 103.7853297 524 512:32:8:l 4096:32:8:l Anagram L1L2unified 1.187018903 87.41 103.7573223 525 512:32:8:l 4096:32:8:r Anagram L1L2unified 1.162602494 87.405 101.617271 526 512:32:8:l 8192:32:4:f Anagram L1L2unified 1.184431968 86.8075 102.8175781 527 512:32:8:l 8192:32:4:l Anagram L1L2unified 1.184431968 86.81 102.8205392 528 512:32:8:l 8192:32:4:r Anagram L1L2unified 1.161184996 86.805 100.7966635 529 512:32:8:r 16384:32:2:f Anagram L1L2unified 1.1542611 86.5025 99.84647084 530 512:32:8:r 16384:32:2:l Anagram L1L2unified 1.153699089 86.505 99.80073972 531 512:32:8:r 16384:32:2:r Anagram L1L2unified 1.156319208 86.5 100.0216115 532 512:32:8:r 32768:32:1:f Anagram L1L2unified 1.143723391 86.3525 98.76337412 533 512:32:8:r 32768:32:1:l Anagram L1L2unified 1.143723391 86.355 98.76623343 534 512:32:8:r 32768:32:1:r Anagram L1L2unified 1.143722734 86.35 98.76045807 535 512:32:8:r 4096:32:8:f Anagram L1L2unified 1.187349508 87.4025 103.7773154 536 512:32:8:r 4096:32:8:l Anagram L1L2unified 1.182150905 87.405 103.3258998 537 512:32:8:r 4096:32:8:r Anagram L1L2unified 1.168534 87.4 102.1298716 538 512:32:8:r 8192:32:4:f Anagram L1L2unified 1.184434075 86.8025 102.8118388 539 512:32:8:r 8192:32:4:l Anagram L1L2unified 1.180921505 86.805 102.5098913 540 512:32:8:r 8192:32:4:r Anagram L1L2unified 1.163263992 86.8 100.9713145 541 512:64:4:f 16384:64:1:f Anagram L1L2unified 1.070924787 85.755 91.83715513 542 512:64:4:f 16384:64:1:l Anagram L1L2unified 1.070924787 85.7575 91.83983244 543 512:64:4:f 16384:64:1:r Anagram L1L2unified 1.070924787 85.7525 91.83447782 544 512:64:4:f 2048:64:8:f Anagram L1L2unified 1.094473957 86.805 95.00581184 545 512:64:4:f 2048:64:8:l Anagram L1L2unified 1.09429474 86.8075 94.9929906 546 512:64:4:f 2048:64:8:r Anagram L1L2unified 1.082179642 86.8025 93.93589834 547 512:64:4:f 4096:64:4:f Anagram L1L2unified 1.093004374 86.205 94.22244207 548 512:64:4:f 4096:64:4:l Anagram L1L2unified 1.093004374 86.2075 94.22517458 549 512:64:4:f 4096:64:4:r Anagram L1L2unified 1.081373163 86.2025 93.2170701 550 512:64:4:f 8192:64:2:f Anagram L1L2unified 1.077896345 85.905 92.59668552 551 512:64:4:f 8192:64:2:l Anagram L1L2unified 1.077896345 85.9075 92.59938027 552 512:64:4:f 8192:64:2:r Anagram L1L2unified 1.078201015 85.9025 92.62016267 553 512:64:4:l 16384:64:1:f Anagram L1L2unified 1.07084492 85.7575 91.83298326 554 512:64:4:l 16384:64:1:l Anagram L1L2unified 1.07084492 85.76 91.83566038 555 512:64:4:l 16384:64:1:r Anagram L1L2unified 1.07084492 85.755 91.83030615 556 512:64:4:l 2048:64:8:f Anagram L1L2unified 1.094470257 86.8075 95.00822681 557 512:64:4:l 2048:64:8:l Anagram L1L2unified 1.094292221 86.81 94.9955077 558 512:64:4:l 2048:64:8:r Anagram L1L2unified 1.081847526 86.805 93.90977451 559 512:64:4:l 4096:64:4:f Anagram L1L2unified 1.093010364 86.2075 94.22569096 560 512:64:4:l 4096:64:4:l Anagram L1L2unified 1.093010364 86.21 94.22842348 561 512:64:4:l 4096:64:4:r Anagram L1L2unified 1.081295616 86.205 93.21308854 562 512:64:4:l 8192:64:2:f Anagram L1L2unified 1.077895134 85.9075 92.59927621 563 512:64:4:l 8192:64:2:l Anagram L1L2unified 1.077895134 85.91 92.60197095
  • 29. 29 564 512:64:4:l 8192:64:2:r Anagram L1L2unified 1.078269009 85.905 92.6286992 565 512:64:4:r 16384:64:1:f Anagram L1L2unified 1.072468348 85.7525 91.96684202 566 512:64:4:r 16384:64:1:l Anagram L1L2unified 1.072468348 85.755 91.96952319 567 512:64:4:r 16384:64:1:r Anagram L1L2unified 1.072296851 85.75 91.94945495 568 512:64:4:r 2048:64:8:f Anagram L1L2unified 1.094440898 86.8025 95.00020603 569 512:64:4:r 2048:64:8:l Anagram L1L2unified 1.092208203 86.805 94.80913308 570 512:64:4:r 2048:64:8:r Anagram L1L2unified 1.084692914 86.8 94.15134489 571 512:64:4:r 4096:64:4:f Anagram L1L2unified 1.093005594 86.2025 94.21981473 572 512:64:4:r 4096:64:4:l Anagram L1L2unified 1.09162345 86.205 94.10339949 573 512:64:4:r 4096:64:4:r Anagram L1L2unified 1.082107918 86.2 93.27770255 574 512:64:4:r 8192:64:2:f Anagram L1L2unified 1.077943766 85.9025 92.59806433 575 512:64:4:r 8192:64:2:l Anagram L1L2unified 1.077713408 85.905 92.58097034 576 512:64:4:r 8192:64:2:r Anagram L1L2unified 1.078497182 85.9 92.64290796 577 1024:32:4:f 16384:32:2:f GO L1L2unified 1.020886414 85.905 87.69924741 578 1024:32:4:f 16384:32:2:l GO L1L2unified 1.020886414 85.9075 87.70179962 579 1024:32:4:f 16384:32:2:r GO L1L2unified 1.021604357 85.9025 87.75836825 580 1024:32:4:f 32768:32:1:f GO L1L2unified 1.038203187 85.755 89.0311143 581 1024:32:4:f 32768:32:1:l GO L1L2unified 1.038203187 85.7575 89.03370981 582 1024:32:4:f 32768:32:1:r GO L1L2unified 1.038203187 85.7525 89.02851879 583 1024:32:4:f 4096:32:8:f GO L1L2unified 1.021963328 86.805 88.71152668 584 1024:32:4:f 4096:32:8:l GO L1L2unified 1.021920251 86.8075 88.71034222 585 1024:32:4:f 4096:32:8:r GO L1L2unified 1.02143205 86.8025 88.66285556 586 1024:32:4:f 8192:32:4:f GO L1L2unified 1.021001285 86.205 88.01541577 587 1024:32:4:f 8192:32:4:l GO L1L2unified 1.020972567 86.2075 88.01549259 588 1024:32:4:f 8192:32:4:r GO L1L2unified 1.021374615 86.2025 88.04504525 589 1024:32:4:l 16384:32:2:f GO L1L2unified 1.018359866 85.9075 87.48475015 590 1024:32:4:l 16384:32:2:l GO L1L2unified 1.018371345 85.91 87.48828227 591 1024:32:4:l 16384:32:2:r GO L1L2unified 1.019106046 85.905 87.54630492 592 1024:32:4:l 32768:32:1:f GO L1L2unified 1.029345944 85.7575 88.27413478 593 1024:32:4:l 32768:32:1:l GO L1L2unified 1.029345944 85.76 88.27670815 594 1024:32:4:l 32768:32:1:r GO L1L2unified 1.029345944 85.755 88.27156142 595 1024:32:4:l 4096:32:8:f GO L1L2unified 1.019461917 86.8075 88.49694039 596 1024:32:4:l 4096:32:8:l GO L1L2unified 1.019415999 86.81 88.49550283 597 1024:32:4:l 4096:32:8:r GO L1L2unified 1.01895681 86.805 88.45054592 598 1024:32:4:l 8192:32:4:f GO L1L2unified 1.018497622 86.2075 87.80213375 599 1024:32:4:l 8192:32:4:l GO L1L2unified 1.018463183 86.21 87.801711 600 1024:32:4:l 8192:32:4:r GO L1L2unified 1.018853493 86.205 87.83026536 601 1024:32:4:r 16384:32:2:f GO L1L2unified 1.019155295 85.9025 87.54798771 602 1024:32:4:r 16384:32:2:l GO L1L2unified 1.019155295 85.905 87.5505356 603 1024:32:4:r 16384:32:2:r GO L1L2unified 1.019917903 85.9 87.61094783 604 1024:32:4:r 32768:32:1:f GO L1L2unified 1.031102274 85.7525 88.41959771
  • 30. 30 605 1024:32:4:r 32768:32:1:l GO L1L2unified 1.031102274 85.755 88.42217547 606 1024:32:4:r 32768:32:1:r GO L1L2unified 1.031118349 85.75 88.41839847 607 1024:32:4:r 4096:32:8:f GO L1L2unified 1.020290067 86.8025 88.5637285 608 1024:32:4:r 4096:32:8:l GO L1L2unified 1.020060562 86.805 88.54635709 609 1024:32:4:r 4096:32:8:r GO L1L2unified 1.020043883 86.8 88.53980902 610 1024:32:4:r 8192:32:4:f GO L1L2unified 1.019333798 86.2025 87.86912174 611 1024:32:4:r 8192:32:4:l GO L1L2unified 1.019282797 86.205 87.86727353 612 1024:32:4:r 8192:32:4:r GO L1L2unified 1.019810998 86.2 87.90770802 613 1024:64:2:f 16384:64:1:f GO L1L2unified 1.03617135 85.455 88.54602267 614 1024:64:2:f 16384:64:1:l GO L1L2unified 1.03617135 85.4575 88.5486131 615 1024:64:2:f 16384:64:1:r GO L1L2unified 1.03617135 85.4525 88.54343225 616 1024:64:2:f 2048:64:8:f GO L1L2unified 1.021568026 86.505 88.3707421 617 1024:64:2:f 2048:64:8:l GO L1L2unified 1.021550261 86.5075 88.37175916 618 1024:64:2:f 2048:64:8:r GO L1L2unified 1.021266011 86.5025 88.34206311 619 1024:64:2:f 4096:64:4:f GO L1L2unified 1.021088355 85.905 87.71659513 620 1024:64:2:f 4096:64:4:l GO L1L2unified 1.021070589 85.9075 87.71762165 621 1024:64:2:f 4096:64:4:r GO L1L2unified 1.021248245 85.9025 87.7277774 622 1024:64:2:f 8192:64:2:f GO L1L2unified 1.021159417 85.605 87.41635192 623 1024:64:2:f 8192:64:2:l GO L1L2unified 1.021177183 85.6075 87.42042569 624 1024:64:2:f 8192:64:2:r GO L1L2unified 1.021514729 85.6025 87.44421462 625 1024:64:2:l 16384:64:1:f GO L1L2unified 1.030714985 85.4575 88.08232581 626 1024:64:2:l 16384:64:1:l GO L1L2unified 1.030714985 85.46 88.08490259 627 1024:64:2:l 16384:64:1:r GO L1L2unified 1.030714985 85.455 88.07974902 628 1024:64:2:l 2048:64:8:f GO L1L2unified 1.01906772 86.5075 88.15700077 629 1024:64:2:l 2048:64:8:l GO L1L2unified 1.01905271 86.51 88.15824998 630 1024:64:2:l 2048:64:8:r GO L1L2unified 1.018767533 86.505 88.1284854 631 1024:64:2:l 4096:64:4:f GO L1L2unified 1.018572411 85.9075 87.50300938 632 1024:64:2:l 4096:64:4:l GO L1L2unified 1.018557401 85.91 87.50426636 633 1024:64:2:l 4096:64:4:r GO L1L2unified 1.018737514 85.905 87.51464612 634 1024:64:2:l 8192:64:2:f GO L1L2unified 1.018647458 85.6075 87.20386223 635 1024:64:2:l 8192:64:2:l GO L1L2unified 1.018662467 85.61 87.2076938 636 1024:64:2:l 8192:64:2:r GO L1L2unified 1.019007682 85.605 87.23215264 637 1024:64:2:r 16384:64:1:f GO L1L2unified 1.03468011 85.4525 88.41600212 638 1024:64:2:r 16384:64:1:l GO L1L2unified 1.03468011 85.455 88.41858882 639 1024:64:2:r 16384:64:1:r GO L1L2unified 1.034676764 85.45 88.41312951 640 1024:64:2:r 2048:64:8:f GO L1L2unified 1.021570397 86.5025 88.36839329 641 1024:64:2:r 2048:64:8:l GO L1L2unified 1.021497363 86.505 88.36462936 642 1024:64:2:r 2048:64:8:r GO L1L2unified 1.021349163 86.5 88.34670256 643 1024:64:2:r 4096:64:4:f GO L1L2unified 1.021077414 85.9025 87.71310252 644 1024:64:2:r 4096:64:4:l GO L1L2unified 1.021077414 85.905 87.71565522 645 1024:64:2:r 4096:64:4:r GO L1L2unified 1.021273352 85.9 87.72738093
  • 31. 31 646 1024:64:2:r 8192:64:2:f GO L1L2unified 1.021186966 85.6025 87.41615722 647 1024:64:2:r 8192:64:2:l GO L1L2unified 1.021205224 85.605 87.42027322 648 1024:64:2:r 8192:64:2:r GO L1L2unified 1.021511983 85.6 87.44142573 649 2048:32:2:f 16384:32:2:f GO L1L2unified 1.029224174 85.605 88.10673543 650 2048:32:2:f 16384:32:2:l GO L1L2unified 1.029201223 85.6075 88.10734368 651 2048:32:2:f 16384:32:2:r GO L1L2unified 1.029958621 85.6025 88.16703282 652 2048:32:2:f 32768:32:1:f GO L1L2unified 1.050614926 85.455 89.78029854 653 2048:32:2:f 32768:32:1:l GO L1L2unified 1.050614926 85.4575 89.78292507 654 2048:32:2:f 32768:32:1:r GO L1L2unified 1.050614926 85.4525 89.777672 655 2048:32:2:f 4096:32:8:f GO L1L2unified 1.030302892 86.505 89.12635171 656 2048:32:2:f 4096:32:8:l GO L1L2unified 1.030279941 86.5075 89.12694199 657 2048:32:2:f 4096:32:8:r GO L1L2unified 1.029775009 86.5025 89.07811272 658 2048:32:2:f 8192:32:4:f GO L1L2unified 1.029361883 85.905 88.42733255 659 2048:32:2:f 8192:32:4:l GO L1L2unified 1.02931598 85.9075 88.42596255 660 2048:32:2:f 8192:32:4:r GO L1L2unified 1.029706155 85.9025 88.45433295 661 2048:32:2:l 16384:32:2:f GO L1L2unified 1.026695708 85.6075 87.89285285 662 2048:32:2:l 16384:32:2:l GO L1L2unified 1.026695708 85.61 87.89541959 663 2048:32:2:l 16384:32:2:r GO L1L2unified 1.027406675 85.605 87.95114843 664 2048:32:2:l 32768:32:1:f GO L1L2unified 1.04381816 85.4575 89.20209044 665 2048:32:2:l 32768:32:1:l GO L1L2unified 1.04381816 85.46 89.20469998 666 2048:32:2:l 32768:32:1:r GO L1L2unified 1.04381816 85.455 89.19948089 667 2048:32:2:l 4096:32:8:f GO L1L2unified 1.027801657 86.5075 88.91255182 668 2048:32:2:l 4096:32:8:l GO L1L2unified 1.027762159 86.51 88.91170434 669 2048:32:2:l 4096:32:8:r GO L1L2unified 1.027268432 86.505 88.86385568 670 2048:32:2:l 8192:32:4:f GO L1L2unified 1.026853701 85.9075 88.21443431 671 2048:32:2:l 8192:32:4:l GO L1L2unified 1.026794454 85.91 88.21191152 672 2048:32:2:l 8192:32:4:r GO L1L2unified 1.027189435 85.905 88.24070844 673 2048:32:2:r 16384:32:2:f GO L1L2unified 1.029238215 85.6025 88.10536432 674 2048:32:2:r 16384:32:2:l GO L1L2unified 1.029238215 85.605 88.10793741 675 2048:32:2:r 16384:32:2:r GO L1L2unified 1.029979304 85.6 88.16622845 676 2048:32:2:r 32768:32:1:f GO L1L2unified 1.048131751 85.4525 89.56547849 677 2048:32:2:r 32768:32:1:l GO L1L2unified 1.048131751 85.455 89.56809882 678 2048:32:2:r 32768:32:1:r GO L1L2unified 1.048098834 85.45 89.56004533 679 2048:32:2:r 4096:32:8:f GO L1L2unified 1.030307222 86.5025 89.12415049 680 2048:32:2:r 4096:32:8:l GO L1L2unified 1.030144547 86.505 89.11265406 681 2048:32:2:r 4096:32:8:r GO L1L2unified 1.029938179 86.5 89.08965244 682 2048:32:2:r 8192:32:4:f GO L1L2unified 1.029354412 85.9025 88.42411734 683 2048:32:2:r 8192:32:4:l GO L1L2unified 1.029331172 85.905 88.42469436 684 2048:32:2:r 8192:32:4:r GO L1L2unified 1.029793654 85.9 88.45927491 685 2048:64:1:f 16384:64:1:f GO L1L2unified 1.120351157 85.305 95.57155542 686 2048:64:1:f 16384:64:1:l GO L1L2unified 1.120351157 85.3075 95.5743563
  • 32. 32 687 2048:64:1:f 16384:64:1:r GO L1L2unified 1.120351157 85.3025 95.56875454 688 2048:64:1:f 2048:64:8:f GO L1L2unified 1.099228122 86.355 94.92384446 689 2048:64:1:f 2048:64:8:l GO L1L2unified 1.099228122 86.3575 94.92659253 690 2048:64:1:f 2048:64:8:r GO L1L2unified 1.098852601 86.3525 94.88866925 691 2048:64:1:f 4096:64:4:f GO L1L2unified 1.098758721 85.755 94.22405413 692 2048:64:1:f 4096:64:4:l GO L1L2unified 1.098758721 85.7575 94.22680102 693 2048:64:1:f 4096:64:4:r GO L1L2unified 1.098852601 85.7525 94.22935769 694 2048:64:1:f 8192:64:2:f GO L1L2unified 1.098852601 85.455 93.90244904 695 2048:64:1:f 8192:64:2:l GO L1L2unified 1.098852601 85.4575 93.90519617 696 2048:64:1:f 8192:64:2:r GO L1L2unified 1.099134242 85.4525 93.92376879 697 2048:64:1:l 16384:64:1:f GO L1L2unified 1.120351157 85.3075 95.5743563 698 2048:64:1:l 16384:64:1:l GO L1L2unified 1.120351157 85.31 95.57715717 699 2048:64:1:l 16384:64:1:r GO L1L2unified 1.120351157 85.305 95.57155542 700 2048:64:1:l 2048:64:8:f GO L1L2unified 1.099228122 86.3575 94.92659253 701 2048:64:1:l 2048:64:8:l GO L1L2unified 1.099228122 86.36 94.9293406 702 2048:64:1:l 2048:64:8:r GO L1L2unified 1.098852601 86.355 94.89141638 703 2048:64:1:l 4096:64:4:f GO L1L2unified 1.098758721 85.7575 94.22680102 704 2048:64:1:l 4096:64:4:l GO L1L2unified 1.098758721 85.76 94.22954792 705 2048:64:1:l 4096:64:4:r GO L1L2unified 1.098852601 85.755 94.23210482 706 2048:64:1:l 8192:64:2:f GO L1L2unified 1.098852601 85.4575 93.90519617 707 2048:64:1:l 8192:64:2:l GO L1L2unified 1.098852601 85.46 93.9079433 708 2048:64:1:l 8192:64:2:r GO L1L2unified 1.099134242 85.455 93.92651662 709 2048:64:1:r 16384:64:1:f GO L1L2unified 1.120351157 85.3025 95.56875454 710 2048:64:1:r 16384:64:1:l GO L1L2unified 1.120351157 85.305 95.57155542 711 2048:64:1:r 16384:64:1:r GO L1L2unified 1.120351157 85.3 95.56595366 712 2048:64:1:r 2048:64:8:f GO L1L2unified 1.099228122 86.3525 94.92109639 713 2048:64:1:r 2048:64:8:l GO L1L2unified 1.099228122 86.355 94.92384446 714 2048:64:1:r 2048:64:8:r GO L1L2unified 1.098946481 86.35 94.89402867 715 2048:64:1:r 4096:64:4:f GO L1L2unified 1.098758721 85.7525 94.22130723 716 2048:64:1:r 4096:64:4:l GO L1L2unified 1.098758721 85.755 94.22405413 717 2048:64:1:r 4096:64:4:r GO L1L2unified 1.098852601 85.75 94.22661056 718 2048:64:1:r 8192:64:2:f GO L1L2unified 1.098852601 85.4525 93.89970191 719 2048:64:1:r 8192:64:2:l GO L1L2unified 1.098852601 85.455 93.90244904 720 2048:64:1:r 8192:64:2:r GO L1L2unified 1.099134242 85.45 93.92102095 721 256:64:8:f 16384:64:1:f GO L1L2unified 1.022288121 86.355 88.27969069 722 256:64:8:f 16384:64:1:l GO L1L2unified 1.022288121 86.3575 88.28224641 723 256:64:8:f 16384:64:1:r GO L1L2unified 1.022288121 86.3525 88.27713497 724 256:64:8:f 2048:64:8:f GO L1L2unified 1.013220302 87.405 88.56052053 725 256:64:8:f 2048:64:8:l GO L1L2unified 1.013220302 87.4075 88.56305358 726 256:64:8:f 2048:64:8:r GO L1L2unified 1.0129392 87.4025 88.53341843 727 256:64:8:f 4096:64:4:f GO L1L2unified 1.01273064 86.805 87.91008322
  • 33. 33 728 256:64:8:f 4096:64:4:l GO L1L2unified 1.01273064 86.8075 87.91261504 729 256:64:8:f 4096:64:4:r GO L1L2unified 1.012911997 86.8025 87.92329358 730 256:64:8:f 8192:64:2:f GO L1L2unified 1.012821318 86.505 87.61410814 731 256:64:8:f 8192:64:2:l GO L1L2unified 1.012875725 86.5075 87.6213468 732 256:64:8:f 8192:64:2:r GO L1L2unified 1.013193099 86.5025 87.64373604 733 256:64:8:l 16384:64:1:f GO L1L2unified 1.016169097 86.3575 87.75382279 734 256:64:8:l 16384:64:1:l GO L1L2unified 1.016169097 86.36 87.75636322 735 256:64:8:l 16384:64:1:r GO L1L2unified 1.016169097 86.355 87.75128237 736 256:64:8:l 2048:64:8:f GO L1L2unified 1.011550504 87.4075 88.41710068 737 256:64:8:l 2048:64:8:l GO L1L2unified 1.011550504 87.41 88.41962956 738 256:64:8:l 2048:64:8:r GO L1L2unified 1.011275668 87.405 88.39054973 739 256:64:8:l 4096:64:4:f GO L1L2unified 1.011061161 86.8075 87.76769175 740 256:64:8:l 4096:64:4:l GO L1L2unified 1.011061161 86.81 87.7702194 741 256:64:8:l 4096:64:4:r GO L1L2unified 1.011235448 86.805 87.78029303 742 256:64:8:l 8192:64:2:f GO L1L2unified 1.011134898 86.5075 87.47075217 743 256:64:8:l 8192:64:2:l GO L1L2unified 1.011188524 86.51 87.47791924 744 256:64:8:l 8192:64:2:r GO L1L2unified 1.011490174 86.505 87.49895751 745 256:64:8:r 16384:64:1:f GO L1L2unified 1.016923731 86.3525 87.81390647 746 256:64:8:r 16384:64:1:l GO L1L2unified 1.016923731 86.355 87.81644878 747 256:64:8:r 16384:64:1:r GO L1L2unified 1.016885941 86.35 87.80810104 748 256:64:8:r 2048:64:8:f GO L1L2unified 1.011550628 87.4025 88.41205375 749 256:64:8:r 2048:64:8:l GO L1L2unified 1.01143663 87.405 88.40461864 750 256:64:8:r 2048:64:8:r GO L1L2unified 1.011387128 87.4 88.39523502 751 256:64:8:r 4096:64:4:f GO L1L2unified 1.011064237 86.8025 87.7629034 752 256:64:8:r 4096:64:4:l GO L1L2unified 1.011049037 86.805 87.76411165 753 256:64:8:r 4096:64:4:r GO L1L2unified 1.011302729 86.8 87.78107684 754 256:64:8:r 8192:64:2:f GO L1L2unified 1.011094636 86.5025 87.46221376 755 256:64:8:r 8192:64:2:l GO L1L2unified 1.011117436 86.505 87.46671377 756 256:64:8:r 8192:64:2:r GO L1L2unified 1.011460029 86.5 87.49129247 757 4096:32:1:f 16384:32:2:f GO L1L2unified 1.111897854 85.455 95.01723111 758 4096:32:1:f 16384:32:2:l GO L1L2unified 1.111897854 85.4575 95.02001086 759 4096:32:1:f 16384:32:2:r GO L1L2unified 1.112515064 85.4525 95.06719353 760 4096:32:1:f 32768:32:1:f GO L1L2unified 1.141729684 85.305 97.39525066 761 4096:32:1:f 32768:32:1:l GO L1L2unified 1.141729684 85.3075 97.39810499 762 4096:32:1:f 32768:32:1:r GO L1L2unified 1.141729684 85.3025 97.39239634 763 4096:32:1:f 4096:32:8:f GO L1L2unified 1.113029406 86.355 96.11565437 764 4096:32:1:f 4096:32:8:l GO L1L2unified 1.113029406 86.3575 96.11843694 765 4096:32:1:f 4096:32:8:r GO L1L2unified 1.112412196 86.3525 96.05957415 766 4096:32:1:f 8192:32:4:f GO L1L2unified 1.112000722 85.755 95.35962195 767 4096:32:1:f 8192:32:4:l GO L1L2unified 1.112000722 85.7575 95.36240195 768 4096:32:1:f 8192:32:4:r GO L1L2unified 1.112309328 85.7525 95.38330561
  • 34. 34 769 4096:32:1:l 16384:32:2:f GO L1L2unified 1.111897854 85.4575 95.02001086 770 4096:32:1:l 16384:32:2:l GO L1L2unified 1.111897854 85.46 95.0227906 771 4096:32:1:l 16384:32:2:r GO L1L2unified 1.112515064 85.455 95.06997482 772 4096:32:1:l 32768:32:1:f GO L1L2unified 1.141729684 85.3075 97.39810499 773 4096:32:1:l 32768:32:1:l GO L1L2unified 1.141729684 85.31 97.40095931 774 4096:32:1:l 32768:32:1:r GO L1L2unified 1.141729684 85.305 97.39525066 775 4096:32:1:l 4096:32:8:f GO L1L2unified 1.113029406 86.3575 96.11843694 776 4096:32:1:l 4096:32:8:l GO L1L2unified 1.113029406 86.36 96.12121952 777 4096:32:1:l 4096:32:8:r GO L1L2unified 1.112412196 86.355 96.06235518 778 4096:32:1:l 8192:32:4:f GO L1L2unified 1.112000722 85.7575 95.36240195 779 4096:32:1:l 8192:32:4:l GO L1L2unified 1.112000722 85.76 95.36518195 780 4096:32:1:l 8192:32:4:r GO L1L2unified 1.112309328 85.755 95.38608638 781 4096:32:1:r 16384:32:2:f GO L1L2unified 1.111897854 85.4525 95.01445137 782 4096:32:1:r 16384:32:2:l GO L1L2unified 1.111897854 85.455 95.01723111 783 4096:32:1:r 16384:32:2:r GO L1L2unified 1.112515064 85.45 95.06441224 784 4096:32:1:r 32768:32:1:f GO L1L2unified 1.141729684 85.3025 97.39239634 785 4096:32:1:r 32768:32:1:l GO L1L2unified 1.141729684 85.305 97.39525066 786 4096:32:1:r 32768:32:1:r GO L1L2unified 1.141729684 85.3 97.38954201 787 4096:32:1:r 4096:32:8:f GO L1L2unified 1.113029406 86.3525 96.1128718 788 4096:32:1:r 4096:32:8:l GO L1L2unified 1.113029406 86.355 96.11565437 789 4096:32:1:r 4096:32:8:r GO L1L2unified 1.112412196 86.35 96.05679312 790 4096:32:1:r 8192:32:4:f GO L1L2unified 1.112000722 85.7525 95.35684195 791 4096:32:1:r 8192:32:4:l GO L1L2unified 1.112000722 85.755 95.35962195 792 4096:32:1:r 8192:32:4:r GO L1L2unified 1.112309328 85.75 95.38052483 793 512:32:8:f 16384:32:2:f GO L1L2unified 1.020048418 86.505 88.23928841 794 512:32:8:f 16384:32:2:l GO L1L2unified 1.02008879 86.5075 88.24533098 795 512:32:8:f 16384:32:2:r GO L1L2unified 1.020802023 86.5025 88.30192695 796 512:32:8:f 32768:32:1:f GO L1L2unified 1.032590549 86.355 89.16935683 797 512:32:8:f 32768:32:1:l GO L1L2unified 1.032590549 86.3575 89.1719383 798 512:32:8:f 32768:32:1:r GO L1L2unified 1.032590549 86.3525 89.16677535 799 512:32:8:f 4096:32:8:f GO L1L2unified 1.021124996 87.405 89.25143026 800 512:32:8:f 4096:32:8:l GO L1L2unified 1.021098081 87.4075 89.25163055 801 512:32:8:f 4096:32:8:r GO L1L2unified 1.020640536 87.4025 89.20653444 802 512:32:8:f 8192:32:4:f GO L1L2unified 1.020169533 86.805 88.55581632 803 512:32:8:f 8192:32:4:l GO L1L2unified 1.020142619 86.8075 88.55603037 804 512:32:8:f 8192:32:4:r GO L1L2unified 1.02057325 86.8025 88.58830951 805 512:32:8:l 16384:32:2:f GO L1L2unified 1.017519524 86.5075 88.02307026 806 512:32:8:l 16384:32:2:l GO L1L2unified 1.017560161 86.51 88.02912952 807 512:32:8:l 16384:32:2:r GO L1L2unified 1.018271299 86.505 88.08555871 808 512:32:8:l 32768:32:1:f GO L1L2unified 1.024275335 86.3575 88.45385728 809 512:32:8:l 32768:32:1:l GO L1L2unified 1.024275335 86.36 88.45641797
  • 35. 35 810 512:32:8:l 32768:32:1:r GO L1L2unified 1.024275335 86.355 88.45129659 811 512:32:8:l 4096:32:8:f GO L1L2unified 1.018626868 87.4075 89.03562795 812 512:32:8:l 4096:32:8:l GO L1L2unified 1.018596391 87.41 89.0355105 813 512:32:8:l 4096:32:8:r GO L1L2unified 1.018118912 87.405 88.98868352 814 512:32:8:l 8192:32:4:f GO L1L2unified 1.017661752 86.8075 88.34067254 815 512:32:8:l 8192:32:4:l GO L1L2unified 1.017631275 86.81 88.34057095 816 512:32:8:l 8192:32:4:r GO L1L2unified 1.018057957 86.805 88.372521 817 512:32:8:r 16384:32:2:f GO L1L2unified 1.018310321 86.5025 88.08638853 818 512:32:8:r 16384:32:2:l GO L1L2unified 1.018321794 86.505 88.08992681 819 512:32:8:r 16384:32:2:r GO L1L2unified 1.019070255 86.5 88.14957704 820 512:32:8:r 32768:32:1:f GO L1L2unified 1.026100774 86.3525 88.6063671 821 512:32:8:r 32768:32:1:l GO L1L2unified 1.026100774 86.355 88.60893235 822 512:32:8:r 32768:32:1:r GO L1L2unified 1.026129773 86.35 88.60630589 823 512:32:8:r 4096:32:8:f GO L1L2unified 1.019457663 87.4025 89.10314839 824 512:32:8:r 4096:32:8:l GO L1L2unified 1.019205248 87.405 89.08363468 825 512:32:8:r 4096:32:8:r GO L1L2unified 1.019224701 87.4 89.08023891 826 512:32:8:r 8192:32:4:f GO L1L2unified 1.018493896 86.8025 88.40781637 827 512:32:8:r 8192:32:4:l GO L1L2unified 1.018448002 86.805 88.40637881 828 512:32:8:r 8192:32:4:r GO L1L2unified 1.019027366 86.8 88.45157535 829 512:64:4:f 16384:64:1:f GO L1L2unified 1.024908163 85.755 87.89099954 830 512:64:4:f 16384:64:1:l GO L1L2unified 1.024908163 85.7575 87.89356181 831 512:64:4:f 16384:64:1:r GO L1L2unified 1.024908163 85.7525 87.88843727 832 512:64:4:f 2048:64:8:f GO L1L2unified 1.013221871 86.805 87.95272449 833 512:64:4:f 2048:64:8:l GO L1L2unified 1.013212654 86.8075 87.9544575 834 512:64:4:f 2048:64:8:r GO L1L2unified 1.012936165 86.8025 87.92539145 835 512:64:4:f 4096:64:4:f GO L1L2unified 1.012733406 86.205 87.30268325 836 512:64:4:f 4096:64:4:l GO L1L2unified 1.01272419 86.2075 87.30442057 837 512:64:4:f 4096:64:4:r GO L1L2unified 1.012908516 86.2025 87.31524634 838 512:64:4:f 8192:64:2:f GO L1L2unified 1.012825569 85.905 87.00678051 839 512:64:4:f 8192:64:2:l GO L1L2unified 1.012853218 85.9075 87.01168783 840 512:64:4:f 8192:64:2:r GO L1L2unified 1.013185005 85.9025 87.03512493 841 512:64:4:l 16384:64:1:f GO L1L2unified 1.018806631 85.7575 87.37030965 842 512:64:4:l 16384:64:1:l GO L1L2unified 1.018806631 85.76 87.37285667 843 512:64:4:l 16384:64:1:r GO L1L2unified 1.018806631 85.755 87.36776264 844 512:64:4:l 2048:64:8:f GO L1L2unified 1.011550884 86.8075 87.81020338 845 512:64:4:l 2048:64:8:l GO L1L2unified 1.011543665 86.81 87.81210552 846 512:64:4:l 2048:64:8:r GO L1L2unified 1.011254879 86.805 87.78197974 847 512:64:4:l 4096:64:4:f GO L1L2unified 1.011059948 86.2075 87.16095047 848 512:64:4:l 4096:64:4:l GO L1L2unified 1.011059948 86.21 87.16347812 849 512:64:4:l 4096:64:4:r GO L1L2unified 1.01123322 86.205 87.1733597 850 512:64:4:l 8192:64:2:f GO L1L2unified 1.011139364 85.9075 86.86445493
  • 36. 36 851 512:64:4:l 8192:64:2:l GO L1L2unified 1.011175462 85.91 86.87008398 852 512:64:4:l 8192:64:2:r GO L1L2unified 1.011493127 85.905 86.89231707 853 512:64:4:r 16384:64:1:f GO L1L2unified 1.020708464 85.7525 87.52830258 854 512:64:4:r 16384:64:1:l GO L1L2unified 1.020708464 85.755 87.53085435 855 512:64:4:r 16384:64:1:r GO L1L2unified 1.020746947 85.75 87.52905071 856 512:64:4:r 2048:64:8:f GO L1L2unified 1.012388734 86.8025 87.87787312 857 512:64:4:r 2048:64:8:l GO L1L2unified 1.012280034 86.805 87.87096839 858 512:64:4:r 2048:64:8:r GO L1L2unified 1.012223955 86.8 87.86103932 859 512:64:4:r 4096:64:4:f GO L1L2unified 1.011895404 86.2025 87.22791354 860 512:64:4:r 4096:64:4:l GO L1L2unified 1.011878681 86.205 87.22900167 861 512:64:4:r 4096:64:4:r GO L1L2unified 1.0121254 86.2 87.24520947 862 512:64:4:r 8192:64:2:f GO L1L2unified 1.011945573 85.9025 86.92865458 863 512:64:4:r 8192:64:2:l GO L1L2unified 1.011962296 85.905 86.93262104 864 512:64:4:r 8192:64:2:r GO L1L2unified 1.012307199 85.9 86.95718838 865 2048:32:2:f 16384:32:2:f GCC L1sepL2unified 1.131582136 85.68 96.95395738 866 2048:32:2:f 16384:32:2:l GCC L1sepL2unified 1.127655134 85.6825 96.62031098 867 2048:32:2:f 16384:32:2:r GCC L1sepL2unified 1.134177951 85.6775 97.17353136 868 2048:32:2:f 32768:32:1:f GCC L1sepL2unified 1.165527408 85.53 99.68755918 869 2048:32:2:f 32768:32:1:l GCC L1sepL2unified 1.165527408 85.5325 99.690473 870 2048:32:2:f 32768:32:1:r GCC L1sepL2unified 1.165527408 85.5275 99.68464537 871 2048:32:2:f 4096:32:8:f GCC L1sepL2unified 1.117737789 86.58 96.7737378 872 2048:32:2:f 4096:32:8:l GCC L1sepL2unified 1.109750666 86.5825 96.08498708 873 2048:32:2:f 4096:32:8:r GCC L1sepL2unified 1.122929419 86.5775 97.22042179 874 2048:32:2:f 8192:32:4:f GCC L1sepL2unified 1.123195657 85.98 96.57236255 875 2048:32:2:f 8192:32:4:l GCC L1sepL2unified 1.116539721 85.9825 96.00287655 876 2048:32:2:f 8192:32:4:r GCC L1sepL2unified 1.126922981 85.9775 96.89002056 877 2048:32:2:l 16384:32:2:f GCC L1sepL2unified 1.126487616 85.6825 96.52027516 878 2048:32:2:l 16384:32:2:l GCC L1sepL2unified 1.122926333 85.685 96.21794287 879 2048:32:2:l 16384:32:2:r GCC L1sepL2unified 1.128861804 85.68 96.72087941 880 2048:32:2:l 32768:32:1:f GCC L1sepL2unified 1.157726938 85.5325 99.02327934 881 2048:32:2:l 32768:32:1:l GCC L1sepL2unified 1.157726938 85.535 99.02617366 882 2048:32:2:l 32768:32:1:r GCC L1sepL2unified 1.157726938 85.53 99.02038503 883 2048:32:2:l 4096:32:8:f GCC L1sepL2unified 1.113242143 86.5825 96.38728788 884 2048:32:2:l 4096:32:8:l GCC L1sepL2unified 1.105494791 86.585 95.71926652 885 2048:32:2:l 4096:32:8:r GCC L1sepL2unified 1.118177956 86.58 96.81184746 886 2048:32:2:l 8192:32:4:f GCC L1sepL2unified 1.118615307 85.9825 96.18134062 887 2048:32:2:l 8192:32:4:l GCC L1sepL2unified 1.112242485 85.985 95.63617008 888 2048:32:2:l 8192:32:4:r GCC L1sepL2unified 1.122051632 85.98 96.47399934 889 2048:32:2:r 16384:32:2:f GCC L1sepL2unified 1.132966756 85.6775 97.0697592 890 2048:32:2:r 16384:32:2:l GCC L1sepL2unified 1.129072337 85.68 96.73891783 891 2048:32:2:r 16384:32:2:r GCC L1sepL2unified 1.135557366 85.675 97.28887733
  • 37. 37 892 2048:32:2:r 32768:32:1:f GCC L1sepL2unified 1.165488568 85.5275 99.68132348 893 2048:32:2:r 32768:32:1:l GCC L1sepL2unified 1.165488568 85.53 99.6842372 894 2048:32:2:r 32768:32:1:r GCC L1sepL2unified 1.165396968 85.525 99.67057573 895 2048:32:2:r 4096:32:8:f GCC L1sepL2unified 1.119370452 86.5775 96.91229529 896 2048:32:2:r 4096:32:8:l GCC L1sepL2unified 1.111444968 86.58 96.22890534 897 2048:32:2:r 4096:32:8:r GCC L1sepL2unified 1.124627135 86.575 97.36459418 898 2048:32:2:r 8192:32:4:f GCC L1sepL2unified 1.124767979 85.9775 96.70473895 899 2048:32:2:r 8192:32:4:l GCC L1sepL2unified 1.118208958 85.98 96.14360625 900 2048:32:2:r 8192:32:4:r GCC L1sepL2unified 1.128508021 85.975 97.02347707 901 2048:64:1:f 16384:64:1:f GCC L1sepL2unified 1.152854236 85.38 98.43069468 902 2048:64:1:f 16384:64:1:l GCC L1sepL2unified 1.152854236 85.3825 98.43357682 903 2048:64:1:f 16384:64:1:r GCC L1sepL2unified 1.152854236 85.3775 98.42781255 904 2048:64:1:f 2048:64:8:f GCC L1sepL2unified 1.113915777 86.43 96.27574062 905 2048:64:1:f 2048:64:8:l GCC L1sepL2unified 1.10854227 86.4325 95.81407973 906 2048:64:1:f 2048:64:8:r GCC L1sepL2unified 1.116641469 86.4275 96.50853058 907 2048:64:1:f 4096:64:4:f GCC L1sepL2unified 1.117731746 85.83 95.93491577 908 2048:64:1:f 4096:64:4:l GCC L1sepL2unified 1.113214885 85.8325 95.5500166 909 2048:64:1:f 4096:64:4:r GCC L1sepL2unified 1.119600792 85.8275 96.09253699 910 2048:64:1:f 8192:64:2:f GCC L1sepL2unified 1.1229495 85.53 96.0458707 911 2048:64:1:f 8192:64:2:l GCC L1sepL2unified 1.120145931 85.5325 95.80888181 912 2048:64:1:f 8192:64:2:r GCC L1sepL2unified 1.124662792 85.5275 96.18959693 913 2048:64:1:l 16384:64:1:f GCC L1sepL2unified 1.152854236 85.3825 98.43357682 914 2048:64:1:l 16384:64:1:l GCC L1sepL2unified 1.152854236 85.385 98.43645895 915 2048:64:1:l 16384:64:1:r GCC L1sepL2unified 1.152854236 85.38 98.43069468 916 2048:64:1:l 2048:64:8:f GCC L1sepL2unified 1.113915777 86.4325 96.27852541 917 2048:64:1:l 2048:64:8:l GCC L1sepL2unified 1.10854227 86.435 95.81685109 918 2048:64:1:l 2048:64:8:r GCC L1sepL2unified 1.116641469 86.43 96.51132219 919 2048:64:1:l 4096:64:4:f GCC L1sepL2unified 1.117731746 85.8325 95.9377101 920 2048:64:1:l 4096:64:4:l GCC L1sepL2unified 1.113214885 85.835 95.55279964 921 2048:64:1:l 4096:64:4:r GCC L1sepL2unified 1.119600792 85.83 96.09533599 922 2048:64:1:l 8192:64:2:f GCC L1sepL2unified 1.1229495 85.5325 96.04867808 923 2048:64:1:l 8192:64:2:l GCC L1sepL2unified 1.120145931 85.535 95.81168217 924 2048:64:1:l 8192:64:2:r GCC L1sepL2unified 1.124662792 85.53 96.19240858 925 2048:64:1:r 16384:64:1:f GCC L1sepL2unified 1.152854236 85.3775 98.42781255 926 2048:64:1:r 16384:64:1:l GCC L1sepL2unified 1.152854236 85.38 98.43069468 927 2048:64:1:r 16384:64:1:r GCC L1sepL2unified 1.152854236 85.375 98.42493041 928 2048:64:1:r 2048:64:8:f GCC L1sepL2unified 1.113915777 86.4275 96.27295583 929 2048:64:1:r 2048:64:8:l GCC L1sepL2unified 1.10854227 86.43 95.81130838 930 2048:64:1:r 2048:64:8:r GCC L1sepL2unified 1.116719346 86.425 96.51246949 931 2048:64:1:r 4096:64:4:f GCC L1sepL2unified 1.117731746 85.8275 95.93212144 932 2048:64:1:r 4096:64:4:l GCC L1sepL2unified 1.113214885 85.83 95.54723357
  • 38. 38 933 2048:64:1:r 4096:64:4:r GCC L1sepL2unified 1.119756546 85.825 96.10310556 934 2048:64:1:r 8192:64:2:f GCC L1sepL2unified 1.1229495 85.5275 96.04306333 935 2048:64:1:r 8192:64:2:l GCC L1sepL2unified 1.120145931 85.53 95.80608144 936 2048:64:1:r 8192:64:2:r GCC L1sepL2unified 1.124662792 85.525 96.18678527 937 256:64:8:f 16384:64:1:f GCC L1sepL2unified 1.103134863 86.43 95.3439462 938 256:64:8:f 16384:64:1:l GCC L1sepL2unified 1.103134863 86.4325 95.34670404 939 256:64:8:f 16384:64:1:r GCC L1sepL2unified 1.103134863 86.4275 95.34118836 940 256:64:8:f 2048:64:8:f GCC L1sepL2unified 1.070607661 87.48 93.65675817 941 256:64:8:f 2048:64:8:l GCC L1sepL2unified 1.065244338 87.4825 93.19023781 942 256:64:8:f 2048:64:8:r GCC L1sepL2unified 1.073462955 87.4775 93.90385565 943 256:64:8:f 4096:64:4:f GCC L1sepL2unified 1.074504752 86.88 93.35297281 944 256:64:8:f 4096:64:4:l GCC L1sepL2unified 1.0699903 86.8825 92.96343224 945 256:64:8:f 4096:64:4:r GCC L1sepL2unified 1.076549759 86.8775 93.52795173 946 256:64:8:f 8192:64:2:f GCC L1sepL2unified 1.079790904 86.58 93.48829648 947 256:64:8:f 8192:64:2:l GCC L1sepL2unified 1.077051365 86.5825 93.25379983 948 256:64:8:f 8192:64:2:r GCC L1sepL2unified 1.081334306 86.5775 93.61922091 949 256:64:8:l 16384:64:1:f GCC L1sepL2unified 1.093307993 86.4325 94.49734308 950 256:64:8:l 16384:64:1:l GCC L1sepL2unified 1.093307993 86.435 94.50007635 951 256:64:8:l 16384:64:1:r GCC L1sepL2unified 1.093307993 86.43 94.49460981 952 256:64:8:l 2048:64:8:f GCC L1sepL2unified 1.064909168 87.4825 93.16091627 953 256:64:8:l 2048:64:8:l GCC L1sepL2unified 1.059915236 87.485 92.72668443 954 256:64:8:l 2048:64:8:r GCC L1sepL2unified 1.067672477 87.48 93.39998826 955 256:64:8:l 4096:64:4:f GCC L1sepL2unified 1.068704556 86.8825 92.85172358 956 256:64:8:l 4096:64:4:l GCC L1sepL2unified 1.064709411 86.885 92.50727714 957 256:64:8:l 4096:64:4:r GCC L1sepL2unified 1.07060225 86.88 93.01392348 958 256:64:8:l 8192:64:2:f GCC L1sepL2unified 1.073365559 86.5825 92.9346735 959 256:64:8:l 8192:64:2:l GCC L1sepL2unified 1.071101643 86.585 92.74133577 960 256:64:8:l 8192:64:2:r GCC L1sepL2unified 1.074564102 86.58 93.03575999 961 256:64:8:r 16384:64:1:f GCC L1sepL2unified 1.10334704 86.4275 95.35952631 962 256:64:8:r 16384:64:1:l GCC L1sepL2unified 1.10334704 86.43 95.36228468 963 256:64:8:r 16384:64:1:r GCC L1sepL2unified 1.103345627 86.425 95.35664584 964 256:64:8:r 2048:64:8:f GCC L1sepL2unified 1.07277223 87.4775 93.84343275 965 256:64:8:r 2048:64:8:l GCC L1sepL2unified 1.067520365 87.48 93.38668155 966 256:64:8:r 2048:64:8:r GCC L1sepL2unified 1.075785151 87.475 94.10430606 967 256:64:8:r 4096:64:4:f GCC L1sepL2unified 1.07659917 86.8775 93.53224442 968 256:64:8:r 4096:64:4:l GCC L1sepL2unified 1.072283684 86.88 93.16000651 969 256:64:8:r 4096:64:4:r GCC L1sepL2unified 1.078690374 86.875 93.71122622 970 256:64:8:r 8192:64:2:f GCC L1sepL2unified 1.081728899 86.5775 93.65338373 971 256:64:8:r 8192:64:2:l GCC L1sepL2unified 1.079041898 86.58 93.42344754 972 256:64:8:r 8192:64:2:r GCC L1sepL2unified 1.082939836 86.575 93.75551634 973 4096:32:1:f 16384:32:2:f GCC L1sepL2unified 1.171155706 85.53 100.1689475
  • 39. 39 974 4096:32:1:f 16384:32:2:l GCC L1sepL2unified 1.167061644 85.5325 99.82170006 975 4096:32:1:f 16384:32:2:r GCC L1sepL2unified 1.173816846 85.5275 100.3936203 976 4096:32:1:f 32768:32:1:f GCC L1sepL2unified 1.210253996 85.38 103.3314862 977 4096:32:1:f 32768:32:1:l GCC L1sepL2unified 1.210253996 85.3825 103.3345118 978 4096:32:1:f 32768:32:1:r GCC L1sepL2unified 1.210253996 85.3775 103.3284605 979 4096:32:1:f 4096:32:8:f GCC L1sepL2unified 1.157440599 86.43 100.0375909 980 4096:32:1:f 4096:32:8:l GCC L1sepL2unified 1.149457178 86.4325 99.35045755 981 4096:32:1:f 4096:32:8:r GCC L1sepL2unified 1.162455824 86.4275 100.4681508 982 4096:32:1:f 8192:32:4:f GCC L1sepL2unified 1.162865231 85.83 99.80872274 983 4096:32:1:f 8192:32:4:l GCC L1sepL2unified 1.156314732 85.8325 99.2493842 984 4096:32:1:f 8192:32:4:r GCC L1sepL2unified 1.166549886 85.8275 100.1220604 985 4096:32:1:l 16384:32:2:f GCC L1sepL2unified 1.171155706 85.5325 100.1718754 986 4096:32:1:l 16384:32:2:l GCC L1sepL2unified 1.167061644 85.535 99.82461771 987 4096:32:1:l 16384:32:2:r GCC L1sepL2unified 1.173816846 85.53 100.3965548 988 4096:32:1:l 32768:32:1:f GCC L1sepL2unified 1.210253996 85.3825 103.3345118 989 4096:32:1:l 32768:32:1:l GCC L1sepL2unified 1.210253996 85.385 103.3375374 990 4096:32:1:l 32768:32:1:r GCC L1sepL2unified 1.210253996 85.38 103.3314862 991 4096:32:1:l 4096:32:8:f GCC L1sepL2unified 1.157440599 86.4325 100.0404845 992 4096:32:1:l 4096:32:8:l GCC L1sepL2unified 1.149457178 86.435 99.35333119 993 4096:32:1:l 4096:32:8:r GCC L1sepL2unified 1.162455824 86.43 100.4710569 994 4096:32:1:l 8192:32:4:f GCC L1sepL2unified 1.162865231 85.8325 99.8116299 995 4096:32:1:l 8192:32:4:l GCC L1sepL2unified 1.156314732 85.835 99.25227499 996 4096:32:1:l 8192:32:4:r GCC L1sepL2unified 1.166549886 85.83 100.1249767 997 4096:32:1:r 16384:32:2:f GCC L1sepL2unified 1.171155706 85.5275 100.1660196 998 4096:32:1:r 16384:32:2:l GCC L1sepL2unified 1.167061644 85.53 99.8187824 999 4096:32:1:r 16384:32:2:r GCC L1sepL2unified 1.173816846 85.525 100.3906857 1000 4096:32:1:r 32768:32:1:f GCC L1sepL2unified 1.210253996 85.3775 103.3284605 1001 4096:32:1:r 32768:32:1:l GCC L1sepL2unified 1.210253996 85.38 103.3314862 1002 4096:32:1:r 32768:32:1:r GCC L1sepL2unified 1.210253996 85.375 103.3254349 1003 4096:32:1:r 4096:32:8:f GCC L1sepL2unified 1.157440599 86.4275 100.0346973 1004 4096:32:1:r 4096:32:8:l GCC L1sepL2unified 1.149457178 86.43 99.34758391 1005 4096:32:1:r 4096:32:8:r GCC L1sepL2unified 1.162455824 86.425 100.4652446 1006 4096:32:1:r 8192:32:4:f GCC L1sepL2unified 1.162865231 85.8275 99.80581557 1007 4096:32:1:r 8192:32:4:l GCC L1sepL2unified 1.156314732 85.83 99.24649342 1008 4096:32:1:r 8192:32:4:r GCC L1sepL2unified 1.166549886 85.825 100.119144 1009 512:32:8:f 16384:32:2:f GCC L1sepL2unified 1.116047435 86.58 96.62738691 1010 512:32:8:f 16384:32:2:l GCC L1sepL2unified 1.112227143 86.5825 96.29940659 1011 512:32:8:f 16384:32:2:r GCC L1sepL2unified 1.118541237 86.5775 96.84050391 1012 512:32:8:f 32768:32:1:f GCC L1sepL2unified 1.149315811 86.43 99.33536558 1013 512:32:8:f 32768:32:1:l GCC L1sepL2unified 1.149315811 86.4325 99.33823887 1014 512:32:8:f 32768:32:1:r GCC L1sepL2unified 1.149315811 86.4275 99.33249229
  • 40. 40 1015 512:32:8:f 4096:32:8:f GCC L1sepL2unified 1.101880519 87.48 96.39250776 1016 512:32:8:f 4096:32:8:l GCC L1sepL2unified 1.093868517 87.4825 95.69435255 1017 512:32:8:f 4096:32:8:r GCC L1sepL2unified 1.106974241 87.4775 96.83533919 1018 512:32:8:f 8192:32:4:f GCC L1sepL2unified 1.107451778 86.88 96.21541045 1019 512:32:8:f 8192:32:4:l GCC L1sepL2unified 1.100819326 86.8825 95.64193512 1020 512:32:8:f 8192:32:4:r GCC L1sepL2unified 1.11127207 86.8775 96.54453924 1021 512:32:8:l 16384:32:2:f GCC L1sepL2unified 1.108182624 86.5825 95.94922205 1022 512:32:8:l 16384:32:2:l GCC L1sepL2unified 1.104961552 86.585 95.67309602 1023 512:32:8:l 16384:32:2:r GCC L1sepL2unified 1.110516734 86.58 96.14853882 1024 512:32:8:l 32768:32:1:f GCC L1sepL2unified 1.136938857 86.4325 98.26846776 1025 512:32:8:l 32768:32:1:l GCC L1sepL2unified 1.136938857 86.435 98.27131011 1026 512:32:8:l 32768:32:1:r GCC L1sepL2unified 1.136938857 86.43 98.26562542 1027 512:32:8:l 4096:32:8:f GCC L1sepL2unified 1.095064927 87.4825 95.79901746 1028 512:32:8:l 4096:32:8:l GCC L1sepL2unified 1.087549093 87.485 95.14423242 1029 512:32:8:l 4096:32:8:r GCC L1sepL2unified 1.100106604 87.48 96.23732572 1030 512:32:8:l 8192:32:4:f GCC L1sepL2unified 1.100433379 86.8825 95.60840309 1031 512:32:8:l 8192:32:4:l GCC L1sepL2unified 1.09450474 86.885 95.09604438 1032 512:32:8:l 8192:32:4:r GCC L1sepL2unified 1.103981226 86.88 95.91388895 1033 512:32:8:r 16384:32:2:f GCC L1sepL2unified 1.118641083 86.5775 96.84914834 1034 512:32:8:r 16384:32:2:l GCC L1sepL2unified 1.11488035 86.58 96.5263407 1035 512:32:8:r 16384:32:2:r GCC L1sepL2unified 1.1210859 86.575 97.05801181 1036 512:32:8:r 32768:32:1:f GCC L1sepL2unified 1.149175988 86.4275 99.32040769 1037 512:32:8:r 32768:32:1:l GCC L1sepL2unified 1.149175988 86.43 99.32328063 1038 512:32:8:r 32768:32:1:r GCC L1sepL2unified 1.149221405 86.425 99.3214599 1039 512:32:8:r 4096:32:8:f GCC L1sepL2unified 1.10494528 87.4775 96.6578507 1040 512:32:8:r 4096:32:8:l GCC L1sepL2unified 1.097143162 87.48 95.97808384 1041 512:32:8:r 4096:32:8:r GCC L1sepL2unified 1.110394899 87.475 97.1317938 1042 512:32:8:r 8192:32:4:f GCC L1sepL2unified 1.110446053 86.8775 96.47277697 1043 512:32:8:r 8192:32:4:l GCC L1sepL2unified 1.104047194 86.88 95.91962024 1044 512:32:8:r 8192:32:4:r GCC L1sepL2unified 1.114210389 86.875 96.79702753 1045 512:64:4:f 16384:64:1:f GCC L1sepL2unified 1.106487164 85.83 94.96979328 1046 512:64:4:f 16384:64:1:l GCC L1sepL2unified 1.106487164 85.8325 94.9725595 1047 512:64:4:f 16384:64:1:r GCC L1sepL2unified 1.106487164 85.8275 94.96702706 1048 512:64:4:f 2048:64:8:f GCC L1sepL2unified 1.073726184 86.88 93.28533084 1049 512:64:4:f 2048:64:8:l GCC L1sepL2unified 1.068334615 86.8825 92.81958221 1050 512:64:4:f 2048:64:8:r GCC L1sepL2unified 1.076566017 86.8775 93.52936417 1051 512:64:4:f 4096:64:4:f GCC L1sepL2unified 1.077553786 86.28 92.97134062 1052 512:64:4:f 4096:64:4:l GCC L1sepL2unified 1.073026514 86.2825 92.58341024 1053 512:64:4:f 4096:64:4:r GCC L1sepL2unified 1.079611636 86.2775 93.14619294 1054 512:64:4:f 8192:64:2:f GCC L1sepL2unified 1.082821883 85.98 93.1010255 1055 512:64:4:f 8192:64:2:l GCC L1sepL2unified 1.080064363 85.9825 92.86663411