mirror of
https://github.com/nomic-ai/kompute.git
synced 2026-03-25 01:27:24 +00:00
8 lines
227 B
Python
8 lines
227 B
Python
import os
|
|
|
|
|
|
def compile_source(source):
|
|
open("tmp_kp_shader.comp", "w").write(source)
|
|
os.system("glslangValidator -V tmp_kp_shader.comp -o tmp_kp_shader.comp.spv")
|
|
return open("tmp_kp_shader.comp.spv", "rb").read()
|