From 43826c9302339e67da376f8ee5b1d5c60bc7c90e Mon Sep 17 00:00:00 2001 From: KadeSchrock Date: Tue, 6 Jan 2026 00:40:20 -0600 Subject: [PATCH] Basic main.py implementation of ComfyUI --- .idea/.gitignore | 10 ++++++++++ .idea/PromptScan.iml | 10 ++++++++++ .idea/inspectionProfiles/profiles_settings.xml | 6 ++++++ .idea/misc.xml | 7 +++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 8 ++++++++ CudaTest.py | 7 +++++++ 7 files changed, 56 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/PromptScan.iml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 CudaTest.py diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..ab1f416 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,10 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Ignored default folder with query files +/queries/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/PromptScan.iml b/.idea/PromptScan.iml new file mode 100644 index 0000000..5fc977e --- /dev/null +++ b/.idea/PromptScan.iml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..128d4cf --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..5981b07 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..25219c0 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/CudaTest.py b/CudaTest.py new file mode 100644 index 0000000..05d0deb --- /dev/null +++ b/CudaTest.py @@ -0,0 +1,7 @@ +import torch +# Check the PyTorch version +print("Torch Version:", torch.__version__) +# Check if PyTorch has CUDA support enabled (should be True) +print("CUDA Available:", torch.cuda.is_available()) +# Print the CUDA version PyTorch was compiled with +print("CUDA Version used by Torch:", torch.version.cuda) \ No newline at end of file