Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CUDA accelerated MFCC computation. #3348

Merged
merged 2 commits into from
Jun 3, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Only build cuda binaries if cuda is enabled
  • Loading branch information
luitjens committed May 28, 2019
commit 6a7d5cb5ca96f8db0903e605a7484a37204af47b
6 changes: 5 additions & 1 deletion src/cudafeatbin/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ include ../kaldi.mk
LDFLAGS += $(CUDA_LDFLAGS)
LDLIBS += $(CUDA_LDLIBS)

BINFILES = compute-mfcc-feats-cuda
BINFILES =

ifeq ($(CUDA), true)
BINFILES += compute-mfcc-feats-cuda
endif

OBJFILES =

Expand Down