Filter write pilots from all other queries, since I'm using inject-on-read
This commit is contained in:
@@ -30,7 +30,7 @@ JOIN fspgroup g ON g.variant_id = t.variant_id AND g.instr2 = t.instr2 AND g.dat
|
|||||||
JOIN result_GenericExperimentMessage r ON r.pilot_id = g.pilot_id
|
JOIN result_GenericExperimentMessage r ON r.pilot_id = g.pilot_id
|
||||||
JOIN fsppilot p ON r.pilot_id = p.id
|
JOIN fsppilot p ON r.pilot_id = p.id
|
||||||
LEFT JOIN objdump o ON o.variant_id = v.id AND o.instr_address = p.injection_instr_absolute
|
LEFT JOIN objdump o ON o.variant_id = v.id AND o.instr_address = p.injection_instr_absolute
|
||||||
WHERE v.variant = '$experiment'$filters
|
WHERE t.accesstype = 'R' AND v.variant = '$experiment'$filters
|
||||||
GROUP BY benchmark, resulttype, p.injection_instr_absolute
|
GROUP BY benchmark, resulttype, p.injection_instr_absolute
|
||||||
ORDER BY benchmark, resulttype, SUM(t.time2 - t.time1 + 1) DESC;";
|
ORDER BY benchmark, resulttype, SUM(t.time2 - t.time1 + 1) DESC;";
|
||||||
|
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ COUNT(DISTINCT t.instr2, t.data_physical_address) AS count
|
|||||||
FROM variant v
|
FROM variant v
|
||||||
JOIN trace t ON v.id = t.variant_id$filter_joins
|
JOIN trace t ON v.id = t.variant_id$filter_joins
|
||||||
JOIN objdump o ON o.variant_id = v.id AND o.instr_address = t.instr2_absolute
|
JOIN objdump o ON o.variant_id = v.id AND o.instr_address = t.instr2_absolute
|
||||||
WHERE v.variant = '$experiment'$filters
|
WHERE t.accesstype = 'R' AND v.variant = '$experiment'$filters
|
||||||
GROUP BY mnemonic
|
GROUP BY mnemonic
|
||||||
ORDER BY count DESC;";
|
ORDER BY count DESC;";
|
||||||
|
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ JOIN trace t ON v.id = t.variant_id
|
|||||||
JOIN fspgroup g ON g.variant_id = t.variant_id AND g.instr2 = t.instr2 AND g.data_physical_address = t.data_physical_address
|
JOIN fspgroup g ON g.variant_id = t.variant_id AND g.instr2 = t.instr2 AND g.data_physical_address = t.data_physical_address
|
||||||
JOIN result_GenericExperimentMessage r ON r.pilot_id = g.pilot_id
|
JOIN result_GenericExperimentMessage r ON r.pilot_id = g.pilot_id
|
||||||
JOIN fsppilot p ON r.pilot_id = p.id
|
JOIN fsppilot p ON r.pilot_id = p.id
|
||||||
WHERE v.variant = '$experiment'$extra
|
WHERE t.accesstype = 'R' AND v.variant = '$experiment'$extra
|
||||||
GROUP BY v.id, resulttype
|
GROUP BY v.id, resulttype
|
||||||
ORDER BY variant, benchmark, resulttype;";
|
ORDER BY variant, benchmark, resulttype;";
|
||||||
|
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ FROM variant v
|
|||||||
JOIN trace t ON v.id = t.variant_id
|
JOIN trace t ON v.id = t.variant_id
|
||||||
JOIN fspgroup g ON g.variant_id = t.variant_id AND g.instr2 = t.instr2 AND g.data_physical_address = t.data_physical_address
|
JOIN fspgroup g ON g.variant_id = t.variant_id AND g.instr2 = t.instr2 AND g.data_physical_address = t.data_physical_address
|
||||||
JOIN fsppilot p ON p.id = g.pilot_id
|
JOIN fsppilot p ON p.id = g.pilot_id
|
||||||
WHERE v.variant = '$experiment'$extra
|
WHERE t.accesstype = 'R' AND v.variant = '$experiment'$extra
|
||||||
GROUP BY v.id, benchmark
|
GROUP BY v.id, benchmark
|
||||||
ORDER BY variant, benchmark;";
|
ORDER BY variant, benchmark;";
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user