Changeset 64959c4


Ignore:
Timestamp:
Jan 29, 2019, 3:16:50 AM (5 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/crepe_org
Children:
a9a8c04
Parents:
5a89af0
Message:

[conv1d] set_padding_mode case insensitive

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ai/conv1d.c

    r5a89af0 r64959c4  
    324324{
    325325  AUBIO_ASSERT(c && padding_mode);
    326   if (strncmp(padding_mode, "same", PATH_MAX) == 0) {
     326  if (strncasecmp(padding_mode, "same", PATH_MAX) == 0) {
    327327    c->padding_mode = PAD_SAME;
    328   } else if (strncmp(padding_mode, "valid", PATH_MAX) == 0) {
     328  } else if (strncasecmp(padding_mode, "valid", PATH_MAX) == 0) {
    329329    c->padding_mode = PAD_VALID;
    330330  } else {
Note: See TracChangeset for help on using the changeset viewer.