source
stringlengths
3
92
c
stringlengths
26
2.25M
comm.h
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
CGOpenMPRuntime.h
//===----- CGOpenMPRuntime.h - Interface to OpenMP Runtimes -----*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===---------------------------...
point_task.h
/* Copyright 2021 NVIDIA Corporation * * 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...
O5Indirect3D.c
#include <mpi.h> #include "grid.h" extern struct { char *name; int loc; int dim; union { GVAL *restrict * restrict p2; GVAL *restrict * restrict * restrict p3; } data_pointer; } *gv_temp; extern struct { char *name; int loc; int dim; union { GVAL *restrict * ...
GB_binop__isgt_int32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX...
krb5_tgs_fmt_plug.c
/* * Based on the work by Tim Medin * Port from his Pythonscript to John by Michael Kramer (SySS GmbH) * * This software is * Copyright (c) 2015 Michael Kramer <michael.kramer@uni-konstanz.de>, * Copyright (c) 2015 magnum * Copyright (c) 2016 Fist0urs <eddy.maaalou@gmail.com> * * Modified by Fist0urs to improv...
sparseOptimizedOverlappingJacobi.h
// // Created by mbarb on 23/02/2018. // #ifndef PARALLELITERATIVE_SPARSEOPRIMIZEDOVERLAPPINGJACOBI_H #define PARALLELITERATIVE_SPARSEOPRIMIZEDOVERLAPPINGJACOBI_H #include "Eigen" #include "utils.h" #include "sparseParallelJacobi.h" namespace Iterative { template <typename Scalar> class sparseOptimizedOve...
base_ptr_ref_count.c
// RUN: %libomptarget-compile-aarch64-unknown-linux-gnu && env LIBOMPTARGET_DEBUG=1 %libomptarget-run-aarch64-unknown-linux-gnu 2>&1 | %fcheck-aarch64-unknown-linux-gnu // RUN: %libomptarget-compile-powerpc64-ibm-linux-gnu && env LIBOMPTARGET_DEBUG=1 %libomptarget-run-powerpc64-ibm-linux-gnu 2>&1 | %fcheck-powerpc64-ib...
GB_binop__isge_int32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
Calcul.c
/*********************************************************************************/ /* Matrix product program with MPI on a virtual ring of processors */ /* S. Vialle - October 2014 */ /****************************************************************...
GB_binop__bshift_int64.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
GB_unop__acos_fc32_fc32.c
//------------------------------------------------------------------------------ // GB_unop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX-Li...
GB_binop__islt_fp32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
13_soma_par2.c
#include <stdio.h> #include <stdlib.h> #include <math.h> void inicializa(int **v, int size) { (*v) = (int *) malloc(sizeof(int)*size); for (int i = 0; i < size; i++) { (*v)[i] = 1; } } int main(int argc, char **argv) { int *vetor; int size = 1000000; inicializa(&vetor, size); unsigned long acc = 0; #...
compare.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
GB_unaryop__ainv_uint64_int16.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
DenseMatrix.h
//================================================================================================= /*! // \file blaze/math/smp/openmp/DenseMatrix.h // \brief Header file for the OpenMP-based dense matrix SMP implementation // // Copyright (C) 2012-2020 Klaus Iglberger - All Rights Reserved // // This file is part ...
backward_euler_monolithic_ale_scheme.h
// | / | // ' / __| _` | __| _ \ __| // . \ | ( | | ( |\__ ` // _|\_\_| \__,_|\__|\___/ ____/ // Multi-Physics // // License: BSD License // Kratos default license: kratos/license.txt // // Main authors: Miguel Maso // #ifndef KRATOS_BACKWARD_EULER_MO...
parallel_utilities.h
// | / | // ' / __| _` | __| _ \ __| // . \ | ( | | ( |\__ ` // _|\_\_| \__,_|\__|\___/ ____/ // Multi-Physics // // License: BSD License // Kratos default license: kratos/license.txt // // Main authors: Riccardo Rossi // Denis Demidov...
main.c
============================================================================================================================================================= Questao 1: Iteracao 1 Tempo sequencial: 1.433240 Tempo paralelo: 0.606362 Speedup = 2.363672 -------------------------------------- Iteracao 2 Tempo sequenc...
tinyexr.h
/* Copyright (c) 2014 - 2016, Syoyo Fujita All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and t...
w8_e2_output.c
// Checking the output from an openMP program. #include <stdio.h> #include <omp.h> int main(int argc, char const *argv[]) { int total_sum = 0; int i; #pragma omp parallel default(shared) reduction(+:total_sum) num_threads(4) { int my_id = omp_get_thread_num(); int my_sum = 0; #p...
pre_utilities.h
#ifndef PRE_UTILITES_H #define PRE_UTILITES_H /* System includes */ #include <limits> #include <iostream> #include <iomanip> #include <fstream> #include <vector> #include <stdlib.h> #include <time.h> #include <string> /* External includes */ #ifdef _OPENMP #include <omp.h> #endif /* Project includes */ #include "inc...
DUtils.h
#ifndef _D_UTILS_H_ #define _D_UTILS_H_ #include <stdio.h> #include <sys/ioctl.h> #include <sys/select.h> #include <termios.h> // XXX JOE #include <stropts.h> #include <unistd.h> namespace smil { struct index { size_t x; size_t y; size_t z; size_t o; index() { } index(const index &i)...
main.c
#include <stdio.h> #include <stdlib.h> #include <assert.h> #include "cl_utils.h" int main(int argc, char *argv[]) { if (argc == 1) { fprintf(stderr, "Usage: ./test_vecadd.exe <AOCX file> <numdata in log scale>\n"); exit(EXIT_FAILURE); } if (argc != 3) { fprintf(stderr, "Error!\nThe number of argument...
GB_split_bitmap_template.c
//------------------------------------------------------------------------------ // GB_split_bitmap_template: split a bitmap matrix into a bitmap tile //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX...
SimulatorBase.h
/* Menge Crowd Simulation Framework Copyright and trademark 2012-17 University of North Carolina at Chapel Hill 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/licen...
image_manipulation.h
////////////////////////////////////////////////////////////////////////// // Software License Agreement (BSD License) // // // // Copyright (c) 2009 // // Engin Tola ...
GB_unop__cimag_fp64_fc64.c
//------------------------------------------------------------------------------ // GB_unop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-Li...
GB_unop__log10_fp64_fp64.c
//------------------------------------------------------------------------------ // GB_unop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX-Li...
pngquant.c
/* pngquant.c - quantize the colors in an alphamap down to a specified number ** ** Copyright (C) 1989, 1991 by Jef Poskanzer. ** ** Permission to use, copy, modify, and distribute this software and its ** documentation for any purpose and without fee is hereby granted, provided ** that the above copyright notice appea...
1727.c
/* * Compile using the command: * `cc 27Stencil.c -o oa -fopenmp -lm` */ #include <math.h> #include <omp.h> #include <stdint.h> #include <string.h> #include <stdio.h> #include <stdlib.h> #ifdef _OPENACC #include <openacc.h> #endif #define DEFAULT_DATASIZE 1048576 /* Default datasize. */ #define DEFAULT_REPS 10 ...
sgeadd.c
/** * * @file * * PLASMA is a software package provided by: * University of Tennessee, US, * University of Manchester, UK. * * @generated from /home/luszczek/workspace/plasma/bitbucket/plasma/compute/zgeadd.c, normal z -> s, Fri Sep 28 17:38:05 2018 * **/ #include "plasma.h" #include "plasma_async.h" #inc...
AverageLut.h
// -------------------------------------------------------------------------- // Binary Brain -- binary neural net framework // // Copyright (C) 2018 by Ryuji Fuchikami // https://github.com/ryuz // ryuji.fuch...
SoaDistanceTableABOMP.h
////////////////////////////////////////////////////////////////////////////////////// // This file is distributed under the University of Illinois/NCSA Open Source License. // See LICENSE file in top directory for details. // // Copyright (c) 2016 Jeongnim Kim and QMCPACK developers. // // File developed by: Jeongnim ...
dim3.h
#pragma once #include <stdint.h> #include <sstream> #include <stk/math/int3.h> #ifdef STK_USE_CUDA #include <vector_types.h> #else // Otherwise defined in vector_types.h for CUDA struct dim3 { dim3(uint32_t vx = 1, uint32_t vy = 1, uint32_t vz = 1) : x(vx), y(vy), z(vz) {} uint32_t x; uint32_...
schedule-clause.c
#include <stdio.h> #include <stdlib.h> #ifdef _OPENMP #include <omp.h> #else #define omp_get_thread_num() 0 #endif int main(int argc, char **argv) { int i, n = 16,chunk, a[n],suma=0; if(argc < 2) { fprintf(stderr,"\nFalta chunk \n"); exit(-1); } chunk = atoi(argv[1]); for (i=0; i<n; i++) a[i] ...
impact_acc.c
/* impact_acc.c A Basilisk script to model the impact of a droplet of water impacting onto a moving plate. The domain is set to be in an accelerating frame with the plate, so an additional body force is added. */ // RC This is commonly used for large viscosity contrasts #define FILTERED #define mu(f) (1....
graphProcessingSgIncGraph.h
/* FINISH TEMPFLATPATH CODE */ // Original Author (SgGraphTraversal mechanisms): Michael Hoffman //$id$ #include<omp.h> #include <boost/regex.hpp> #include <iostream> #include <fstream> #include <string> /** *@file graphProcessing.h *Brief Overview of Algorithm: *********************** *Current Implementatio...
npartition.c
#include<limits.h> #include<stdio.h> #include<stdlib.h> #include<string.h> #include<unistd.h> #include<omp.h> #include<mpi.h> #include<math.h> #include<time.h> #define round(x) ((x)>=0?(int)((x)+0.5):(int)((x)-0.5)) void combinate_numbers(int number, long *count); /* Soma os divisores de n */ void divisors(int numb...
sgm_stereo.h
/**@copyright 2016 Horizon-Robotics Inc. All Rights Reserved. * @author Degang Yang (degang.yang@horizon-robotics.com) * * @file sgm_stereo.h * @brief SGM based stereo for autonomous driving platform * recursive filtering based post-refinement * 1, this implementation is not intended for realtime app...
cache.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
jacobi-2d-imper.c
/* POLYBENCH/GPU-OPENMP * * This file is a part of the Polybench/GPU-OpenMP suite * * Contact: * William Killian <killian@udel.edu> * * Copyright 2013, The University of Delaware */ #include <stdio.h> #include <unistd.h> #include <string.h> #include <math.h> /* Include polybench common header. */ #include <po...
ft_ao.c
/* Copyright 2014-2018 The PySCF Developers. 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 ...
GB_unaryop__ainv_int8_int8.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
openmp-ex03.c
#include <stdio.h> #include <omp.h> int main(void) { int num_threads, my_thread; /* OpenMP implements "fork-join", where one master thread runs outside of * the parallel regions, forks to create them, and joins them at the end of * the region. Let's see if we can confirm this. */ /* Count the number of ...
convolution_1x1_pack4to8_fp16s.h
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2020 THL A29 Limited, a Tencent company. All rights reserved. // // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except // in compliance with the License. You may obtain a copy ...
GB_binop__bclr_uint8.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
graph.h
// Copyright (c) 2015, The Regents of the University of California (Regents) // See LICENSE.txt for license details #ifndef GRAPH_H_ #define GRAPH_H_ #include <cinttypes> #include <iostream> #include <type_traits> #include "pvector.h" #include "util.h" /* GAP Benchmark Suite Class: CSRGraph Author: Scott Beamer ...
morphology.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
omp_with_loop_pragma.c
// RUN: %clang_cc1 -verify -fopenmp -x c -emit-llvm %s -triple x86_64-unknown-linux -o - -femit-all-decls -disable-llvm-passes | FileCheck %s // RUN: %clang_cc1 -verify -x c -emit-llvm %s -triple x86_64-unknown-linux -o - -femit-all-decls -disable-llvm-passes | FileCheck %s // expected-no-diagnostics // CHECK: !{{[0-9...
ef_error2.c
/* The warning is x86-only. */ /* { dg-do compile { target { i?86-*-* x86_64-*-* } } } */ /* { dg-options "-fcilkplus -Wall" } */ __attribute__((vector (vectorlength(128)))) //#pragma omp simd simdlen (128) int func2 (int x, int y) /* { dg-warning "unsupported simdlen" } */ { return (x+y); } int main (void) { ...
GB_unop__identity_uint64_int32.c
//------------------------------------------------------------------------------ // GB_unop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-Li...
detector.c
#include "darknet.h" static int coco_ids[] = {1,2,3,4,5,6,7,8,9,10,11,13,14,15,16,17,18,19,20,21,22,23,24,25,27,28,31,32,33,34,35,36,37,38,39,40,41,42,43,44,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,67,70,72,73,74,75,76,77,78,79,80,81,82,84,85,86,87,88,89,90}; void train_detector(char *datacfg, cha...
restriction.c
//------------------------------------------------------------------------------------------------------------------------------ // Samuel Williams // SWWilliams@lbl.gov // Lawrence Berkeley National Lab //------------------------------------------------------------------------------------------------------------------...
ParallelCLBPacker.h
/** * @file ParallelCLBPacker.h * @author Tingyuan LIANG (tliang@connect.ust.hk) * @brief This header file contains the definitions of ParallelCLBPacker class and its internal modules and APIs which * finally packs LUT/FF/MUX/CARRY elements into legal CLB sites in a parallel approach. * @version 0.1 * @date 2021-...
pdocks.h
#ifndef PDOCKS_H #define PDOCKS_H #include <iostream> #include <fstream> #include <cmath> #include <string> #include <vector> #include <algorithm> #include <map> #include <cstdlib> #include <iomanip> #include <cstdint> #include <omp.h> using namespace std; using byte = uint8_t; class PDOCKS { public: byte* ...
convolution_3x3.h
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2017 THL A29 Limited, a Tencent company. All rights reserved. // Copyright (C) 2019 BUG1989. All rights reserved. // // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except // in...
updater_basemaker-inl.h
/*! * Copyright 2014 by Contributors * \file updater_basemaker-inl.h * \brief implement a common tree constructor * \author Tianqi Chen */ #ifndef XGBOOST_TREE_UPDATER_BASEMAKER_INL_H_ #define XGBOOST_TREE_UPDATER_BASEMAKER_INL_H_ #include <rabit/rabit.h> #include <vector> #include <algorithm> #include <string>...
flush-2.c
/* { dg-do compile } */ /* { dg-message "undeclared identifier is reported only once" "reminder" { target *-*-* } 0 } */ void f1(void) { #pragma omp flush a /* { dg-error "expected" } */ #pragma omp flush ( /* { dg-error "expected identifier" } */ #pragma omp flush (b /* { dg-error "undeclared|expected|for each" ...
Scan.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include "wgrib2.h" #include "fnlist.h" // extern int nx, ny, scan; // extern unsigned int npnts; // extern int save_translation; extern int *raw_variable_dim; extern enum output_order_type output_order_wanted, output_order; static unsigned int n_translation...
scheduled-clauseModificado2.c
/* * sheduled-clause.c * * Created on: 28/04/2014 * Author: Carlos de la Torre */ #include <stdio.h> #include <stdlib.h> #ifdef _OPENMP #include <omp.h> #else #define omp_get_thread_num() 0 #endif int main(int argc, char **argv) { int i, n = 200, chunk, hebras = 1, a[n], suma = 0; if (argc <= 3) { if...
GB_unaryop__minv_int64_bool.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
GB_binop__land_uint32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
convolution_3x3.h
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2017 THL A29 Limited, a Tencent company. All rights reserved. // // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except // in compliance with the License. You may obtain a copy ...
quantize.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
deconvolution_pack4to16.h
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2022 THL A29 Limited, a Tencent company. All rights reserved. // // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except // in compliance with the License. You may obtain a copy ...
GB_binop__isne_int32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
mm.c
#include "mm.h" #ifdef OTM_3 void multiplica_matriz(int m, int n, int* restrict* restrict matA, int* restrict* restrict matB, int* restrict* restrict matC) #else void multiplica_matriz(int m, int n, int** matA, int** matB, int** matC) #endif { for (int i = 0; i < m; i++) { for (int j = 0; j < n; j++) { #if...
LAGraph_pagerankx4.c
//------------------------------------------------------------------------------ // LAGraph_pagerankx4: pagerank using a real semiring //------------------------------------------------------------------------------ /* LAGraph: graph algorithms based on GraphBLAS Copyright 2020 LAGraph Contributors. (se...
triangle_counting.h
#pragma once #include "util/containers/boolarray.h" #include "util/graph/graph.h" #include "util/libpopcnt.h" #include "util/intersection/set_inter_cnt_utils.h" #define MAX_PACK_NUM (32768) #define FIRST_RANGE_SIZE (32768) using row_ptr_t = uint32_t; template<typename OFF, typename WI, typename WC> void PackWords(gr...
GB_AxB_dot3_template.c
//------------------------------------------------------------------------------ // GB_AxB_dot3_template: C<M>=A'*B via dot products, where C is sparse/hyper //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. ...
channel.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
bitonic_sort_openmp.c
// Bitonic Sort - arruential implementation #include <stdio.h> #include <math.h> #include <stdlib.h> #include <stdbool.h> #include <sys/time.h> #include <omp.h> int *arr; // data array to be sorted int n; // data array size int p; // number of threads const int ASCENDING = 1; const int DESCENDING = 0; void init() { ...
DistanceTableData.h
////////////////////////////////////////////////////////////////////////////////////// // This file is distributed under the University of Illinois/NCSA Open Source License. // See LICENSE file in top directory for details. // // Copyright (c) 2016 Jeongnim Kim and QMCPACK developers. // // File developed by: Jeremy Mc...
lu.c
void LU_decomp(int const n, int const lda, double* const A) { int i, j, k; // Semaphores char row_ready[n]; for (i = 0; i < n; i++) row_ready[i] = 0; row_ready[0] = 1; // For all "iron" rows #pragma omp parallel for private(j,k) schedule(dynamic,1) for (i = 1; i < n; i++) { double * const Ai ...
morphology.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
oyranos_cmm_lcm2.c
/** @file oyranos_cmm_lcm2.c * * Oyranos is an open source Color Management System * * @par Copyright: * 2007-2017 (C) Kai-Uwe Behrmann * * @brief littleCMS CMM module for Oyranos * @author Kai-Uwe Behrmann <ku.b@gmx.de> * @par License: * new BSD <http://www.opensource.org/lic...
hello_hybrid.c
#include <stdio.h> #include <mpi.h> #include <omp.h> int main(int argc, char **argv) { int mpi_size, mpi_rank, plen; char pname[MPI_MAX_PROCESSOR_NAME]; int omp_n, omp_i; MPI_Init(&argc, &argv); MPI_Comm_size(MPI_COMM_WORLD, &mpi_size); MPI_Comm_rank(MPI_COMM_WORLD, &mpi_rank); MPI_Get_pro...
scaledAdd.c
extern "C" void FUNC(scaledAdd) (const dlong & N, const pfloat & alpha, const pfloat * __restrict__ x, const pfloat & beta, pfloat * __restrict__ y){ #ifdef __NEKRS__OMP__ #pragma omp parallel for #endif for(dlong n = 0; n < N; ++n){ y[n] = alpha*x[n] + beta*y[n]; } }
GB_binop__bxnor_uint8.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
convolution_3x3.h
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2017 THL A29 Limited, a Tencent company. All rights reserved. // // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except // in compliance with the License. You may obtain a copy ...
GB_unaryop__ainv_fp64_int16.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
3d7pt_var.c
/* * Order-1, 3D 7 point stencil with variable coefficients * Adapted from PLUTO and Pochoir test bench * * Tareq Malas */ #include <stdio.h> #include <stdlib.h> #include <sys/time.h> #ifdef LIKWID_PERFMON #include <likwid.h> #endif #include "print_utils.h" #define TESTS 2 #define MAX(a,b) ((a) > (b) ? a : b) #...
AlgebraicTriangleCounting.h
/* * AlgebraicTriangleCounting.h * * Created on: Jul 12, 2016 * Author: Michael Wegner (michael.wegner@student.kit.edu) */ #ifndef NETWORKIT_CPP_ALGEBRAIC_ALGORITHMS_ALGEBRAICTRIANGLECOUNTING_H_ #define NETWORKIT_CPP_ALGEBRAIC_ALGORITHMS_ALGEBRAICTRIANGLECOUNTING_H_ #include "../../base/Algorithm.h" names...
paint.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
GB_binop__ge_int16.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
GB_binop__fmod_fp64.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
sort.h
/* * (C) Copyright 2013 ECMWF. * * This software is licensed under the terms of the Apache Licence Version 2.0 * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. * In applying this licence, ECMWF does not waive the privileges and immunities * granted to it by virtue of its status as an intergo...
GB_unaryop__ainv_int32_bool.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http...
lis_precon_ads.c
/* Copyright (C) 2002-2012 The SSI Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of condition...
GxB_UnaryOp_ztype_name.c
//------------------------------------------------------------------------------ // GxB_UnaryOp_ztype_name: return the type_name of z for z=f(x) //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-Licen...
openMP.c
#include <stdio.h> #include <stdlib.h> #include <omp.h> #include <time.h> // variaveis globais int iterations; int height, width; int *life, *lifeN, *aux; int rows_thread, rows_last_thread; // divisao de linhas por thread int thread_count; int itt; // prototype int* createBoard(int height, int width); void freeBoard(...
Example_acquire_release.1.c
/* * @@name: acquire_release.1.c * @@type: C * @@compilable: yes * @@linkable: yes * @@expect: success * @@version: omp_5.0 */ #include <stdio.h> #include <omp.h> int main() { int x = 0, y = 0; #pragma omp parallel num_threads(2) { int thrd = omp_get_thread_num(); if (thrd == 0) { x = 10...
GB_unop__identity_fp32_int32.c
//------------------------------------------------------------------------------ // GB_unop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-Li...
proc_bind.c
// RUN: %libomp-compile && env OMP_DISPLAY_AFFINITY=true OMP_PLACES='{0},{0,1},{0},{0,1},{0},{0,1},{0},{0,1},{0},{0,1},{0}' %libomp-run | %python %S/check.py -c 'CHECK' %s // REQUIRES: affinity #include <stdio.h> #include <stdlib.h> #include <omp.h> int main(int argc, char** argv) { omp_set_affinity_format("TESTER:...
yolov2.h
#ifndef YOLOV2_H #define YOLOV2_H #include <stdio.h> #include <stdlib.h> #include <iostream> #include <math.h> #include <fcntl.h> #include <string.h> #include <assert.h> #define STB_IMAGE_IMPLEMENTATION #include "stb_image.h" #define STB_IMAGE_WRITE_IMPLEMENTATION #include "stb_image_write.h" //#include "...
ast-dump-openmp-target-parallel-for.c
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fopenmp -ast-dump %s | FileCheck --match-full-lines -implicit-check-not=openmp_structured_block %s void test_one(int x) { #pragma omp target parallel for for (int i = 0; i < x; i++) ; } void test_two(int x, int y) { #pragma omp target parallel for for (int i ...
pem_fmt_plug.c
/* PEM (PKCS #8) cracker. * * This software is Copyright (c) 2015, Dhiru Kholia <kholia at kth.se>, * and it is hereby released to the general public under the following terms: * Redistribution and use in source and binary forms, with or without modification, * are permitted. * * This code may be freely used and...
DeclOpenMP.h
//===- DeclOpenMP.h - Classes for representing OpenMP directives -*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===--------------------------...