1 /* Copyright 2020 The TensorFlow Authors. All Rights Reserved. 2 3 Licensed under the Apache License, Version 2.0 (the "License"); 4 you may not use this file except in compliance with the License. 5 You may obtain a copy of the License at 6 7 http://www.apache.org/licenses/LICENSE-2.0 8 9 Unless required by applicable law or agreed to in writing, software 10 distributed under the License is distributed on an "AS IS" BASIS, 11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 See the License for the specific language governing permissions and 13 limitations 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 25 namespace ruy { 26 27 const Ctx* get_ctx(const Context* context); 28 Ctx* get_ctx(Context*); 29 30 } // namespace ruy 31 32 #endif // THIRD_PARTY_RUY_RUY_CONTEXT_GET_CTX_H_ 33