Changeset 5a89af0


Ignore:
Timestamp:
Jan 29, 2019, 3:16:32 AM (5 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/crepe_org
Children:
64959c4
Parents:
085696b
Message:

[conv2d] set_padding_mode case insensitive

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ai/conv2d.c

    r085696b r5a89af0  
    467467{
    468468  AUBIO_ASSERT(c && padding_mode);
    469   if (strncmp(padding_mode, "same", PATH_MAX) == 0) {
     469  if (strncasecmp(padding_mode, "same", PATH_MAX) == 0) {
    470470    c->padding_mode = PAD_SAME;
    471   } else if (strncmp(padding_mode, "valid", PATH_MAX) == 0) {
     471  } else if (strncasecmp(padding_mode, "valid", PATH_MAX) == 0) {
    472472    c->padding_mode = PAD_VALID;
    473473  } else {
Note: See TracChangeset for help on using the changeset viewer.