1 1.1 mrg /* 2 1.1 mrg * Copyright 2020 Cerebras Systems 3 1.1 mrg * 4 1.1 mrg * Use of this software is governed by the MIT license 5 1.1 mrg * 6 1.1 mrg * Written by Sven Verdoolaege, 7 1.1 mrg * Cerebras Systems, 175 S San Antonio Rd, Los Altos, CA, USA 8 1.1 mrg */ 9 1.1 mrg 10 1.1 mrg #include <isl/space.h> 11 1.1 mrg 12 1.1 mrg #include "isl_multi_macro.h" 13 1.1 mrg 14 1.1 mrg /* This function performs the same operation as isl_multi_*_zero, 15 1.1 mrg * but is considered as a function on an isl_space when exported. 16 1.1 mrg */ 17 1.1 mrg __isl_give MULTI(BASE) *FN(isl_space_zero_multi,BASE)( 18 1.1 mrg __isl_take isl_space *space) 19 1.1 mrg { 20 1.1 mrg return FN(MULTI(BASE),zero)(space); 21 1.1 mrg } 22