lyblsgo
2023-04-19 2304327a3fde3aeca144fcc32bcd9e1905ade46a
funasr/runtime/onnxruntime/tester/tester.cpp
@@ -14,7 +14,6 @@
int main(int argc, char *argv[])
{
    if (argc < 4)
    {
        printf("Usage: %s /path/to/model_dir /path/to/wav/file quantize(true or false) \n", argv[0]);
@@ -22,7 +21,7 @@
    }
    struct timeval start, end;
    gettimeofday(&start, NULL);
    int nThreadNum = 4;
    int nThreadNum = 1;
    // is quantize
    bool quantize = false;
    istringstream(argv[3]) >> boolalpha >> quantize;