45 lines
2.3 KiB
C
45 lines
2.3 KiB
C
// Copyright (c) 2024 PaddlePaddle Authors. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#pragma once
|
|
|
|
#include "paddle/ap/include/axpr/attr_map_method_class.h"
|
|
#include "paddle/ap/include/axpr/bool_method_class.h"
|
|
#include "paddle/ap/include/axpr/builtin_class_instance_method_class.h"
|
|
#include "paddle/ap/include/axpr/builtin_func_type_method_class.h"
|
|
#include "paddle/ap/include/axpr/builtin_high_order_func_type_method_class.h"
|
|
#include "paddle/ap/include/axpr/builtin_serializable_attr_map_method_class.h"
|
|
#include "paddle/ap/include/axpr/builtin_symbol_method_class.h"
|
|
#include "paddle/ap/include/axpr/class_instance_method_class.h"
|
|
#include "paddle/ap/include/axpr/closure_method_class.h"
|
|
#include "paddle/ap/include/axpr/continuation_method_class.h"
|
|
#include "paddle/ap/include/axpr/data_type_method_class.h"
|
|
#include "paddle/ap/include/axpr/data_value_method_class.h"
|
|
#include "paddle/ap/include/axpr/float_method_class.h"
|
|
#include "paddle/ap/include/axpr/function_method_class.h"
|
|
#include "paddle/ap/include/axpr/int_method_class.h"
|
|
#include "paddle/ap/include/axpr/list_method_class.h"
|
|
#include "paddle/ap/include/axpr/method_method_class.h"
|
|
#include "paddle/ap/include/axpr/mutable_list_method_class.h"
|
|
#include "paddle/ap/include/axpr/mutable_ordered_dict_method_class.h"
|
|
#include "paddle/ap/include/axpr/nothing_method_class.h"
|
|
#include "paddle/ap/include/axpr/ordered_dict_method_class.h"
|
|
#include "paddle/ap/include/axpr/packed_args_method_class.h"
|
|
#include "paddle/ap/include/axpr/pointer_type_method_class.h"
|
|
#include "paddle/ap/include/axpr/pointer_value_method_class.h"
|
|
#include "paddle/ap/include/axpr/serializable_list_method_class.h"
|
|
#include "paddle/ap/include/axpr/starred_method_class.h"
|
|
#include "paddle/ap/include/axpr/string_method_class.h"
|
|
#include "paddle/ap/include/axpr/type_method_class.h"
|