mirror of https://github.com/google/gemma.cpp.git
9 lines
316 B
C++
9 lines
316 B
C++
#pragma once
|
|
#include "cl_global_custom.h"
|
|
namespace cl_facade
|
|
{
|
|
Kernel create_kernel(const std::string& path, const std::string& class_name, const Context& ct, const Device& dev);
|
|
Kernel create_kernel(const std::string& path, const std::string& class_name, const Context& ct, const Device& dev, bool to_text);
|
|
|
|
}
|