c_comm_lib.h 1.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
// Copyright (c) 2022 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 <vector>

#include "paddle/phi/common/data_type.h"
#include "paddle/phi/common/place.h"
#include "paddle/phi/core/enforce.h"
#include "paddle/phi/core/errors.h"
#include "paddle/phi/core/macros.h"

namespace phi {
namespace ccl {
using CCLComm = void*;
using CCLRootId = std::vector<uint8_t>;

enum CCLReduceOp { SUM = 0, AVG, MAX, MIN, PRODUCT };
enum CCLDataType {
  CCL_DATA_TYPE_FP64 = 0,
  CCL_DATA_TYPE_FP32,
  CCL_DATA_TYPE_FP16,
  CCL_DATA_TYPE_INT64,
  CCL_DATA_TYPE_INT32,
  CCL_DATA_TYPE_INT16,
  CCL_DATA_TYPE_INT8
};

40
inline CCLDataType ToCCLDataType(phi::DataType type) {
41
  if (type == phi::DataType::FLOAT64) {
42
    return CCL_DATA_TYPE_FP64;
43
  } else if (type == phi::DataType::FLOAT32) {
44
    return CCL_DATA_TYPE_FP32;
45
  } else if (type == phi::DataType::FLOAT16) {
46
    return CCL_DATA_TYPE_FP16;
47
  } else if (type == phi::DataType::INT64) {
48
    return CCL_DATA_TYPE_INT64;
49
  } else if (type == phi::DataType::INT32) {
50
    return CCL_DATA_TYPE_INT32;
51
  } else if (type == phi::DataType::INT8) {
52 53 54 55 56 57 58 59 60
    return CCL_DATA_TYPE_INT8;
  } else {
    PADDLE_THROW(
        phi::errors::Unimplemented("This datatype in CCL is not supported."));
  }
}

}  // namespace ccl
}  // namespace phi