source
stringlengths
3
92
c
stringlengths
26
2.25M
task_multiple_producer_omp.c
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil ; -*- */ /* * See COPYRIGHT in top-level directory. */ #include <assert.h> #include <omp.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> #define NUM_TASKS 5000000 #define NUM_REPS 1 #define USLEEP usleep(100); /* Pragma om...
concattest5.c
#include <stdlib.h> #include "concattest5.h" void concattest5(float* v,int m,int n,float*output){ #pragma omp parallel for for (int H8 = 0; H8 < ((n) + (64) - 1 ) / (64); H8++) { for (int H9 = 0; H9 < ((m) + (64) - 1 ) / (64); H9++) { for (int H16 = 0; H16 < 1; H16++) { for (int H17 = 0; H17 < 64; H17++) { ...
krb5pa-sha1_fmt_plug.c
/* * Kerberos 5 "PA ENC TIMESTAMP" by magnum (modified by Dhiru) * * Pcap file -> input file: * 1. tshark -r capture.pcapng -T pdml > ~/capture.pdml * 2. krbng2john.py ~/capture.pdml > krb5.in * 3. Run john on krb5.in * * http://www.ietf.org/rfc/rfc4757.txt * http://www.securiteam.com/windowsntfocus/5BP0H0A6K...
GB_unop__trunc_fp32_fp32.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...
colorspace.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
symv_x_csc_u_lo.c
#include "alphasparse/kernel.h" #ifdef _OPENMP #include <omp.h> #endif #include "alphasparse/util.h" #include <memory.h> static alphasparse_status_t symv_csc_u_lo_unroll(const ALPHA_Number alpha, const ALPHA_SPMAT_CSC *A, const ALPHA_Number *x, const ALPHA_Number beta, ALPHA_Number *y) { // m=...
nqueens-1.c
/* { dg-do run } */ /* { dg-require-effective-target tls_runtime } */ #include <omp.h> #include <stdio.h> #include <string.h> #include <stdlib.h> int cnt; #pragma omp threadprivate (cnt) void nqueens (char *a, int n, int pos) { /* b[i] = j means the queen in i-th row is in column j. */ char b[pos + 1]; int i,...
grad.c
/* Author: Mohammed Al Farhan Email: mohammed.farhan@kaust.edu.sa */ #include <stdio.h> #include <string.h> #include <stdint.h> #include <omp.h> #include "inc/ktime.h" #include "inc/geometry.h" #include "inc/ker/phy.h" /* Calculates the residual */ void compute_grad(struct grad *restrict grad) { struct ktim...
GB_unaryop__lnot_uint16_uint16.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http...
taskloop-1.c
/* { dg-do run } */ /* { dg-options "-O2 -fopenmp -std=c99" } */ int q, r, e; __attribute__((noinline, noclone)) void foo (long a, long b) { #pragma omp taskloop lastprivate (q) nogroup for (long d = a; d < b; d += 2) { q = d; if (d < 2 || d > 6 || (d & 1)) #pragma omp atomic e |= 1; } } ...
pi.c
#include <stdio.h> #include <stdlib.h> #include <omp.h> #define quantity 10000000 /* To calculate pi, the integral defined between 0 and 1 of (4/1 + x ^ 2) dx = pi was used Numerically, this is nothing more than the summation of i which goes from 1 to N of (4/1 + [(i - 1/2) h] ^ 2) = pi */ int main() { lo...
nodal_residualbased_elimination_builder_and_solver_continuity_for_FSI.h
// | / | // ' / __| _` | __| _ \ __| // . \ | ( | | ( |\__ ` // _|\_\_| \__,_|\__|\___/ ____/ // Multi-Physics // // License: BSD License // Kratos default license: kratos/license.txt // // Main authors: Riccardo Rossi, Alessandro...
functions.h
/* * This file is part of Quantum++. * * MIT License * * Copyright (c) 2013 - 2018 Vlad Gheorghiu (vgheorgh@gmail.com) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restr...
linAlgNorm2.c
/* The MIT License (MIT) Copyright (c) 2017 Tim Warburton, Noel Chalmers, Jesse Chan, Ali Karakus Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation t...
Stmt.h
//===- Stmt.h - Classes for representing statements -------------*- 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 // //===---------------------------...
omp_parallel_for_private.c
<ompts:test> <ompts:testdescription>Test which checks the omp parallel for private directive.</ompts:testdescription> <ompts:ompversion>2.0</ompts:ompversion> <ompts:directive>omp parallel for private</ompts:directive> <ompts:dependences>omp parallel for reduction,omp flush</ompts:dependences> <ompts:testcode> #include...
plot_layouts.c
/** * This file is a container for all plotting layout algorithms * * c Ronny Lorenz * The ViennaRNA Package */ #include <config.h> #include <stdio.h> #include <stdlib.h> #include <math.h> #include "utils.h" #include "plot_layouts.h" #ifdef _OPENMP #include <omp.h> #endif #define PUBLIC #define PRIVATE stat...
GB_unaryop__one_fp32_fp32.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
amdgcn_openmp_device_math.c
// RUN: %clang_cc1 -internal-isystem %S/Inputs/include -x c -fopenmp -triple x86_64-unknown-unknown -fopenmp-targets=amdgcn-amd-amdhsa -emit-llvm-bc %s -o %t-host.bc // RUN: %clang_cc1 -internal-isystem %S/../../lib/Headers/openmp_wrappers -include __clang_openmp_device_functions.h -internal-isystem %S/../../lib/Header...
GB_binop__isge_uint16.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
main.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <float.h> #include <math.h> #ifdef _OPENMP # include <omp.h> #endif #include "main.h" #define min(a, b) ((a<b)?a:b) #define max(a, b) ((a>b)?a:b) void parse(int argc, char* argv[], struct user_parameters* params) { int i; for(i=1; i<argc...
SparseOP.h
/* * SparseOP.h * * Created on: Jul 20, 2016 * Author: mason */ #ifndef SPARSEOP_H_ #define SPARSEOP_H_ #include "MyLib.h" #include "Alphabet.h" #include "Node.h" #include "Graph.h" #include "SparseParam.h" // for sparse features class SparseParams { public: SparseParam W; PAlphabet elems; i...
SoftmaxLoss.h
#ifndef SOFTMAXLOSS_H #define SOFTMAXLOSS_H #include <Eigen/Dense> #include "multinomial.h" #include "util.h" namespace nplm { // is this cheating? using Eigen::Matrix; using Eigen::MatrixBase; using Eigen::Dynamic; ///// Softmax layer plus log-loss function. enum loss_function_type { LogLoss, NCELoss, InvalidLos...
trsm_x_csc_u_hi_row.c
#include "alphasparse/opt.h" #include "alphasparse/kernel.h" #include "alphasparse/util.h" alphasparse_status_t ONAME(const ALPHA_Number alpha, const ALPHA_SPMAT_CSC *A, const ALPHA_Number *x, const ALPHA_INT columns, const ALPHA_INT ldx, ALPHA_Number *y, const ALPHA_INT ldy) { const ALPHA_INT m = A->rows; con...
requantize_leakyrelu_pack4.h
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2021 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 ...
mpm_boundary_rotation_utility.h
// | / | // ' / __| _` | __| _ \ __| // . \ | ( | | ( |\__ \. // _|\_\_| \__,_|\__|\___/ ____/ // Multi-Physics // // License: BSD License // Kratos default license: kratos/license.txt // // Main authors: Bodhinanda Chandra // #ifndef KRATOS_MPM_BOUND...
DRB064-outeronly2-orig-no.c
/* Copyright (C) 1991-2018 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it andor modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the L...
deconvolution_pack16.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__bset_uint8.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX...
c_jacobi02.c
/* *********************************************************************** This program is part of the OpenMP Source Code Repository http://www.pcg.ull.es/ompscr/ e-mail: ompscr@etsii.ull.es Copyright (c) 2004, OmpSCR Group All rights reserved. Redistribution and use in source and ...
SpecialPurposeNodes.h
// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE.md file in the project root for full license information. // #pragma once #include "Basics.h" #include "ComputationNode.h" #include "gammacalculation.h" #include "NonlinearityNodes.h" #include "latticearchive.h" #include...
GradientImageFilter.h
/* * MIT License * * Copyright (c) 2018-2019 Benjamin Köhler * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, c...
16_primes-par2.c
#include <stdio.h> #include <stdlib.h> #include <math.h> int main(int argc, char **argv) { // quantos numeros primos entre 1 e N ? unsigned long n = 99999; unsigned long aux = 2; unsigned long primes = 0; //Escalonamento dinamico: cada thread executa uma iteração (fcfs) #pragma omp parallel for firstprivate(a...
omp2.c
// RUN: mlir-clang %s --function=* -fopenmp -S | FileCheck %s void square2(double** x, int sstart, int send, int sinc, int tstart, int tend, int tinc) { #pragma omp parallel for collapse(2) for(int i=sstart; i < send; i+= sinc) { for(int j=tstart; j < tend; j+= tinc) { x[i][j] = i + j; } } ...
ResNet-18_CPU_cifar.c
/* Pretrained ResNet-18 Convolutional Neural Network in C language and OpenMP API GitHUB Page: https://github.com/jcanore/vgg16 Author: Jack/jocare Compilation: gcc -O3 ResNet-18_CPU_cifar.c -lm -fopenmp -o ResNet-18_CPU_cifar Usage: ResNet-18_CPU_cifar <weights_path> <file_with_list_of_images> <output file> <out...
yescrypt-simd_c.h
/*- * Copyright 2009 Colin Percival * Copyright 2012-2014 Alexander Peslyak * 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 copy...
interpolation_v2.c
//------------------------------------------------------------------------------------------------------------------------------ // Samuel Williams // SWWilliams@lbl.gov // Lawrence Berkeley National Lab //------------------------------------------------------------------------------------------------------------------...
core_dpotrf.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/core_blas/core_zpotrf.c, normal z -> d, Fri Sep 28 17:38:22 2018 * **/ #include <plasma_core_blas.h> #include "pla...
base_mortar_criteria.h
// KRATOS ___| | | | // \___ \ __| __| | | __| __| | | __| _` | | // | | | | | ( | | | | ( | | // _____/ \__|_| \__,_|\___|\__|\__,_|_| \__,_|_| MECHANICS // // License: BSD License // ...
v2_cho.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <omp.h> extern "C" void cholesky_dll(double *A, double *L, int n); void gemm_ATA(double *A, double *C, int n) { for(int i=0; i<n; i++) { for(int j=0; j<n; j++) { double sum = 0; for(int k=0; k<n; k++) { sum += A[i*n+...
round_ref.c
/* * 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 ma...
laplace2d.c
/* * Copyright 2012 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 ...
postprocess.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <complex.h> #include <math.h> #include <assert.h> #include <fcntl.h> #include <time.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include "vars.h" double deform( double * rho , int nxyz , Lattice_arrays * latt_coords , double ...
strassen.c
/**********************************************************************************************/ /* This program is part of the Barcelona OpenMP Tasks Suite */ /* Copyright (C) 2009 Barcelona Supercomputing Center - Centro Nacional de Supercomputacion */ /* Copyright (C) 2009 Univer...
quicksort.c
/* C implementation QuickSort from http://w...content-available-to-author-only...s.org/quick-sort/ */ #include<stdio.h> #include<stdlib.h> #include<omp.h> /* SPEED UP: 3.18 TEMPO SEQUENCIAL (omp_get_wtime): 2.049 seconds TEMPO PARALELO (omp_get_wtime): 0.644 seconds */ // A utility function to swap two elements...
convolutiondepthwise_5x5.h
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2018 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 ...
DRB097-target-teams-distribute-orig-no.c
/* Copyright (c) 2017, Lawrence Livermore National Security, LLC. Produced at the Lawrence Livermore National Laboratory Written by Chunhua Liao, Pei-Hung Lin, Joshua Asplund, Markus Schordan, and Ian Karlin (email: liao6@llnl.gov, lin32@llnl.gov, asplund1@llnl.gov, schordan1@llnl.gov, karlin1@llnl.gov) LLNL-CODE-73214...
bml_norm_ellpack_typed.c
#include "../../macros.h" #include "../../typed.h" #include "../bml_norm.h" #include "../bml_parallel.h" #include "../bml_types.h" #include "bml_norm_ellpack.h" #include "bml_types_ellpack.h" #include <complex.h> #include <math.h> #include <stdlib.h> #include <string.h> #ifdef _OPENMP #include <omp.h> #endif /** Cal...
3d7pt.c
/* * Order-1, 3D 7 point stencil * 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) #define MIN(a,b) ((a) < (b) ...
GB_unop__abs_uint8_uint8.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...
updater_quantile_hist.h
/*! * Copyright 2017-2022 by XGBoost Contributors * \file updater_quantile_hist.h * \brief use quantized feature values to construct a tree * \author Philip Cho, Tianqi Chen, Egor Smirnov */ #ifndef XGBOOST_TREE_UPDATER_QUANTILE_HIST_H_ #define XGBOOST_TREE_UPDATER_QUANTILE_HIST_H_ #include <rabit/rabit.h> #inclu...
spray.h
//-------------------------------------------------------------------------------- // Copyright (c) 2017-2020, sanko-shoko. All rights reserved. //-------------------------------------------------------------------------------- #ifndef __SP_RAY_H__ #define __SP_RAY_H__ #include "spcore/spcore.h" namespace sp { ...
statistic.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
header.h
//-------------------------------------------------------------------------// // // // This benchmark is a serial C version of the NPB BT code. This C // // version is developed by the Center for Manycore Programming at Seoul // // Nati...
convolution_sgemm_pack4_bf16s.h
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2021 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 ...
conv_kernel_ref.c
/* * 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 ma...
kthread_hash_realign.c
#include "bbhashdict.h" void constructdictionary_realign(std::bitset<2*readlen> *read, bbhashdict *dict) { // std::bitset<2*readlen> mask[numdict_s]; std::bitset<2*readlen> *mask = (std::bitset<2*readlen>*)alloca(numdict_s * sizeof(std::bitset<2*readlen>)); generateindexmasks(mask, numdict_s); double mm_realtime0...
fracstep_GLS_strategy.h
// | / | // ' / __| _` | __| _ \ __| // . \ | ( | | ( |\__ ` // _|\_\_| \__,_|\__|\___/ ____/ // Multi-Physics // // License: BSD License // Kratos default license: kratos/license.txt // // Main authors: Author Julio Marti. // #if !defined(KRATOS_GLS_S...
rt_dgeam.c
#include "runtime.h" #ifdef PLASMA_WITH_SMP #pragma omp target device (smp) copy_deps #pragma omp task in([lda*n]A) inout([ldb*n]B) label(dgeam) void CORE_dgeam_ompss( PLASMA_enum transA, PLASMA_enum transB, int m, int n, int nb, double alpha, double *A, int lda, ...
compiler_cgen.c
/* Generated by Nim Compiler v0.15.0 */ /* (c) 2016 Andreas Rumpf */ /* The generated code is subject to the original license. */ #define NIM_INTBITS 32 #include "nimbase.h" #include <string.h> typedef struct Tcgen531027 Tcgen531027; typedef struct TNimType TNimType; typedef struct TNimNode TNimNode; typedef struct ...
axpy_ompacc.c
#include "axpy.h" #include "homp.h" #if 0 /* v1: explicit distribution of both data and loop: * the y[0:n], and x[0:n] will be evenly distributed among the ndev devices, * scalars such as a and n will each have a mapped copy in all the devices, loop will also be evenly distributed */ void axpy_mdev_v1(REAL* x, REAL*...
openmp-simd-1.c
/* { dg-do compile } */ /* { dg-options "-fopenmp-simd -fdump-tree-original" } */ #pragma omp declare simd float bar(float b) { return b*b; } void foo(int n, float *a, float *b) { int i; #pragma omp simd for (i = 0; i < n ; i++) a[i] = b[i]; #pragma omp for simd for (i = 0; i < n ; i++) a[i] = b[i]; ...
gather_ref.c
/* * 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 ma...
Common.h
// @Copyright 2007 Kristjan Haule // #ifndef _COMMON_ #define _COMMON_ #include "zeroin.h" #include "average.h" #include <map> #include <vector> #ifdef _STRSTREAM #include <strstream> #endif using namespace std; typedef vector<int>::size_type vint; int Binomial(int n, int m) { int Mf = 1; for (int i=2; i<=m; i++...
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] = i; #pragma omp...
GB_unop__identity_int32_uint64.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...
convolution_1x1.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_unop__cosh_fc32_fc32.c
//------------------------------------------------------------------------------ // GB_unop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http://...
for_misc_messages.c
// RUN: %clang_cc1 -fsyntax-only -fopenmp -triple x86_64-unknown-unknown -verify %s -Wuninitialized // RUN: %clang_cc1 -fsyntax-only -fopenmp-simd -triple x86_64-unknown-unknown -verify %s -Wuninitialized void xxx(int argc) { int x; // expected-note {{initialize the variable 'x' to silence this warning}} #pragma om...
kmeans_clustering.balance.c
#include "hclib.h" extern int ____num_tasks[32]; /*****************************************************************************/ /*IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. */ /*By downloading, copying, installing or using the software you agree */ /*to this license. If you do n...
deconvolution_4x4.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 ...
Sema.h
//===--- Sema.h - Semantic Analysis & AST Building --------------*- 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 // //===---------------------------...
convolutiondepthwise_3x3_pack8_fp16.h
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2019 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 ...
common_cpu.h
#ifndef COMMON_CPU #define COMMON_CPU #if defined(_OPENMP) #include <omp.h> #endif template <typename FunctorT> void iterate_cpu(FunctorT functor, int N) { for(int idx = 0; idx < N; ++idx) { functor(idx); } } template <typename FunctorT> void iterate_omp_cpu(FunctorT functor, int N, int n_threads) { #if defi...
NLmean_propag2dirs_sspacing6_tspacing4_sim12_acc12_neighbor5_tau0100.c
/* * compile: gcc -O3 -std=c99 -o [filename_out] -fopenmp [filename].c -lm -I/usr/include/netcdf-3/ -L/usr/lib64/ -lnetcdf -lnetcdf_c++ * in the terminal: export OMP_NUM_THREADS=3 */ #include<stdio.h> #include <math.h> #include <stdlib.h> #include <string.h> #include <netcdf.h> #include <omp.h> /* This is the name ...
tensor_cpu-inl.h
/*! * Copyright (c) 2014 by Contributors * \file tensor_cpu-inl.h * \brief implementation of CPU host code * \author Bing Xu, Tianqi Chen */ #ifndef MSHADOW_TENSOR_CPU_INL_H_ #define MSHADOW_TENSOR_CPU_INL_H_ #include <cstring> #include <functional> #include <utility> #include <vector> #include "./base.h" #includ...
GB_unop__cimag_fp32_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...
sw_pluto.h
void sw_pluto(){ printf("- pluto [16x16x16] - \n\n"); /* We do not support C11 <threads.h>. */ int t1, t2, t3, t4, t5, t6, t7; int lb, ub, lbp, ubp, lb2, ub2; register int lbv, ubv; /* Start of CLooG code */ if (N >= 1) { lbp=0; ubp=floord(N,16); #pragma omp parallel for private(lbv,ubv,t3,t4,t5,t6,t7) fo...
GB_unop__floor_fc32_fc32.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...
tile.c
/****************************************************************************** * INCLUDES *****************************************************************************/ #include "tile.h" #include "sort.h" #include "timer.h" #include "thd_info.h" #include "thread_partition.h" #include "util.h" /*******************...
Compute.h
#ifndef COMPUTE_H_INCLUDED #define COMPUTE_H_INCLUDED #include <stdio.h> #include <stdlib.h> #include <SDL2/SDL.h> #include <math.h> #include <omp.h> #include <time.h> #include <immintrin.h> #include "Grad.h" inline static __m256d fsqrt(__m256d val) { return _mm256_castsi256_pd(0x1ff7770000000000+(_mm25...
tree-dependencias.c
#include <malloc.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include "omp.h" #include <sys/time.h> double getusec_() { struct timeval time; gettimeofday(&time, NULL); return ((double)time.tv_sec * (double)1e6 + (double)time.tv_usec); } #define START_COUNT_TIME stamp ...
GB_binop__plus_fc64.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
array2D.h
/* * This file is part of RawTherapee. * * Copyright (c) 2011 Jan Rinze Peterzon (janrinze@gmail.com) * * RawTherapee is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License...
accelerate.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
image.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
GB_unop__identity_fp32_int32.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__band_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-...
agmgSetup.c
/* The MIT License (MIT) Copyright (c) 2017 Tim Warburton, Noel Chalmers, Jesse Chan, Ali Karakus, Rajesh Gandham Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including w...
vednnConvolutionBackwardData.c
#include "vednnConvolutionBackwardData.h" #include <stdint.h> #ifdef VEDNN_USE_OPENMP #include <omp.h> extern int __vednn_omp_num_threads ; #endif static inline vednnError_t vednnConvolutionBackwardData_wrapper( vednnConvBackwardData_t pFunc, const vednnTensorParam_t *pParamGradOut, const void *pD...
schrodinger.c
/*********************************************************************************/ /* */ /* Animation of Schrödinger equation in a planar domain */ /* ...
master.c
// RUN: %libomp-compile-and-run | FileCheck %s // REQUIRES: ompt // GCC generates code that does not call the runtime for the master construct // XFAIL: gcc #define USE_PRIVATE_TOOL 1 #include "callback.h" #include <omp.h> int main() { int x = 0; #pragma omp parallel num_threads(2) { #pragma omp master { ...
sphere.h
#ifndef batoid_sphere_h #define batoid_sphere_h #include "surface.h" namespace batoid { #if defined(BATOID_GPU) #pragma omp declare target #endif class Sphere : public Surface { public: Sphere(double R); ~Sphere(); virtual const Surface* getDevPtr() const override; ...
openmp-ex32.c
/* Even named critical regions can't prevent deadlocks() */ #include <stdio.h> #include <omp.h> int main(void) { #pragma omp parallel { int id = omp_get_thread_num(); #pragma omp critical(A) { printf("I am thread %d and I am in A, waiting for B...",id); fflush(stdout); #pragma omp cri...
omp_for_firstprivate.c
<ompts:test> <ompts:testdescription>Test which checks the omp for firstprivate clause by counting up a variable in a parallelized loop. Each thread has a firstprivate variable (1) and an variable (2) declared by for firstprivate. First it stores the result of its last iteration in variable (2). Then it stores the value...
OnDiscMSExperiment.h
// -------------------------------------------------------------------------- // OpenMS -- Open-Source Mass Spectrometry // -------------------------------------------------------------------------- // Copyright The OpenMS Team -- Eberhard Karls University Tuebingen, // ETH Zurich, and Freie Universit...
csr_matvec.c
/*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute...
filter.c
/* Copyright (c) 2016, NVIDIA CORPORATION. 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 condi...
convolution_packn.h
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2021 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 ...
OMPExceptionCatcher.h
/** @file OMPExceptionCatcher.h * @author Mark J. Olah (mjo\@cs.unm DOT edu) * @date 2019 * @copyright See LICENSE file * @brief A lightweight class for managing C++ exception handling strategies for OpenMP methods. * * OpenMP code must catch any exceptions that may have been thrown before exiting the OpenMP blo...