mirror of https://github.com/alibaba/MNN.git
6 lines
94 B
Bash
6 lines
94 B
Bash
|
|
#!/bin/bash
|
||
|
|
glslangValidator -V $1 -Os -o __temp.spv
|
||
|
|
spirv-dis __temp.spv > $2
|
||
|
|
|
||
|
|
rm __temp.spv
|