Home | History | Annotate | Download | only in core

Lines Matching refs:clover

32 namespace clover {
36 struct _cl_program : public clover::ref_counter {
38 _cl_program(clover::context &ctx,
40 _cl_program(clover::context &ctx,
41 const std::vector<clover::device *> &devs,
42 const std::vector<clover::module> &binaries);
44 void build(const std::vector<clover::device *> &devs);
47 const std::map<clover::device *, clover::module> &binaries() const;
49 cl_build_status build_status(clover::device *dev) const;
50 std::string build_opts(clover::device *dev) const;
51 std::string build_log(clover::device *dev) const;
53 clover::context &ctx;
56 std::map<clover::device *, clover::module> __binaries;
57 std::map<clover::device *, std::string> __logs;