1/* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
2
3Licensed under the Apache License, Version 2.0 (the "License");
4you may not use this file except in compliance with the License.
5You may obtain a copy of the License at
6
7 http://www.apache.org/licenses/LICENSE-2.0
8
9Unless required by applicable law or agreed to in writing, software
10distributed under the License is distributed on an "AS IS" BASIS,
11WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12See the License for the specific language governing permissions and
13limitations under the License.
14==============================================================================*/
15
16// Gateway to access the Ctx (internal context interface for ruy code) from
17// a Context (public-facing class). Befriended by Context.
18
19#ifndef THIRD_PARTY_RUY_RUY_CONTEXT_GET_CTX_H_
20#define THIRD_PARTY_RUY_RUY_CONTEXT_GET_CTX_H_
21
22#include "ruy/context.h"
23#include "ruy/ctx.h"
24
25namespace ruy {
26
27const Ctx* get_ctx(const Context* context);
28Ctx* get_ctx(Context*);
29
30} // namespace ruy
31
32#endif // THIRD_PARTY_RUY_RUY_CONTEXT_GET_CTX_H_
33