Instagram Logo

forkni

Alexander Korneev

• Generative artist.
• Ex-Head of Technology at @inter.nyc

163
posts
4.4K
followers
2.2K
following

Real-time FLUX.2-Klein model running locally on a single RTX5090 GPU. Conditioned with prompt and RGB camera input. Custom KV cache bank implementation for temporal consistency + a ton of optimizations 😵‍💫😈

#flux2 #realtimerendering #nvidia #touchdesigner #blackforestlabs


62
11
3 days ago


Real-time diffusion with FLUX.2-Klein4B model + streamV2V in Touchdesigner 😳
Very impressed with the results!
Running smoothly on Nvidia RTX 5090 GPU locally.
Swipe to view the input ⏩️

#flux2 #torch #nvidia #blackforestgermany #touchdesigner


40
8
1 weeks ago

Real-time diffusion with FLUX.2-Klein4B model + streamV2V in Touchdesigner 😳
Very impressed with the results!
Running smoothly on Nvidia RTX 5090 GPU locally.
Swipe to view the input ⏩️

#flux2 #torch #nvidia #blackforestgermany #touchdesigner


40
8
1 weeks ago

For the last couple months I’m diving into FLUX.2 inference acceleration and here’s latency results so far:
LEFT SIDE: real-time input
RIGHT SIDE: real-time diffused output

Technology stack:
• NVIDIA 5090 GPU
• FLUX.2-Klein 4b model
• TensorRT acceleration
• FP8 selective quantization
• Pre-inference prompt calibration
• CUDA-Link for minimizing latency overhead
• 2 steps, 320x512px resolution
• 13 FPS

#blackforestgermany #flux2 #nvidia #touchdesigner


27
10
3 weeks ago

Times like this remind you how much work depends on the people around you.
What begins as a structured set can slowly open into a long improvisation. And every now and then the stage and the visuals briefly meet in the same moment — something you could never fully plan.
Nomad Path Live Performance by @firouzfarmanfarmaian and @interactive.items
Made with @touchdesigner and #streamdiffusion by @dotsimulate
#generativeart#audiovisual #realtime #newmedia


112
8
2 months ago

Times like this remind you how much work depends on the people around you.
What begins as a structured set can slowly open into a long improvisation. And every now and then the stage and the visuals briefly meet in the same moment — something you could never fully plan.
Nomad Path Live Performance by @firouzfarmanfarmaian and @interactive.items
Made with @touchdesigner and #streamdiffusion by @dotsimulate
#generativeart#audiovisual #realtime #newmedia


112
8
2 months ago

Times like this remind you how much work depends on the people around you.
What begins as a structured set can slowly open into a long improvisation. And every now and then the stage and the visuals briefly meet in the same moment — something you could never fully plan.
Nomad Path Live Performance by @firouzfarmanfarmaian and @interactive.items
Made with @touchdesigner and #streamdiffusion by @dotsimulate
#generativeart#audiovisual #realtime #newmedia


112
8
2 months ago

Times like this remind you how much work depends on the people around you.
What begins as a structured set can slowly open into a long improvisation. And every now and then the stage and the visuals briefly meet in the same moment — something you could never fully plan.
Nomad Path Live Performance by @firouzfarmanfarmaian and @interactive.items
Made with @touchdesigner and #streamdiffusion by @dotsimulate
#generativeart#audiovisual #realtime #newmedia


112
8
2 months ago


Times like this remind you how much work depends on the people around you.
What begins as a structured set can slowly open into a long improvisation. And every now and then the stage and the visuals briefly meet in the same moment — something you could never fully plan.
Nomad Path Live Performance by @firouzfarmanfarmaian and @interactive.items
Made with @touchdesigner and #streamdiffusion by @dotsimulate
#generativeart#audiovisual #realtime #newmedia


112
8
2 months ago

Times like this remind you how much work depends on the people around you.
What begins as a structured set can slowly open into a long improvisation. And every now and then the stage and the visuals briefly meet in the same moment — something you could never fully plan.
Nomad Path Live Performance by @firouzfarmanfarmaian and @interactive.items
Made with @touchdesigner and #streamdiffusion by @dotsimulate
#generativeart#audiovisual #realtime #newmedia


112
8
2 months ago

Times like this remind you how much work depends on the people around you.
What begins as a structured set can slowly open into a long improvisation. And every now and then the stage and the visuals briefly meet in the same moment — something you could never fully plan.
Nomad Path Live Performance by @firouzfarmanfarmaian and @interactive.items
Made with @touchdesigner and #streamdiffusion by @dotsimulate
#generativeart#audiovisual #realtime #newmedia


112
8
2 months ago

Times like this remind you how much work depends on the people around you.
What begins as a structured set can slowly open into a long improvisation. And every now and then the stage and the visuals briefly meet in the same moment — something you could never fully plan.
Nomad Path Live Performance by @firouzfarmanfarmaian and @interactive.items
Made with @touchdesigner and #streamdiffusion by @dotsimulate
#generativeart#audiovisual #realtime #newmedia


112
8
2 months ago

Times like this remind you how much work depends on the people around you.
What begins as a structured set can slowly open into a long improvisation. And every now and then the stage and the visuals briefly meet in the same moment — something you could never fully plan.
Nomad Path Live Performance by @firouzfarmanfarmaian and @interactive.items
Made with @touchdesigner and #streamdiffusion by @dotsimulate
#generativeart#audiovisual #realtime #newmedia


112
8
2 months ago

Times like this remind you how much work depends on the people around you.
What begins as a structured set can slowly open into a long improvisation. And every now and then the stage and the visuals briefly meet in the same moment — something you could never fully plan.
Nomad Path Live Performance by @firouzfarmanfarmaian and @interactive.items
Made with @touchdesigner and #streamdiffusion by @dotsimulate
#generativeart#audiovisual #realtime #newmedia


112
8
2 months ago

Why does sharing GPU memory between two processes still require copying data through the CPU?
At 60fps, that round-trip costs milliseconds you can’t afford.
I built CUDA-Link to fix that — an open-source Python library that shares GPU textures and tensors directly between processes. Zero-copy, no CPU detour.Started because I needed live TouchDesigner frames in AI models without the latency hit. The GPU → CPU → GPU path was eating my frame budget, so I wrapped CUDA’s IPCAPI in pure Python and cut it out entirely.

What it does:
→ Zero-copy GPU sharing between any two processes
→ Ring buffer — producer and consumer never block each other
→ PyTorch, CuPy, NumPy output modes
→ Pure Python — pip install and go

60fps in production. Easy.

Open-source: github.com/forkni/cuda-link (link in bio)

#touchdesigner #python #cuda #realtimeai


56
7
2 months ago


Live depth feed from Azure Kinect camera → ControlNet + StreamV2V (temporal consistency) → diffused output at 30 FPS with SDXL-Turbo at 2 Timesteps on a single RTX 5090.
Most StreamDiffusion implementations use TensorRT (incompatible with StreamV2V) — torch.compile gives both speed and consistency. Currently working on further pipeline acceleration 🚀🚀🚀
#streamdiffusion #torch #realtimerendering #generativeart #ai


433
54
2 months ago

Real-time StreamDiffusion from Kinect Azure input (RGB + Depth)
ControlNet Depth + StreamV2V

#kinect #streamdiffusion #touchdesigner #nvi̇di̇a #realtimerendering


56
12
3 months ago

60FPS real-time video generation with StreamDiffusion from Orbbec camera. •

- ControlNet depth for figure shape coherence •
- StreamV2V with smart caching & Feature injection for temporal stability •

Everything running real-time in Touchdesigner on RTX5090 GPU •

Big shoutout to @ekarasyk for the GPU and trust 🖤
#streamdiffusion #nvidia #torch #realtimerendering #touchdesigner


60
7
3 months ago

So, this is it. •
After months of tries and errors, I could manage to adapt StreamV2V code to be compilable!
What you see here - is real-time render with StreamDiffusion + StreamV2V + Depth ControlNet.
3 diffusion steps; 30FPS; SDTurbo diffusion model.
Produced and recorded in real time-time in TouchDesigner.

#streamdiffusion #torch #nvidia #realtimerendering #touchdesigner


30
5
3 months ago

So, this is it. •
After months of tries and errors, I could manage to adapt StreamV2V code to be compilable!
What you see here - is real-time render with StreamDiffusion + StreamV2V + Depth ControlNet.
3 diffusion steps; 30FPS; SDTurbo diffusion model.
Produced and recorded in real time-time in TouchDesigner.

#streamdiffusion #torch #nvidia #realtimerendering #touchdesigner


30
5
3 months ago

OK, now we talking…
Real-time video generation with StreamDiffusion from 60FPS input! .
Left part of the video - unprocessed input,
Right part of the video - generated output.

Just made it work, so it’s ruff sketch, but looks very promising for me.

Also it’s running on single NVIDIA 4090 GPU, but with CUDA 12.8, so it will work on 50xx GPU’s as well!
Hell yeah! 🔘
••
#streamdiffusion #realtimerendering #nvidia #pytorch #touchdesigner


63
10
4 months ago


Another StreamDiffusion study 🥀

#streamdiffusion #generativeart #realtimerendering #touchdesigner #derivative


33
5
4 months ago

Real-time StreamDiffusion generation in Touchdesigner.
• V2V + ControlNet
• accelerated with Torch.compile
• 45FPS

#touchdesigner #derivative #streamdiffusion #realtimerendering #ai


42
4 months ago


View Instagram Stories in Secret

The Instagram Story Viewer is an easy tool that lets you secretly watch and save Instagram stories, videos, photos, or IGTV. With this service, you can download content and enjoy it offline whenever you like. If you find something interesting on Instagram that you’d like to check out later or want to view stories while staying anonymous, our Viewer is perfect for you. Anonstories offers an excellent solution for keeping your identity hidden. Instagram first launched the Stories feature in August 2023, which was quickly adopted by other platforms due to its engaging, time-sensitive format. Stories let users share quick updates, whether photos, videos, or selfies, enhanced with text, emojis, or filters, and are visible for only 24 hours. This limited time frame creates high engagement compared to regular posts. In today’s world, Stories are one of the most popular ways to connect and communicate on social media. However, when you view a Story, the creator can see your name in their viewer list, which may be a privacy concern. What if you wish to browse Stories without being noticed? Here’s where Anonstories becomes useful. It allows you to watch public Instagram content without revealing your identity. Simply enter the username of the profile you’re curious about, and the tool will display their latest Stories. Features of Anonstories Viewer: - Anonymous Browsing: Watch Stories without showing up on the viewer list. - No Account Needed: View public content without signing up for an Instagram account. - Content Download: Save any Stories content directly to your device for offline use. - View Highlights: Access Instagram Highlights, even beyond the 24-hour window. - Repost Monitoring: Track the reposts or engagement levels on Stories for personal profiles. Limitations: - This tool works only with public accounts; private accounts remain inaccessible. Benefits: - Privacy-Friendly: Watch any Instagram content without being noticed. - Simple and Easy: No app installation or registration required. - Exclusive Tools: Download and manage content in ways Instagram doesn’t offer.

Advantages of Anonstories

Explore IG Stories Privately

Keep track of Instagram updates discreetly while protecting your privacy and staying anonymous.


Private Instagram Viewer

View profiles and photos anonymously with ease using the Private Profile Viewer.


Story Viewer for Free

This free tool allows you to view Instagram Stories anonymously, ensuring your activity remains hidden from the story uploader.

Frequently asked questions

 
Anonymity

Anonstories lets users view Instagram stories without alerting the creator.

 
Device Compatibility

Works seamlessly on iOS, Android, Windows, macOS, and modern browsers like Chrome and Safari.

 
Safety and Privacy

Prioritizes secure, anonymous browsing without requiring login credentials.

 
No Registration

Users can view public stories by simply entering a username—no account needed.

 
Supported Formats

Downloads photos (JPEG) and videos (MP4) with ease.

 
Cost

The service is free to use.

 
Private Accounts

Content from private accounts can only be accessed by followers.

 
File Usage

Files are for personal or educational use only and must comply with copyright rules.

 
How It Works

Enter a public username to view or download stories. The service generates direct links for saving content locally.