Skip to content
Snippets Groups Projects
Unverified Commit 55b8fb9e authored by Matthias Diener's avatar Matthias Diener Committed by GitHub
Browse files

remove print-binary.py (#685)

* fix and move print-binary.py

* remove the file
parent 2c6c0f91
No related branches found
No related tags found
No related merge requests found
Pipeline #427269 passed
#! /usr/bin/env python
import pyopencl as cl
import sys
ctx = cl.create_some_context()
with open(sys.argv[1]) as inf:
src = inf.read()
prg = cl.Program(ctx, src).build()
print(prg.binaries[0].decode())
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment