| 201 | } // namespace |
| 202 | |
| 203 | XlaLocalLaunchBase::XlaLocalLaunchBase(OpKernelConstruction* ctx, |
| 204 | const std::vector<int>& constants, |
| 205 | const std::vector<int>& resources, |
| 206 | const NameAttrList& function) |
| 207 | : OpKernel(ctx), |
| 208 | constants_(constants), |
| 209 | resources_(resources), |
| 210 | function_(function), |
| 211 | platform_info_(PlatformInfoFromContext(ctx)) {} |
| 212 | |
| 213 | static Status BuildCompilationCache(OpKernelContext* ctx, |
| 214 | const XlaPlatformInfo& platform_info, |
nothing calls this directly
no test coverage detected