⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makeconfig.sh

📁 FFTW, a collection of fast C routines to compute the Discrete Fourier Transform in one or more dime
💻 SH
字号:
#! /bin/sh# This shell script generates the file config.c containing a table# of the codelets. ./configcat $COPYRIGHTechocat config_preludeecho# declare the external variablesfor i in $NOTWdo    echo "extern fftw_codelet_desc fftw_no_twiddle_${i}_desc;"    echo "extern fftw_codelet_desc fftwi_no_twiddle_${i}_desc;"donefor i in $TWIDDLEdo    echo "extern fftw_codelet_desc fftw_twiddle_${i}_desc;"    echo "extern fftw_codelet_desc fftwi_twiddle_${i}_desc;"doneechoechoecho "fftw_codelet_desc *fftw_config[] = {"for i in $NOTWdo    echo "NOTW_CODELET(${i}),"    echo "NOTWI_CODELET(${i}),"donefor i in $TWIDDLEdo    echo "TWIDDLE_CODELET(${i}),"    echo "TWIDDLEI_CODELET(${i}),"doneecho "(fftw_codelet_desc *) 0 "echo "};"

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -