Error: (vlog-42) Unsupported ModelSim library format for "F:/mipi/Gowin_MIPI_DPHY_Advance_refDesign/sim/modelsim/work"
时间: 2023-12-14 10:03:31 浏览: 231
您好,对于您提到的错误信息,这可能是由于使用了不受支持的 ModelSim 库格式导致的。建议您检查使用的 ModelSim 版本和库文件的兼容性。您可以尝试升级 ModelSim 版本或者与厂商进行联系,了解是否有可用的库文件更新或修复。
同时,您还可以尝试清空工作目录并重新编译工程,以确保没有旧的库文件或缓存文件导致冲突。
如果问题仍然存在,建议提供更多详细的错误信息和环境配置,以便更好地帮助您解决问题。
相关问题
copy-feats --compress=true --write-num-frames=ark,t:exp/features/mfcc/data_mfcc_23_pitch_seg/log/utt2num_frames.1 ark:- ark,scp:/work/VPR/subtools_1229/exp/features/mfcc/data_mfcc_23_pitch_seg/raw_mfcc_pitch_seg.1.ark,/work/VPR/subtools_1229/exp/features/mfcc/data_mfcc_23_pitch_seg/raw_mfcc_pitch_seg.1.scp paste-feats --length-tolerance=2 'ark:compute-mfcc-feats --write-utt2dur=ark,t:exp/features/mfcc/data_mfcc_23_pitch_seg/log/utt2dur.1 --verbose=2 --config=subtools/conf/sre-mfcc-23.conf scp,p:exp/features/mfcc/data_mfcc_23_pitch_seg/log/wav_seg.1.scp ark:- |' 'ark,s,cs:compute-kaldi-pitch-feats --verbose=2 --config=subtools/conf/pitch.conf scp,p:exp/features/mfcc/data_mfcc_23_pitch_seg/log/wav_seg.1.scp ark:- | process-kaldi-pitch-feats ark:- ark:- |' ark:- compute-mfcc-feats --write-utt2dur=ark,t:exp/features/mfcc/data_mfcc_23_pitch_seg/log/utt2dur.1 --verbose=2 --config=subtools/conf/sre-mfcc-23.conf scp,p:exp/features/mfcc/data_mfcc_23_pitch_seg/log/wav_seg.1.scp ark:- VLOG[2] (compute-mfcc-feats[5.5]:main():compute-mfcc-feats.cc:182) Processed features for key 001_20230623160347_0319007398_mentianyu-1 compute-kaldi-pitch-feats --verbose=2 --config=subtools/conf/pitch.conf scp,p:exp/features/mfcc/data_mfcc_23_pitch_seg/log/wav_seg.1.scp ark:- ERROR (compute-kaldi-pitch-feats[5.5]:main():compute-kaldi-pitch-feats.cc:88) Sample frequency mismatch: you specified 16000 but data has 8000 (use --sample-frequency option). Utterance is 001_20230623160347_0319007398_mentianyu-1
这些命令是用于特征处理的一系列操作。首先,copy-feats命令将特征数据进行复制并保存到指定的ark和scp文件中。接下来,paste-feats命令将两个特征数据进行拼接。
其中,compute-mfcc-feats命令用于计算MFCC特征,并将结果存储在ark文件中。compute-kaldi-pitch-feats命令用于计算音高特征,并将结果存储在ark文件中。然而,在最后一条命令中,compute-kaldi-pitch-feats命令出现了错误。错误信息指示样本频率不匹配,你指定了16000Hz,但数据实际上是8000Hz。建议使用--sample-frequency选项来指定正确的样本频率。该错误发生在utterance为"001_20230623160347_0319007398_mentianyu-1"的情况下。
modelsim中Error: F:/school/FPGA Experiment/12332071_3/shuzizhong/simulation/modelsim/xhm3758_clock.vt(63): (vlog-2730) Undefined variable: 'clk'.什么意思
这个错误提示是在modelsim仿真中出现的,它告诉你在你的代码中第63行有一个未定义的变量'clk'。这可能是因为在该行之前,你没有定义'clk'或者定义有误,导致modelsim无法识别。你需要确认在代码的前面是否有对'clk'进行定义,如果没有,你需要对'clk'进行定义,如果有,你需要检查定义是否正确。
阅读全文