mirror of
https://github.com/nomic-ai/kompute.git
synced 2026-07-01 03:47:11 +00:00
8 lines
203 B
Python
8 lines
203 B
Python
import os
|
|
|
|
|
|
def compile_source(source):
|
|
os.system("glslangValidator --stdin -S comp -V -o tmp_kp_shader.comp.spv << END\n" + source + "\nEND")
|
|
return open("tmp_kp_shader.comp.spv", "rb").read()
|
|
|