Welcome! In this repository you'll find a set of custom nodes for ComfyUI that allows you to use Core ML models in your ComfyUI workflows. These models are designed to leverage the Apple Neural Engine (ANE) on Apple Silicon (M1/M2) machines, thereby enhancing your workflows and improving performance.
If you're not sure how to obtain these models, you can download them here or convert your own models using coremltools.
In simple terms, think of Core ML models as a tool that can help your ComfyUI work faster and more efficiently. For instance, during my tests on an M2 Pro 32GB machine, the use of Core ML models sped up the generation of 512x512 images by a factor of approximately 1.5 to 2 times.
To start using custom nodes in your ComfyUI, follow these simple steps:
That's it! You're now ready to start enhancing your ComfyUI workflows with Core ML models.
[!NOTE] Note on Compute Units: For the model to run on the ANE, the model must be converted with the
--attention-implementation SPLIT_EINSUM
option. Models converted with--attention-implementation ORIGINAL
will run on GPU instead of ANE.
These custom nodes come with a host of features, including:
mlmodelc
and mlpackage
files[!NOTE] Please note that using Core ML models can take a bit longer to load initially. For the best experience, I recommend using the compiled models (.mlmodelc files) instead of the .mlpackage files.
[!NOTE]
This repository will continue to be updated with more nodes and features over time.
The easiest way to install the custom nodes is to use the ComfyUI-Manager. You can find the installation instructions here. Once you've installed the ComfyUI-Manager, you can install the custom nodes by following these steps:
Manager
button in the ComfyUI toolbar.Install Custom Nodes
button.Core ML
and click the Install
button.cd /path/to/comfyui/custom_nodes
git clone https://github.com/aszc-dev/ComfyUI-CoreMLSuite.git
Next, install the required dependencies using pip or another package manager:
cd /path/to/comfyui/custom_nodes/ComfyUI-CoreMLSuite
pip install -r requirements.txt
Once you've installed the custom nodes, you can start using them in your ComfyUI workflows.
To do this, you need to add the nodes to your workflow. You can do this by right-clicking on the workflow canvas and
selecting the nodes from the list of available nodes (the nodes are in the Core ML Suite
category).
You can also double-click the canvas and use the search bar to find the nodes. The list of available nodes is given
below.
CoreMLUnetLoader
)This node allows you to load a Core ML UNet model and use it in your ComfyUI workflow. Place the converted
.mlpackage or .mlmodelc file in ComfyUI's models/unet
directory and use the node to load the model. The output of the
node is a coreml_model
object that can be used with the Core ML Sampler.
CPU_AND_ANE
: The model will run on both the CPU and ANE. This is the default option. It works best with
models
converted with --attention-implementation SPLIT_EINSUM
or --attention-implementation SPLIT_EINSUM_V2
.CPU_AND_GPU
: The model will run on both the CPU and GPU. It works best with models converted with
--attention-implementation ORIGINAL
.CPU_ONLY
: The model will run on the CPU only.ALL
: The model will run on all available hardware.CoreMLSampler
)This node allows you to generate images using a Core ML model. The node takes a Core ML model as input and outputs a latent image similar to the latent image output by the KSampler. This means that you can use the resulting latent as you normally would in your workflow.
You can use this node to convert any SD1.5 based checkpoint to a Core ML model. The converted model is stored in the
models/unet
directory and can be used with the Core ML UNet Loader
. The conversion parameters are encoded in
the node name, so if the model already exists, the node will not convert it again.
models/checkpoints
directory.[!NOTE] Some models use a custom config .yaml file. If you're using such a model, you'll need to place the config file in the
models/configs
directory. The config file should be named the same as the checkpoint file. For example, if the checkpoint file is namedjuggernaut_aftermath.safetensors
, the config file should be namedjuggernaut_aftermath.yaml
. The config file will be automatically loaded during conversion.[!NOTE] For now, the converter relies heavilty on the model name to determine the conversion parameters. This means that if you change the model name, the node will convert the model again. Other than that, if you find the name too long or confusing, you can change it to anything you want.
This node allows you to load LoRAs and bake them into a model. Since this is a workaround (as model weights can't be modified after conversion), there are a few caveats to keep in mind:
The LoRA weights and _strengthmodel parameter are baked into the model. This means that you can't change them after conversion. This also means that you need to convert the model again if you want to change the LoRA weights.
Loading LoRA affects CLIP, which is not a part of Core ML workflow, so you'll need to load CLIP separately,
either using CLIPLoader
or CheckpointLoaderSimple
. (See example workflows for more details.)
After conversion, if you want to load the model using CoreMLUnetLoader
, you'll need to apply the same LoRAs to
CLIP manually. (See example workflows for more details.)
The LoRA names are encoded in the model name. This means that if you change the name of the LoRA file, you'll need to change the model name as well, or the node will convert the model again. (Model strength is not encoded, so if you want to change it, you'll need to delete the converted model manually)
_strengthclip parameter only affects the CLIP model and is not baked into the converted model. This means that you can change it after conversion.
Inputs:
CLIPLoader
/CheckpointLoaderSimple
or other LoRA Loaders.Outputs:
This node converts SimianLuo/LCM_Dreamshaper_v7 model to Core
ML. The converted model is stored in the models/unet
directory and can be used with the Core ML UNet Loader. The
conversion parameteres are encoded in the node name, so if the model already exists, the node will not convert it again.
[!NOTE] The conversion process can take a while, so please be patient.
[!NOTE] When using the LCM model with Core ML Sampler, please set _samplername to
lcm
and scheduler tosgm_uniform
.
CoreMLModelAdapter
)This node allows you to use a Core ML as a standard ComfyUI model. This is an experimental node and may not work with all models and nodes. Please use with caution and pay attention to the expected inputs of the model.
[!NOTE] While this approach allows you to use Core ML models with many ComfyUI nodes (both standard and custom), the expected inputs of the model will not be checked, which may cause errors. Please make sure to use a model compatible with the expected parameters.
[!NOTE] The models used are just an example. Feel free to experiment with different models and see what works best for you.
This is a basic txt2img workflow that uses the Core ML UNet loader to load a model. The CLIP and VAE models are loaded using the standard ComfyUI nodes. In the first example, the text encoder (CLIP) and VAE models are loaded separately. In the second example, the text encoder and VAE models are loaded from the checkpoint file. Note that you can use any CLIP or VAE model as long as it's compatible with Stable Diffusion v1.5.
This workflow uses the Core ML UNet loader to load a Core ML UNet model that supports ControlNet. The ControlNet is
being loaded using the standard ComfyUI nodes. Please refer to
the basic txt2img workflow for more details on how to load the CLIP and VAE
models.
The ControlNet model used in this workflow is available
here.
Once downloaded, place the model in the models/controlnet
directory.
This workflow uses the Checkpoint Converter to convert the checkpoint file. See Checkpoint Converter description for more details.
This workflow uses the Checkpoint Converter to convert the checkpoint file with LoRA. See LoRA Loader description to read more about the caveats of using LoRA.
Please note that you can use multiple LoRAs with the same model. To do this, you'll need to use multiple LoRA Loaders.
[!IMPORTANT] In this example, the model is passed through the adapter and
ModelSamplingDiscrete
nodes to a standard ComfyUI's KSampler (not Core ML Sampler). ModelSamplingDiscrete needs to be used to sample models with LCM LoRAs properly.
This workflow uses the Core ML UNet Loader to load a model with LoRAs. The CLIP must be loaded separately and passed through the same LoRA nodes as during conversion. See LoRA Loader description to read more about the caveats of using LoRA. Since _loraname and _strengthmodel are baked into the model, it is not necessary to pass them as inputs to the loader.
[!IMPORTANT] In this example, the model is passed through the adapter and
ModelSamplingDiscrete
nodes to a standard ComfyUI's KSampler (not Core ML Sampler). ModelSamplingDiscrete needs to be used to sample models with LCM LoRAs properly.
This workflow uses LCM converter to convert SimianLuo/LCM_Dreamshaper_v7 model to Core ML. The converted model can then be used with or without ControlNet to generate images.
This is a basic workflow for SDXL. You add LoRAs and ControlNets the same way as in the previous examples. You can also skip the refiner step.
The models used in this workflow are available at the following links:
[!IMPORTANT] SDXL on ANE is not supported. If loading of the model gets stuck, please try using CPU_AND_GPU or CPU_ONLY.
For best results, use ORIGINAL attention implementation.
[^1]: Unless EnumeratedShapes is used during conversion. Needs more testing.
I'm here to help! If you have any questions or suggestions, don't hesitate to open an issue and I'll do my best to assist you.