D
Deleted member 13524
Guest
Why not? Even the PS4 has run it and got 5000 overall score
It has?
Is there any credible source saying the PS4 has a fully functional Windows distribution that runs 3dmark?
Why not? Even the PS4 has run it and got 5000 overall score
I got it from here.It has?
Is there any credible source saying the PS4 has a fully functional Windows distribution that runs 3dmark?
My thoughts exactly.Was there an actual bench referenced or is that "rough" in the sense of using the nearest PC GPU?
Are there alternative ways of submitting results that we are unaware of ? Or support for varying OS/benchmarking for companies etc at the professional level?Tum Apisak is a reliable data miner to find new CPU/APU codenames and interpreting them, but I don't know of him actually having insider sources that would tell him they have PS4 systems running Windows.
Rough means score is well under 5000.Was there an actual bench referenced or is that "rough" in the sense of using the nearest PC GPU?
The primary key is in the URL with probably an auto-increment.How did you find this? I've exhausted my methods but I couldn't find
https://www.3dmark.com/fs/19011253
from scratch.
Are there alternative ways of submitting results that we are unaware of ? Or support for varying OS/benchmarking for companies etc at the professional level?
Assuming it's the graphics score which doesn't depend a lot on the CPU then no, it'd probably score really close to a HD7850.At the same time, would there be any reason to think a PS4 running the benchmark would score radically different?
The release devkits don’t have windows though. Which is understandable. Curious to see when the switch over occurs.So Windows is actually running on the consoles. Curious.
Lol I wonder what that is because that score is flippin crazy.Scarlett Firestrike scores:
https://www.3dmark.com/fs/19019538
So it's the new PasteBin, eh?
I knew that 0W was fishy...
The list that I scraped are just garbage results that any database would have. Maybe 0.1% of the results on 3dmark is garbage. Someone found one by chance that had a score over 20k.
const { parse } = require('node-html-parser');
const axios = require('axios');
const MIN_ID = 19019611;
const MAX_ID = 19025000;
const URL = "https://www.3dmark.com/fs/";
const SLEEP_MS = 250;
const UNKNOWN = 'Unknown';
const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
const scrape = async () => {
for (let id = MIN_ID; id < MAX_ID; id += 1) {
const url = `${URL}${id}`;
try {
const { data } = await axios.get(url);
const root = parse(data);
const resultHeader = root.querySelector('span.result-header-small');
const gpu = resultHeader.childNodes[3].text.trim();
const cpu = resultHeader.childNodes[5].text.trim();
if (gpu.indexOf(UNKNOWN) !== -1 && cpu.indexOf(UNKNOWN) !== -1) {
console.debug(`Found: ${url}`);
}
await sleep(SLEEP_MS);
} catch (err) {
console.error(`Error in ${url}: `, err);
}
}
};
(async () => {
try {
await scrape();
} catch (e) {
console.error(e);
}
})();
So all the Gonzalo scores are bogus but this one is legit because?Scarlett Firestrike scores:
https://www.3dmark.com/fs/19019538
So all the Gonzalo scores are bogus but this one is legit because?