ALP User Documentation 0.7.0
Algebraic Programming User Documentation
phase.hpp
Go to the documentation of this file.
1
2/*
3 * Copyright 2021 Huawei Technologies Co., Ltd.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
26#ifndef _H_GRB_PHASE
27#define _H_GRB_PHASE
28
29
30namespace grb {
31
152 enum Phase {
153
188
226
257 EXECUTE
258
259 };
260
261} // namespace grb
262
263#endif // end ``_H_GRB_PHASE''
264
The ALP/GraphBLAS namespace.
Definition: graphblas.hpp:452
Phase
Primitives with sparse ALP/GraphBLAS output containers may run into the issue where an appropriate gr...
Definition: phase.hpp:152
@ TRY
Speculatively assumes that the output container of the requested operation has enough capacity to com...
Definition: phase.hpp:225
@ EXECUTE
Speculatively assumes that the output container of the requested operation has enough capacity to com...
Definition: phase.hpp:257
@ RESIZE
Speculatively assumes that the output container(s) of the requested operation lack the necessary capa...
Definition: phase.hpp:187