mirror of
https://github.com/csukuangfj/kaldifeat.git
synced 2025-08-19 14:56:17 +00:00
19 lines
453 B
C++
19 lines
453 B
C++
// kaldifeat/csrc/feature-functions.h
|
|
//
|
|
// Copyright (c) 2021 Xiaomi Corporation (authors: Fangjun Kuang)
|
|
|
|
// This file is copied/modified from kaldi/src/feat/feature-functions.h
|
|
|
|
#ifndef KALDIFEAT_CSRC_FEATURE_FUNCTIONS_H_
|
|
#define KALDIFEAT_CSRC_FEATURE_FUNCTIONS_H_
|
|
|
|
#include "torch/script.h"
|
|
|
|
namespace kaldifeat {
|
|
|
|
void InitIdftBases(int32_t n_bases, int32_t dimension, torch::Tensor *mat_out);
|
|
|
|
}
|
|
|
|
#endif // KALDIFEAT_CSRC_FEATURE_FUNCTIONS_H_
|