# 输出信息如下 This is PairEnd Data Fraction of reads failed to determine: 0.0160 Fraction of reads explained by "1++,1--,2+-,2-+": 0.0178 Fraction of reads explained by "1+-,1-+,2++,2--": 0.9663
This is PairEnd Data Fraction of reads failed to determine: 0.0172 Fraction of reads explained by "1++,1--,2+-,2-+": 0.4903 Fraction of reads explained by "1+-,1-+,2++,2--": 0.4925
nvidia-smi # 我的输出如下 Wed Jun 21 23:26:37 2023 +-----------------------------------------------------------------------------+ | NVIDIA-SMI 525.85.05 Driver Version: 528.24 CUDA Version: 12.0 | |-------------------------------+----------------------+----------------------+ | GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC | | Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. | | | | MIG M. | |===============================+======================+======================| | 0 NVIDIA GeForce ... On | 00000000:01:00.0 On | Off | | 0% 32C P8 13W / 450W | 2884MiB / 24564MiB | 1% Default | | | | N/A | +-------------------------------+----------------------+----------------------+
+-----------------------------------------------------------------------------+ | Processes: | | GPU GI CI PID Type Process name GPU Memory | | ID ID Usage | |=============================================================================| | 0 N/A N/A 32 G /Xwayland N/A | +-----------------------------------------------------------------------------+
if (isMatch) { console.log("Password matches!"); } else { console.log("Password does not match!"); } }
// Get the user input and hashed password from command line arguments const userInput = process.argv[2]; const hashedPassword = process.argv[3]; comparePasswords(userInput, hashedPassword);
我运行之后,发现两个不match啊,GPT你是不是骗我
1 2
$ node comparePasswords.js 123456 $2b$12$RJhc7WSsbRhkg2QxZuDG6.qgPXhFlrbvfOtw0SWDHkElgt1thSPD2 Password does not match