-
The original boolean M4 language PR was merged last week, and I noticed that M4 was added in PrimeView. However, I'm not seeing M4 showing up in the Language filter. How long does it usually take before new languages show up? Could the fact this the "name" field is in lowercase have anything to do with this? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 7 replies
-
First off: well spotted! For the language to show up in the filter list, there has to be at least one entry for the language in question in the benchmark results (i.e. it's not enough for the language to be included in the language map file). I've run a benchmark of just the M4 directory, with this output:
So, that explains the absence in the results or the language filter. Which makes the next question why the solution's results don't show up in the report. The reason is simple, but also subtle enough for me to also overlook it when I reviewed the solution. It relates to the output format:
The problem is that:
The correct output would have been:
If you can put a PR together to fix this, I'll merge it expeditiously. |
Beta Was this translation helpful? Give feedback.
-
PR #1013 |
Beta Was this translation helpful? Give feedback.
-
There it is: ![]() The two implementations are indeed also in the results list. It showed up in this report first, which was the first benchmark run after the format changes were merged. |
Beta Was this translation helpful? Give feedback.
First off: well spotted!
For the language to show up in the filter list, there has to be at least one entry for the language in question in the benchmark results (i.e. it's not enough for the language to be included in the language map file).
I've run a benchmark of just the M4 directory, with this output:
So, that explains the absence in the results or the language filter. Which makes the next question why the solution's results don't show up in the report. The reason is simple, but also subt…