/hpcfile/users/test004/.jhjobs/1685606647.3652.1.shell: line 7: /hpcfile/jhinno/unischeduler/conf/jobstart/unisched: No such file or directory CondaValueError: prefix already exists: /share/software/anaconda3/envs/tensorflow 2023-06-01 16:04:52.498920: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 AVX512F FMA 2023-06-01 16:04:52.626381: I tensorflow/core/common_runtime/process_util.cc:69] Creating new thread pool with default inter op setting: 2. Tune using inter_op_parallelism_threads for best performance.
时间: 2023-08-27 11:06:30 浏览: 189
这是一个包含多个错误信息的日志,其中第一行提示找不到文件或目录,可能是指定的脚本或命令不存在。接下来的一行是CondaValueError,提示指定的环境路径已经存在,可能是之前已经创建过同名的环境。最后几行是TensorFlow的信息,提示该二进制文件没有使用CPU的某些指令,以及正在创建新的线程池。开发者需要对这些错误信息进行逐一排查,找出问题所在并进行修复。
阅读全文