mirror of
https://github.com/csukuangfj/kaldifeat.git
synced 2025-08-17 13:12:16 +00:00
13 lines
324 B
C++
13 lines
324 B
C++
// kaldifeat/python/csrc/kaldifeat.h
|
|
//
|
|
// Copyright (c) 2021 Xiaomi Corporation (authors: Fangjun Kuang)
|
|
|
|
#ifndef KALDIFEAT_PYTHON_CSRC_KALDIFEAT_H_
|
|
#define KALDIFEAT_PYTHON_CSRC_KALDIFEAT_H_
|
|
|
|
#include "pybind11/pybind11.h"
|
|
#include "torch/torch.h"
|
|
namespace py = pybind11;
|
|
|
|
#endif // KALDIFEAT_PYTHON_CSRC_KALDIFEAT_H_
|