typefile
{
"driving_video": "https://replicate.delivery/pbxt/LEQxLFMUNZMiKt5PWjyMJIbTdvKAb5j3f0spuiEwt9TEbo8B/d0.mp4",
"face_image": "https://replicate.delivery/pbxt/MTXW3665j6b8azyTceMqdpDEgjAimlO3H2e5GZ8CgutHHRur/Screenshot_2025-02-10-16-32-15-846_com.reddit.frontpage-edit.jpg",
"live_portrait_dsize": 1562,
"live_portrait_eye_retargeting": false,
"live_portrait_eyes_retargeting_multiplier": 1,
"live_portrait_lip_retargeting": false,
"live_portrait_lip_retargeting_multiplier": 1,
"live_portrait_lip_zero": true,
"live_portrait_relative": true,
"live_portrait_scale": 2.3,
"live_portrait_stitching": true,
"live_portrait_vx_ratio": 0,
"live_portrait_vy_ratio": -0.12,
"video_frame_load_cap": 128,
"video_select_every_n_frames": 1
}npm install replicate
REPLICATE_API_TOKEN environment variable:export REPLICATE_API_TOKEN=r8_BZQ**********************************
This is your API token. Keep it to yourself.
import Replicate from "replicate";
import fs from "node:fs";
const replicate = new Replicate({
auth: process.env.REPLICATE_API_TOKEN,
});
Run fofr/live-portrait using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run(
"fofr/live-portrait:067dd98cc3e5cb396c4a9efb4bba3eec6c4a9d271211325c477518fc6485e146",
{
input: {
driving_video: "https://replicate.delivery/pbxt/LEQxLFMUNZMiKt5PWjyMJIbTdvKAb5j3f0spuiEwt9TEbo8B/d0.mp4",
face_image: "https://replicate.delivery/pbxt/MTXW3665j6b8azyTceMqdpDEgjAimlO3H2e5GZ8CgutHHRur/Screenshot_2025-02-10-16-32-15-846_com.reddit.frontpage-edit.jpg",
live_portrait_dsize: 1562,
live_portrait_eye_retargeting: false,
live_portrait_eyes_retargeting_multiplier: 1,
live_portrait_lip_retargeting: false,
live_portrait_lip_retargeting_multiplier: 1,
live_portrait_lip_zero: true,
live_portrait_relative: true,
live_portrait_scale: 2.3,
live_portrait_stitching: true,
live_portrait_vx_ratio: 0,
live_portrait_vy_ratio: -0.12,
video_frame_load_cap: 128,
video_select_every_n_frames: 1
}
}
);
// To access the file URL:
console.log(output[0].url()); //=> "http://example.com"
// To write the file to disk:
fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
REPLICATE_API_TOKEN environment variable:export REPLICATE_API_TOKEN=r8_BZQ**********************************
This is your API token. Keep it to yourself.
import replicate
Run fofr/live-portrait using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run(
"fofr/live-portrait:067dd98cc3e5cb396c4a9efb4bba3eec6c4a9d271211325c477518fc6485e146",
input={
"driving_video": "https://replicate.delivery/pbxt/LEQxLFMUNZMiKt5PWjyMJIbTdvKAb5j3f0spuiEwt9TEbo8B/d0.mp4",
"face_image": "https://replicate.delivery/pbxt/MTXW3665j6b8azyTceMqdpDEgjAimlO3H2e5GZ8CgutHHRur/Screenshot_2025-02-10-16-32-15-846_com.reddit.frontpage-edit.jpg",
"live_portrait_dsize": 1562,
"live_portrait_eye_retargeting": False,
"live_portrait_eyes_retargeting_multiplier": 1,
"live_portrait_lip_retargeting": False,
"live_portrait_lip_retargeting_multiplier": 1,
"live_portrait_lip_zero": True,
"live_portrait_relative": True,
"live_portrait_scale": 2.3,
"live_portrait_stitching": True,
"live_portrait_vx_ratio": 0,
"live_portrait_vy_ratio": -0.12,
"video_frame_load_cap": 128,
"video_select_every_n_frames": 1
}
)
# To access the file URL:
print(output[0].url())
#=> "http://example.com"
# To write the file to disk:
with open("my-image.png", "wb") as file:
file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
REPLICATE_API_TOKEN environment variable:export REPLICATE_API_TOKEN=r8_BZQ**********************************
This is your API token. Keep it to yourself.
Run fofr/live-portrait using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \
-H "Authorization: Bearer $REPLICATE_API_TOKEN" \
-H "Content-Type: application/json" \
-H "Prefer: wait" \
-d $'{
"version": "fofr/live-portrait:067dd98cc3e5cb396c4a9efb4bba3eec6c4a9d271211325c477518fc6485e146",
"input": {
"driving_video": "https://replicate.delivery/pbxt/LEQxLFMUNZMiKt5PWjyMJIbTdvKAb5j3f0spuiEwt9TEbo8B/d0.mp4",
"face_image": "https://replicate.delivery/pbxt/MTXW3665j6b8azyTceMqdpDEgjAimlO3H2e5GZ8CgutHHRur/Screenshot_2025-02-10-16-32-15-846_com.reddit.frontpage-edit.jpg",
"live_portrait_dsize": 1562,
"live_portrait_eye_retargeting": false,
"live_portrait_eyes_retargeting_multiplier": 1,
"live_portrait_lip_retargeting": false,
"live_portrait_lip_retargeting_multiplier": 1,
"live_portrait_lip_zero": true,
"live_portrait_relative": true,
"live_portrait_scale": 2.3,
"live_portrait_stitching": true,
"live_portrait_vx_ratio": 0,
"live_portrait_vy_ratio": -0.12,
"video_frame_load_cap": 128,
"video_select_every_n_frames": 1
}
}' \
https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
{
"id": "wawrq58dksrma0cmy22r71mnx4",
"model": "fofr/live-portrait",
"version": "067dd98cc3e5cb396c4a9efb4bba3eec6c4a9d271211325c477518fc6485e146",
"input": {
"driving_video": "https://replicate.delivery/pbxt/LEQxLFMUNZMiKt5PWjyMJIbTdvKAb5j3f0spuiEwt9TEbo8B/d0.mp4",
"face_image": "https://replicate.delivery/pbxt/MTXW3665j6b8azyTceMqdpDEgjAimlO3H2e5GZ8CgutHHRur/Screenshot_2025-02-10-16-32-15-846_com.reddit.frontpage-edit.jpg",
"live_portrait_dsize": 1562,
"live_portrait_eye_retargeting": false,
"live_portrait_eyes_retargeting_multiplier": 1,
"live_portrait_lip_retargeting": false,
"live_portrait_lip_retargeting_multiplier": 1,
"live_portrait_lip_zero": true,
"live_portrait_relative": true,
"live_portrait_scale": 2.3,
"live_portrait_stitching": true,
"live_portrait_vx_ratio": 0,
"live_portrait_vy_ratio": -0.12,
"video_frame_load_cap": 128,
"video_select_every_n_frames": 1
},
"logs": "Running workflow\ngot prompt\nExecuting node 1, title: (Down)Load LivePortraitModels, class type: DownloadAndLoadLivePortraitModels\nLoad appearance_feature_extractor done.\nLoad motion_extractor done.\nLoad warping_module done.\nLoad spade_generator done.\nLoad stitching_retargeting_module done.\nExecuting node 4, title: Load Image, class type: LoadImage\nExecuting node 8, title: Load Video (Upload) 🎥🅥🅗🅢, class type: VHS_LoadVideo\nExecuting node 30, title: LivePortraitProcess, class type: LivePortraitProcess\n\u001b[1;31m2025-02-10 15:40:53.077839978 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 399, index: 3, mask: {4, 68, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.077844823 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 397, index: 1, mask: {2, 66, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.077837819 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 398, index: 2, mask: {3, 67, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.077879187 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 400, index: 4, mask: {5, 69, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.077839810 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 396, index: 0, mask: {1, 65, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.077983875 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 404, index: 8, mask: {9, 73, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.078002139 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 405, index: 9, mask: {10, 74, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.078620403 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 414, index: 18, mask: {19, 83, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.078806881 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 415, index: 19, mask: {20, 84, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.083189442 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 440, index: 44, mask: {45, 109, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.086957188 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 445, index: 49, mask: {50, 114, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.087061379 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 438, index: 42, mask: {43, 107, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.083106211 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 455, index: 59, mask: {60, 124, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.090880352 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 420, index: 24, mask: {25, 89, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.090896720 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 423, index: 27, mask: {28, 92, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.094874232 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 416, index: 20, mask: {21, 85, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.083124553 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 433, index: 37, mask: {38, 102, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.082992830 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 427, index: 31, mask: {32, 96, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.098869307 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 442, index: 46, mask: {47, 111, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.083145934 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 437, index: 41, mask: {42, 106, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.086968657 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 456, index: 60, mask: {61, 125, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.099876556 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 408, index: 12, mask: {13, 77, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.101719246 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 409, index: 13, mask: {14, 78, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.102892931 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 418, index: 22, mask: {23, 87, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.086997394 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 457, index: 61, mask: {62, 126, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.107029536 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 443, index: 47, mask: {48, 112, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.110895177 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 411, index: 15, mask: {16, 80, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.112404302 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 449, index: 53, mask: {54, 118, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.112409550 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 425, index: 29, mask: {30, 94, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.087037657 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 434, index: 38, mask: {39, 103, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.112435641 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 422, index: 26, mask: {27, 91, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.112437946 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 431, index: 35, mask: {36, 100, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.112445047 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 436, index: 40, mask: {41, 105, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.112457836 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 435, index: 39, mask: {40, 104, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.083087434 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 432, index: 36, mask: {37, 101, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.118861996 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 426, index: 30, mask: {31, 95, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.118862746 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 450, index: 54, mask: {55, 119, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.118864696 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 441, index: 45, mask: {46, 110, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.118867020 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 447, index: 51, mask: {52, 116, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.118878552 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 451, index: 55, mask: {56, 120, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.119323326 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 444, index: 48, mask: {49, 113, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.122860254 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 452, index: 56, mask: {57, 121, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.122862154 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 446, index: 50, mask: {51, 115, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.122874614 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 453, index: 57, mask: {58, 122, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.087089974 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 419, index: 23, mask: {24, 88, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.083169114 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 439, index: 43, mask: {44, 108, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.126862776 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 454, index: 58, mask: {59, 123, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.126871536 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 458, index: 62, mask: {63, 127, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.106908272 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 406, index: 10, mask: {11, 75, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.112417219 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 430, index: 34, mask: {35, 99, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.106963265 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 424, index: 28, mask: {29, 93, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.087019737 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 421, index: 25, mask: {26, 90, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.158867149 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 429, index: 33, mask: {34, 98, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.158880690 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 428, index: 32, mask: {33, 97, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.158895657 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 448, index: 52, mask: {53, 117, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.162919151 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 410, index: 14, mask: {15, 79, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.162923807 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 407, index: 11, mask: {12, 76, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.158931749 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 417, index: 21, mask: {22, 86, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.194700625 [E:onnxruntime:Default, provider_bridge_ort.cc:1745 TryGetProviderInfo_CUDA] /onnxruntime_src/onnxruntime/core/session/provider_bridge_ort.cc:1426 onnxruntime::Provider& onnxruntime::ProviderLibrary::Get() [ONNXRuntimeError] : 1 : FAIL : Failed to load library libonnxruntime_providers_cuda.so with error: libcudnn.so.9: cannot open shared object file: No such file or directory\n\u001b[m\n\u001b[0;93m2025-02-10 15:40:53.195028191 [W:onnxruntime:Default, onnxruntime_pybind_state.cc:895 CreateExecutionProviderInstance] Failed to create CUDAExecutionProvider. Please reference https://onnxruntime.ai/docs/execution-providers/CUDA-ExecutionProvider.html#requirementsto ensure all dependencies are met.\u001b[m\n[15:40:53] LandmarkRunner warmup time: 0.429s landmark_runner.py:89\n\u001b[1;31m2025-02-10 15:40:53.762807620 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 479, index: 20, mask: {21, 85, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.762934036 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 481, index: 22, mask: {23, 87, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.762965657 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 493, index: 34, mask: {35, 99, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.764328534 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 480, index: 21, mask: {22, 86, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.766867496 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 483, index: 24, mask: {25, 89, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.766882726 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 486, index: 27, mask: {28, 92, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.766884912 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 485, index: 26, mask: {27, 91, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.766915042 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 487, index: 28, mask: {29, 93, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.766868303 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 482, index: 23, mask: {24, 88, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.772664905 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 462, index: 3, mask: {4, 68, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.766872522 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 478, index: 19, mask: {20, 84, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770866471 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 489, index: 30, mask: {31, 95, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770867371 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 488, index: 29, mask: {30, 94, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770870449 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 473, index: 14, mask: {15, 79, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770870591 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 484, index: 25, mask: {26, 90, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770880448 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 491, index: 32, mask: {33, 97, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.785142886 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 470, index: 11, mask: {12, 76, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.786877868 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 497, index: 38, mask: {39, 103, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770885332 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 512, index: 53, mask: {54, 118, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.790865236 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 498, index: 39, mask: {40, 104, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770885197 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 502, index: 43, mask: {44, 108, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.794869944 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 520, index: 61, mask: {62, 126, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770891379 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 471, index: 12, mask: {13, 77, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.798866133 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 521, index: 62, mask: {63, 127, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770893786 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 490, index: 31, mask: {32, 96, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.806888811 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 461, index: 2, mask: {3, 67, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770897744 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 492, index: 33, mask: {34, 98, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770900351 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 503, index: 44, mask: {45, 109, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770901617 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 513, index: 54, mask: {55, 119, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770907728 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 501, index: 42, mask: {43, 107, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770915114 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 504, index: 45, mask: {46, 110, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770915872 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 514, index: 55, mask: {56, 120, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770929018 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 515, index: 56, mask: {57, 121, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770943422 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 516, index: 57, mask: {58, 122, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770957328 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 517, index: 58, mask: {59, 123, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770961261 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 467, index: 8, mask: {9, 73, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.838878106 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 459, index: 0, mask: {1, 65, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770971079 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 518, index: 59, mask: {60, 124, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770980881 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 468, index: 9, mask: {10, 74, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770984296 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 519, index: 60, mask: {61, 125, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.770999273 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 463, index: 4, mask: {5, 69, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.771000232 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 477, index: 18, mask: {19, 83, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.771014596 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 469, index: 10, mask: {11, 75, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.771017427 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 460, index: 1, mask: {2, 66, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.774864800 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 505, index: 46, mask: {47, 111, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.774878144 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 511, index: 52, mask: {53, 117, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.778869013 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 494, index: 35, mask: {36, 100, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.778875301 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 499, index: 40, mask: {41, 105, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.778888005 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 474, index: 15, mask: {16, 80, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.778889464 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 495, index: 36, mask: {37, 101, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.778897339 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 500, index: 41, mask: {42, 106, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.778902992 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 472, index: 13, mask: {14, 78, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.778908482 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 496, index: 37, mask: {38, 102, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.778925705 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 506, index: 47, mask: {48, 112, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.778940214 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 507, index: 48, mask: {49, 113, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.778954203 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 508, index: 49, mask: {50, 114, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.778967597 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 509, index: 50, mask: {51, 115, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:53.778980679 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 510, index: 51, mask: {52, 116, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.011630685 [E:onnxruntime:Default, provider_bridge_ort.cc:1745 TryGetProviderInfo_CUDA] /onnxruntime_src/onnxruntime/core/session/provider_bridge_ort.cc:1426 onnxruntime::Provider& onnxruntime::ProviderLibrary::Get() [ONNXRuntimeError] : 1 : FAIL : Failed to load library libonnxruntime_providers_cuda.so with error: libcudnn.so.9: cannot open shared object file: No such file or directory\n\u001b[m\nApplied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}}\nfind model: /src/ComfyUI/models/insightface/models/buffalo_l/1k3d68.onnx landmark_3d_68 ['None', 3, 192, 192] 0.0 1.0\n\u001b[1;31m2025-02-10 15:40:54.379407041 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 528, index: 0, mask: {1, 65, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.379422399 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 529, index: 1, mask: {2, 66, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.379454810 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 530, index: 2, mask: {3, 67, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.379469412 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 531, index: 3, mask: {4, 68, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.379516011 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 532, index: 4, mask: {5, 69, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.379581172 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 536, index: 8, mask: {9, 73, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.379603358 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 537, index: 9, mask: {10, 74, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.380449448 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 542, index: 14, mask: {15, 79, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.384399575 [E:onnxruntime:Default, provider_bridge_ort.cc:1745 TryGetProviderInfo_CUDA] /onnxruntime_src/onnxruntime/core/session/provider_bridge_ort.cc:1426 onnxruntime::Provider& onnxruntime::ProviderLibrary::Get() [ONNXRuntimeError] : 1 : FAIL : Failed to load library libonnxruntime_providers_cuda.so with error: libcudnn.so.9: cannot open shared object file: No such file or directory\n\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.380591701 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 554, index: 26, mask: {27, 91, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\nApplied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}}\n\u001b[1;31m2025-02-10 15:40:54.394874244 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 538, index: 10, mask: {11, 75, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.394881600 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 540, index: 12, mask: {13, 77, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.394891466 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 539, index: 11, mask: {12, 76, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.394897155 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 550, index: 22, mask: {23, 87, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.394916823 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 551, index: 23, mask: {24, 88, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.394916749 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 541, index: 13, mask: {14, 78, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\nfind model: /src/ComfyUI/models/insightface/models/buffalo_l/2d106det.onnx landmark_2d_106 ['None', 3, 192, 192] 0.0 1.0\n\u001b[1;31m2025-02-10 15:40:54.398888143 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 543, index: 15, mask: {16, 80, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.398897522 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 555, index: 27, mask: {28, 92, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.402867954 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 605, index: 14, mask: {15, 79, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.402866857 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 547, index: 19, mask: {20, 84, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.398909528 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 552, index: 24, mask: {25, 89, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.402891049 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 562, index: 34, mask: {35, 99, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.402894664 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 601, index: 10, mask: {11, 75, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.402914985 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 602, index: 11, mask: {12, 76, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.403248501 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 546, index: 18, mask: {19, 83, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.398902494 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 548, index: 20, mask: {21, 85, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.398925588 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 553, index: 25, mask: {26, 90, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.398923286 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 570, index: 42, mask: {43, 107, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.406882841 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 603, index: 12, mask: {13, 77, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.406898211 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 606, index: 15, mask: {16, 80, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.406913795 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 549, index: 21, mask: {22, 86, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.407199320 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 563, index: 35, mask: {36, 100, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.398915839 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 559, index: 31, mask: {32, 96, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.398931116 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 558, index: 30, mask: {31, 95, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.398934626 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 561, index: 33, mask: {34, 98, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.410876160 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 573, index: 45, mask: {46, 110, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.410896858 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 574, index: 46, mask: {47, 111, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.410899256 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 611, index: 20, mask: {21, 85, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.410901880 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 604, index: 13, mask: {14, 78, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.410929844 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 556, index: 28, mask: {29, 93, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.410943006 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 610, index: 19, mask: {20, 84, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.411337177 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 564, index: 36, mask: {37, 101, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.398939464 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 575, index: 47, mask: {48, 112, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.414865070 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 617, index: 26, mask: {27, 91, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.414866716 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 576, index: 48, mask: {49, 113, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.414870139 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 560, index: 32, mask: {33, 97, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.414881631 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 600, index: 9, mask: {10, 74, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.414883646 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 612, index: 21, mask: {22, 86, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.415182189 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 565, index: 37, mask: {38, 102, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.398969351 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 581, index: 53, mask: {54, 118, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.418872736 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 618, index: 27, mask: {28, 92, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.418880805 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 624, index: 33, mask: {34, 98, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.418891921 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 566, index: 38, mask: {39, 103, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.418912529 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 599, index: 8, mask: {9, 73, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.419162410 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 569, index: 41, mask: {42, 106, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.398982583 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 582, index: 54, mask: {55, 119, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.422870991 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 619, index: 28, mask: {29, 93, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.422881682 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 577, index: 49, mask: {50, 114, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.422886545 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 627, index: 36, mask: {37, 101, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.422898572 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 623, index: 32, mask: {33, 97, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.422914397 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 567, index: 39, mask: {40, 104, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.422918775 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 613, index: 22, mask: {23, 87, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.422925552 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 625, index: 34, mask: {35, 99, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.422933034 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 637, index: 46, mask: {47, 111, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.422940227 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 626, index: 35, mask: {36, 100, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.398995045 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 583, index: 55, mask: {56, 120, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.426865986 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 614, index: 23, mask: {24, 88, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.426874937 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 629, index: 38, mask: {39, 103, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.426885814 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 644, index: 53, mask: {54, 118, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.426895076 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 628, index: 37, mask: {38, 102, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.426905921 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 578, index: 50, mask: {51, 115, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.426907639 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 568, index: 40, mask: {41, 105, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.426913659 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 630, index: 39, mask: {40, 104, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.426922650 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 639, index: 48, mask: {49, 113, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.402868965 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 622, index: 31, mask: {32, 96, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.399034496 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 587, index: 59, mask: {60, 124, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.410856859 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 633, index: 42, mask: {43, 107, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.430866333 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 579, index: 51, mask: {52, 116, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.430866925 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 635, index: 44, mask: {45, 109, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.398944079 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 571, index: 43, mask: {44, 108, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.430875607 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 621, index: 30, mask: {31, 95, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.430880777 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 634, index: 43, mask: {44, 108, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.398958650 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 572, index: 44, mask: {45, 109, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.430887237 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 640, index: 49, mask: {50, 114, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.430914061 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 648, index: 57, mask: {58, 122, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.398955516 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 580, index: 52, mask: {53, 117, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.434874628 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 641, index: 50, mask: {51, 115, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.434881970 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 651, index: 60, mask: {61, 125, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.434887064 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 638, index: 47, mask: {48, 112, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.434897622 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 585, index: 57, mask: {58, 122, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.434901981 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 645, index: 54, mask: {55, 119, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.398916640 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 557, index: 29, mask: {30, 94, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.438877027 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 588, index: 60, mask: {61, 125, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.438886030 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 652, index: 61, mask: {62, 126, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.438892699 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 642, index: 51, mask: {52, 116, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.438903568 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 646, index: 55, mask: {56, 120, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.438925429 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 649, index: 58, mask: {59, 123, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.414866964 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 616, index: 25, mask: {26, 90, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.446306035 [E:onnxruntime:Default, provider_bridge_ort.cc:1745 TryGetProviderInfo_CUDA] /onnxruntime_src/onnxruntime/core/session/provider_bridge_ort.cc:1426 onnxruntime::Provider& onnxruntime::ProviderLibrary::Get() [ONNXRuntimeError] : 1 : FAIL : Failed to load library libonnxruntime_providers_cuda.so with error: libcudnn.so.9: cannot open shared object file: No such file or directory\n\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.399007899 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 584, index: 56, mask: {57, 121, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.399021358 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 586, index: 58, mask: {59, 123, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.454869844 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 594, index: 3, mask: {4, 68, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.430869345 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 631, index: 40, mask: {41, 105, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.430884138 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 636, index: 45, mask: {46, 110, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.398971973 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 620, index: 29, mask: {30, 94, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.414865399 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 615, index: 24, mask: {25, 89, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.414867572 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 609, index: 18, mask: {19, 83, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.442871815 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 647, index: 56, mask: {57, 121, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.442872606 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 643, index: 52, mask: {53, 117, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.442872798 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 653, index: 62, mask: {63, 127, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.442874878 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 589, index: 61, mask: {62, 126, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.426865300 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 632, index: 41, mask: {42, 106, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.442876608 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 650, index: 59, mask: {60, 124, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.442887589 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 590, index: 62, mask: {63, 127, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.446893385 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 595, index: 4, mask: {5, 69, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.446914283 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 593, index: 2, mask: {3, 67, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.482876012 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 592, index: 1, mask: {2, 66, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.534878501 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 591, index: 0, mask: {1, 65, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\nApplied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}}\nfind model: /src/ComfyUI/models/insightface/models/buffalo_l/det_10g.onnx detection [1, 3, '?', '?'] 127.5 128.0\n\u001b[1;31m2025-02-10 15:40:54.675320740 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 654, index: 0, mask: {1, 65, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.675343303 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 655, index: 1, mask: {2, 66, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.675361432 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 656, index: 2, mask: {3, 67, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.675381547 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 657, index: 3, mask: {4, 68, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.675414568 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 658, index: 4, mask: {5, 69, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.675625332 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 667, index: 13, mask: {14, 78, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.677440734 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 662, index: 8, mask: {9, 73, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.678566867 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 682, index: 28, mask: {29, 93, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.678589489 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 683, index: 29, mask: {30, 94, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.678604980 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 690, index: 36, mask: {37, 101, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.678621576 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 695, index: 41, mask: {42, 106, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.678638255 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 702, index: 48, mask: {49, 113, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.678653502 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 704, index: 50, mask: {51, 115, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.678668410 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 705, index: 51, mask: {52, 116, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.678680959 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 677, index: 23, mask: {24, 88, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.678695382 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 678, index: 24, mask: {25, 89, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.678850363 [E:onnxruntime:Default, provider_bridge_ort.cc:1745 TryGetProviderInfo_CUDA] /onnxruntime_src/onnxruntime/core/session/provider_bridge_ort.cc:1426 onnxruntime::Provider& onnxruntime::ProviderLibrary::Get() [ONNXRuntimeError] : 1 : FAIL : Failed to load library libonnxruntime_providers_cuda.so with error: libcudnn.so.9: cannot open shared object file: No such file or directory\n\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.682867953 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 691, index: 37, mask: {38, 102, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.682870340 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 685, index: 31, mask: {32, 96, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.682882218 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 687, index: 33, mask: {34, 98, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.682883479 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 701, index: 47, mask: {48, 112, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.682894673 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 688, index: 34, mask: {35, 99, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.682898238 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 689, index: 35, mask: {36, 100, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.685863592 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 707, index: 53, mask: {54, 118, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.682869780 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 686, index: 32, mask: {33, 97, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.686865429 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 692, index: 38, mask: {39, 103, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.686867768 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 693, index: 39, mask: {40, 104, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.690865801 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 696, index: 42, mask: {43, 107, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.690869127 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 698, index: 44, mask: {45, 109, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.682868345 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 700, index: 46, mask: {47, 111, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.690882239 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 703, index: 49, mask: {50, 114, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.690881662 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 710, index: 56, mask: {57, 121, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.690867285 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 694, index: 40, mask: {41, 105, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.690890155 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 699, index: 45, mask: {46, 110, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.682881091 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 684, index: 30, mask: {31, 95, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.694870936 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 711, index: 57, mask: {58, 122, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.694873008 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 681, index: 27, mask: {28, 92, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.690866745 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 697, index: 43, mask: {44, 108, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.698867470 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 709, index: 55, mask: {56, 120, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.698871788 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 706, index: 52, mask: {53, 117, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.698881054 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 674, index: 20, mask: {21, 85, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.698888681 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 712, index: 58, mask: {59, 123, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.698868148 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 673, index: 19, mask: {20, 84, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.702864072 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 713, index: 59, mask: {60, 124, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.702865539 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 708, index: 54, mask: {55, 119, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.706868369 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 715, index: 61, mask: {62, 126, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.708206589 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 680, index: 26, mask: {27, 91, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.710863578 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 714, index: 60, mask: {61, 125, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.710902986 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 716, index: 62, mask: {63, 127, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.714863869 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 679, index: 25, mask: {26, 90, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.718861806 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 676, index: 22, mask: {23, 87, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\nApplied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}}\nfind model: /src/ComfyUI/models/insightface/models/buffalo_l/genderage.onnx genderage ['None', 3, 96, 96] 0.0 1.0\n\u001b[1;31m2025-02-10 15:40:54.722388334 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 732, index: 15, mask: {16, 80, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.718865168 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 675, index: 21, mask: {22, 86, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.722867642 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 672, index: 18, mask: {19, 83, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.726873706 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 717, index: 0, mask: {1, 65, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.726876135 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 744, index: 27, mask: {28, 92, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.734412363 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 720, index: 3, mask: {4, 68, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.734866899 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 718, index: 1, mask: {2, 66, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.734872367 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 725, index: 8, mask: {9, 73, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.726890187 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 747, index: 30, mask: {31, 95, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.738864781 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 721, index: 4, mask: {5, 69, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.738867761 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 719, index: 2, mask: {3, 67, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.738869553 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 727, index: 10, mask: {11, 75, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.742868345 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 729, index: 12, mask: {13, 77, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.742879570 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 737, index: 20, mask: {21, 85, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.742893753 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 730, index: 13, mask: {14, 78, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.726905006 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 748, index: 31, mask: {32, 96, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.726926649 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 750, index: 33, mask: {34, 98, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.746869936 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 731, index: 14, mask: {15, 79, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.730870560 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 663, index: 9, mask: {10, 74, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.746886626 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 743, index: 26, mask: {27, 91, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.750863520 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 740, index: 23, mask: {24, 88, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.750888376 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 738, index: 21, mask: {22, 86, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.730891977 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 665, index: 11, mask: {12, 76, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.754864143 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 752, index: 35, mask: {36, 100, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.754867678 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 728, index: 11, mask: {12, 76, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.754867355 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 742, index: 25, mask: {26, 90, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.754881031 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 664, index: 10, mask: {11, 75, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.730903891 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 668, index: 14, mask: {15, 79, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.758863823 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 666, index: 12, mask: {13, 77, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.758873596 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 746, index: 29, mask: {30, 94, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.726914276 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 749, index: 32, mask: {33, 97, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.746874461 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 736, index: 19, mask: {20, 84, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.762879580 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 739, index: 22, mask: {23, 87, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.750866513 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 753, index: 36, mask: {37, 101, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.726934624 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 751, index: 34, mask: {35, 99, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.742879841 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 726, index: 9, mask: {10, 74, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.766863948 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 745, index: 28, mask: {29, 93, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.766868365 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 735, index: 18, mask: {19, 83, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.766884477 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 741, index: 24, mask: {25, 89, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.774863215 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 758, index: 41, mask: {42, 106, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.774875234 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 766, index: 49, mask: {50, 114, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.798105747 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 754, index: 37, mask: {38, 102, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.782863627 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 769, index: 52, mask: {53, 117, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.782870535 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 756, index: 39, mask: {40, 104, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.798923906 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 779, index: 62, mask: {63, 127, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.802865716 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 755, index: 38, mask: {39, 103, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.802866106 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 757, index: 40, mask: {41, 105, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.802871821 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 772, index: 55, mask: {56, 120, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.782884421 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 759, index: 42, mask: {43, 107, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.805128310 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 761, index: 44, mask: {45, 109, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.806867731 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 773, index: 56, mask: {57, 121, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.806869636 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 762, index: 45, mask: {46, 110, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.782894257 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 768, index: 51, mask: {52, 116, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.798866669 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 760, index: 43, mask: {44, 108, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.810867034 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 764, index: 47, mask: {48, 112, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.810869828 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 765, index: 48, mask: {49, 113, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.811028905 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 669, index: 15, mask: {16, 80, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.798879060 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 763, index: 46, mask: {47, 111, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.798890438 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 767, index: 50, mask: {51, 115, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.798903252 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 770, index: 53, mask: {54, 118, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.798913338 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 771, index: 54, mask: {55, 119, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.814864778 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 775, index: 58, mask: {59, 123, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.814865491 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 776, index: 59, mask: {60, 124, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.814865611 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 774, index: 57, mask: {58, 122, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.814876874 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 777, index: 60, mask: {61, 125, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:54.814877210 [E:onnxruntime:Default, env.cc:228 ThreadMain] pthread_setaffinity_np failed for thread: 778, index: 61, mask: {62, 126, }, error code: 22 error msg: Invalid argument. Specify the number of threads explicitly so the affinity is not set.\u001b[m\n\u001b[1;31m2025-02-10 15:40:55.018325985 [E:onnxruntime:Default, provider_bridge_ort.cc:1745 TryGetProviderInfo_CUDA] /onnxruntime_src/onnxruntime/core/session/provider_bridge_ort.cc:1426 onnxruntime::Provider& onnxruntime::ProviderLibrary::Get() [ONNXRuntimeError] : 1 : FAIL : Failed to load library libonnxruntime_providers_cuda.so with error: libcudnn.so.9: cannot open shared object file: No such file or directory\n\u001b[m\nApplied providers: ['CPUExecutionProvider'], with options: {'CPUExecutionProvider': {}}\nfind model: /src/ComfyUI/models/insightface/models/buffalo_l/w600k_r50.onnx recognition ['None', 3, 112, 112] 127.5 127.5\nset det-size: (512, 512)\n[15:40:56] FaceAnalysisDIY warmup time: 0.737s face_analysis_diy.py:79\n/root/.pyenv/versions/3.10.6/lib/python3.10/site-packages/insightface/utils/transform.py:68: FutureWarning: `rcond` parameter will change to the default of machine precision times ``max(M, N)`` where M and N are the input matrix dimensions.\nTo use the future default and silence this warning we advise to pass `rcond=None`, to keep using the old, explicitly pass `rcond=-1`.\nP = np.linalg.lstsq(X_homo, Y)[0].T # Affine matrix. 3 x 4\nAnimating... ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100% 0:00:03\nExecuting node 23, title: Video Combine 🎥🅥🅗🅢, class type: VHS_VideoCombine\n[VideoHelperSuite] - \u001b[0;33mWARNING\u001b[0m - Output images were not of valid resolution and have had padding applied\nPrompt executed in 16.08 seconds\noutputs: {'23': {'gifs': [{'filename': 'R8_LivePortrait_00001.mp4', 'subfolder': '', 'type': 'output', 'format': 'video/h264-mp4', 'frame_rate': 24.0}]}}\n====================================\nR8_LivePortrait_00001.png\nR8_LivePortrait_00001.mp4",
"output": [
"https://replicate.delivery/xezq/RqWAos3IxLK8Klp9VLrkbDj1QJTufuxrBftCDAxI7wCSA9NUA/R8_LivePortrait_00001.mp4"
],
"data_removed": false,
"error": null,
"source": "web",
"status": "succeeded",
"created_at": "2025-02-10T15:40:39.198Z",
"started_at": "2025-02-10T15:40:49.504973Z",
"completed_at": "2025-02-10T15:41:06.743837Z",
"urls": {
"cancel": "https://api.replicate.com/v1/predictions/wawrq58dksrma0cmy22r71mnx4/cancel",
"get": "https://api.replicate.com/v1/predictions/wawrq58dksrma0cmy22r71mnx4",
"stream": "https://stream.replicate.com/v1/files/bcwr-en5vi665ptrj7fpneeeewji5rz3wigtmrwtffknabw2dbngfqoqq",
"web": "https://replicate.com/p/wawrq58dksrma0cmy22r71mnx4"
},
"metrics": {
"predict_time": 17.238864714,
"total_time": 27.545837
}
}