Files
paddlepaddle--paddle/paddle/cinn/common/target.h
T
2026-07-13 12:40:42 +08:00

123 lines
2.7 KiB
C++

// Copyright (c) 2021 CINN 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 <array>
#include <ostream>
#include <string>
#include <variant>
#include <vector>
#include "paddle/cinn/adt/adt.h"
#include "paddle/cinn/common/arch.h"
namespace cinn {
namespace common {
struct Target {
/**
* The operating system used by the target. Determines which system calls to
* generate.
*/
enum class OS : int {
Unk = -1,
Linux,
Windows,
};
enum class Bit : int {
Unk = -1,
k32,
k64,
};
OS os{OS::Unk};
Arch arch{UnknownArch{}};
Bit bits{Bit::Unk};
enum class Feature : int {
JIT = 0,
Debug,
};
/**
* The library used by the target.
*/
enum class Lib : int {
Unk = -1,
MKL,
};
std::vector<Feature> features;
std::vector<Lib> libs;
explicit Target(OS o = OS::Linux,
Arch a = UnknownArch{},
Bit b = Bit::Unk,
const std::vector<Feature>& features = {},
const std::vector<Lib>& libs = {});
bool defined() const {
return os != OS::Unk && IsDefined(arch) && bits != Bit::Unk;
}
//! Get the Runtime architecture, it is casted to integer to avoid header file
//! depending.
int runtime_arch() const;
int max_num_threads() const;
int get_multi_processor_count() const;
int get_max_threads_per_sm() const;
int get_max_blocks_per_sm() const;
int get_target_bits() const;
std::vector<Lib> get_target_libs() const;
bool get_supports_cooperative_launch() const;
std::string arch_str() const;
std::string device_name_str() const;
bool operator==(const Target& other) const;
bool operator!=(const Target& other) const { return !(*this == other); }
friend std::ostream& operator<<(std::ostream& os, const Target& target);
};
const Target& UnkTarget();
const Target& DefaultHostTarget();
const Target& DefaultNVGPUTarget();
const Target& DefaultHygonDcuHipTarget();
const Target& DefaultHygonDcuSyclTarget();
const Target& DefaultDeviceTarget();
const Target& DefaultCustomDeviceTarget();
const Target& DefaultTarget();
int GetMaxThreads();
int GetMaxBlocks();
} // namespace common
} // namespace cinn