Skip to content
Snippets Groups Projects
Commit e51e79c4 authored by Oz Linden's avatar Oz Linden
Browse files

truncate gpu id strings to 100 characters (avoids diff problems)

parent 4ae06c7e
No related branches found
No related tags found
No related merge requests found
......@@ -175,6 +175,7 @@ my %RecognizedBy;
while (<>)
{
chomp;
$_ = substr($_,0,100);
my $lcInput = lc $_; # the real gpu table parser lowercases the input string
my $recognizer;
$RecognizedBy{$_} = $NoMatch;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment