root/src/runtime/linux_host_cpu_count.cpp

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. halide_host_cpu_count

#include "HalideRuntime.h"

extern "C" {

extern long sysconf(int);

WEAK int halide_host_cpu_count() {
    return sysconf(84);
}

}

/* [<][>][^][v][top][bottom][index][help] */