source
stringlengths
3
92
c
stringlengths
26
2.25M
csr_matvec.c
/****************************************************************************** * Copyright (c) 1998 Lawrence Livermore National Security, LLC and other * HYPRE Project Developers. See the top-level COPYRIGHT file for details. * * SPDX-License-Identifier: (Apache-2.0 OR MIT) ***************************************...
GB_unop__bnot_int64_int64.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...
morphology.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
main.c
// Copyright (C) 2016, Jérémy Anger <jeremy.anger@cmla.ens-cachan.fr> #include <stdlib.h> #include <stdio.h> #include <time.h> #include "iio.h" #include "fba.h" #include "consistent_registration.h" int main(int argc, char** argv) { if (argc < 9) { fprintf(stderr, "usage:\n\t%s M W p downsampling register ...
ssor.c
//-------------------------------------------------------------------------// // // // This benchmark is an OpenMP C version of the NPB LU code. This OpenMP // // C version is developed by the Center for Manycore Programming at Seoul // // Nati...
ten_tusscher_2004_epi_S3_2.c
//Original Ten Tusscher #include <assert.h> #include <stdlib.h> #include "ten_tusscher_2004_epi_S3_2.h" GET_CELL_MODEL_DATA(init_cell_model_data) { assert(cell_model); if(get_initial_v) cell_model->initial_v = INITIAL_V; if(get_neq) cell_model->number_of_ode_equations = NEQ; } //TODO:...
omp-simd-clone.c
/* OMP constructs' SIMD clone supporting code. Copyright (C) 2005-2018 Free Software Foundation, Inc. This file is part of GCC. GCC 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, or (at your ...
utils.h
#include <filesystem> #include <iostream> #include <fstream> #include <queue> #include <chrono> #include <unordered_set> #include "hnswlib.h" #include "stopwatch.h" using namespace std; using namespace hnswlib; /***************************************************** * I/O functions for fvecs and ivecs * Reference...
GB_unaryop__ainv_int16_int32.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
vect-simd-clone-2.c
/* { dg-require-effective-target vect_simd_clones } */ /* { dg-additional-options "-fopenmp-simd" } */ /* { dg-additional-options "-mavx" { target avx_runtime } } */ #include "tree-vect.h" #ifndef N #define N 1024 #endif int array[N] __attribute__((aligned (32))); #pragma omp declare simd simdlen(4) notinbranch ali...
CostModel.h
#ifndef pixelbridge_CostModel_h #define pixelbridge_CostModel_h /** * \file CostModel.h * * \brief This file holds the implementation of the CostModel. * * This file holds the implementation of the CostModel. The CostModel is used * by nDDI implementations to register the cost of the various operations triggered...
mandel.c
/* ** PROGRAM: Mandelbrot area ** ** PURPOSE: Program to compute the area of a Mandelbrot set. ** Correct answer should be around 1.510659. ** WARNING: this program may contain errors ** ** USAGE: Program runs without input ... just run the executable ** ** HISTORY: Writt...
wpapsk_fmt_plug.c
/* * This software is Copyright (c) 2012 Lukas Odzioba <ukasz at openwall dot net> * 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. * * Code is based on Aircrack-ng source * * SSE2 co...
Network.h
/* * Network.h * * Created by Guido Novati on 30.10.18. * Copyright 2018 ETH Zurich. All rights reserved. * */ #pragma once #include "Layers.h" struct Network { std::mt19937 gen; // Vector of layers, each defines a forward and bckward operation: std::vector<Layer*> layers; // Vector of parameters of...
__clang_cuda_cmath.h
/*===---- __clang_cuda_cmath.h - Device-side CUDA cmath support ------------=== * * 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 * *===----------------------------...
rt_dsyssq.c
#include "runtime.h" void RT_CORE_dsyssq_f1( Quark *quark, Quark_Task_Flags *task_flags, PLASMA_enum uplo, int n, const double *A, int lda, double *scale, double *sumsq, double *fake, int szeF, int paramF ) { plasma_context_t *plasma; p...
opencl_DES_bs_f_plug.c
/* * This software is Copyright (c) 2012-2015 Sayantan Datta <std2048 at gmail dot com> * 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. * Based on Solar Designer implementation of DES_bs_b....
MatrixECM.c
/* ** ECM - eigenvector centrality mapping using full matrix ** ** G.Lohmann, MPI-KYB, Nov 2018 */ #include <viaio/Vlib.h> #include <viaio/VImage.h> #include <viaio/mu.h> #include <viaio/option.h> #include <gsl/gsl_matrix.h> #include <gsl/gsl_vector.h> #include <gsl/gsl_errno.h> #include <gsl/gsl_cblas.h> #include <g...
cameraData.h
#pragma once #include "lights/light.h" #include "glmInclude.h" #include "util.h" #include "camera.h" #include <iostream> // writing on a text file #include <fstream> #include <algorithm> #include <vector> //for the parallel for #include <execution> //spawns all the rays in the scene class CameraData : public Camer...
ej5.c
#include <stdio.h> #include <stdlib.h> #include <omp.h> #include <unistd.h> #define TAM 1024 float* asignarMemoria(){ float *a = (float *) malloc(sizeof(float)*TAM); return a; } void asignarValor(float *v){ for(int i=0;i<TAM;++i) *(v+i)=1.0f; } int main() { double start; int numthreads; float *vector = asig...
biology_module_op.h
// ----------------------------------------------------------------------------- // // Copyright (C) The BioDynaMo Project. // 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. // // See the LICENSE file distrib...
kvstore_dist_server.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 ...
core_dtradd.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_ztradd.c, normal z -> d, Fri Sep 28 17:38:23 2018 * **/ #include <plasma_core_blas.h> #include "pla...
DRB033-truedeplinear-orig-yes.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...
convolution_pack8_fp16s.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 ...
ClusterCreator.h
//class for running clustering algorithm on Charts struct ClusterCreator { //takes a chart id map that was created by grid/octree clusters, and creates a list of Chart objects static uint32_t create_chart_clusters_from_grid_clusters(Polyhedron &P, const double cost_threshold , ...
sicm_low.c
#include "sicm_low.h" #include <dirent.h> #include <errno.h> #include <fcntl.h> #include <math.h> #include <numa.h> #include <numaif.h> #include <sched.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> #include <unistd.h> #include <sys/mman.h> // https://www.mail-archive.com/devel@lists.o...
GB_binop__bxor_int16.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
ompthreads-NOT-WORKING-YET.c
///TAFFO_TEST_ARGS #include "omp.h" #include <stdio.h> int main(void) { float a; #pragma omp parallel { __attribute__((annotate("no_float"))) float x=0.333333; a = x + omp_get_thread_num(); printf("thread %f\n", a); } }
randomgridsearch.h
// // Created by Xinyu Zhang on 4/4/21. // #ifndef COSAN_RANDOMGRIDSEARCH_H #define COSAN_RANDOMGRIDSEARCH_H #include<cosan/selection/crossvalidation.h> #include<cosan/selection/selection.h> namespace Cosan{ template<typename NumericType, Derived<CosanModel> Model, Derived<CosanMetric<Nume...
mm2E2T4.c
#include <stdlib.h> #include <stdio.h> #include <unistd.h> #include <errno.h> #include <sys/types.h> #include <memory.h> #include <malloc.h> #include <string.h> #include <omp.h> //#define SIZE 500 /* TO RUN: " ./mm2E2T4 <array_size> <num_threads>" EXAMPLE: " ./mm2E2T4 500 4" */ int main(int argc, char* argv[]) { ...
GB_transplant.c
//------------------------------------------------------------------------------ // GB_transplant: replace contents of one matrix with another //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http://suite...
SumaVectoresSections.c
/* SumaVectoresSection.c Suma de dos vectores utilizando la directiva sections: v3 = v1 + v2 Para compilar usar (-lrt: real time library): gcc -O2 SumaVectores.c -o SumaVectores –lrt gcc -O2 –S SumaVectores.c –lrt //para generar el código ensamblador Para ejecutar use: SumaVectoresC longitud */ #inc...
task4_4096_solution.c
#include <math.h> #include <string.h> #include "timer.h" #define NN 4096 #define NM 4096 float A[NN][NM]; float Anew[NN][NM]; int main(int argc, char** argv) { const int n = NN; const int m = NM; const int iter_max = 1000; const double tol = 1.0e-6; double error = 1.0; memset(A,...
normal_gap_process.h
// KRATOS ___| | | | // \___ \ __| __| | | __| __| | | __| _` | | // | | | | | ( | | | | ( | | // _____/ \__|_| \__,_|\___|\__|\__,_|_| \__,_|_| MECHANICS // // License: BSD License // license: StructuralMechanicsApplicat...
shear.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
looptc_c4.c
#include <string.h> void deinterleave(char *page, char *transposed, const int ntabs, const int nchannels, const int ntimes, const int padded_size) { int tab; for (tab = 0; tab < ntabs; tab++) { // unroll time dimension 4x int time; for (time = 0; time < ntimes; time+=4) { // build temporary arr...
GB_binop__second_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__bnot_int16_int16.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...
symm_x_coo_n_lo_row.c
#include "alphasparse/kernel.h" #include "alphasparse/util.h" #define CACHELINE 64 alphasparse_status_t ONAME(const ALPHA_Number alpha, const ALPHA_SPMAT_COO *mat, const ALPHA_Number *x, const ALPHA_INT columns, const ALPHA_INT ldx, const ALPHA_Number beta, ALPHA_Number *y, const ALPHA_INT ldy) { ALPHA_INT m = mat...
Searching.202008062049.computation_quota.bak.h
// // Created by Zhen Peng on 8/6/2020. // #ifndef BATCH_SEARCHING_SEARCHING_H #define BATCH_SEARCHING_SEARCHING_H #include <vector> #include <boost/dynamic_bitset.hpp> //#include <boost/sort/sort.hpp> #include <iostream> #include <fstream> #include <unordered_map> #include <immintrin.h> #include <cstring> #include <...
rose_matrixVectormultiply.c
/* Naive matrix-vector multiplication By C. Liao */ #define N 1000 #include "omp.h" int i; int j; int k; double a[1000][1000]; double v[1000]; double v_out[1000]; int mmm() { #pragma omp parallel for private (i,j) for (i = 0; i <= 999; i += 1) { float sum = 0.0; #pragma omp parallel for private (j) redu...
pr79429.c
/* PR c++/79429 */ #pragma omp target /* { dg-error "expected declaration specifiers" } */
expected_output.c
#include <stdio.h> #include <unistd.h> #include <string.h> #include <math.h> #include <polybench.h> #include "jacobi-2d.h" /** * This version is stamped on May 10, 2016 * * Contact: * Louis-Noel Pouchet <pouchet.ohio-state.edu> * Tomofumi Yuki <tomofumi.yuki.fr> * * Web address: http://polybench.sourceforge.net */ ...
debug_so12_acoustic.c
#define _POSIX_C_SOURCE 200809L #include "stdlib.h" #include "math.h" #include "sys/time.h" #include "xmmintrin.h" #include "pmmintrin.h" #include <stdio.h> #include "omp.h" #define min(a, b) (((a) < (b)) ? (a) : (b)) #define max(a, b) (((a) > (b)) ? (a) : (b)) struct dataobj { void *restrict data; int *size; in...
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 ...
gbdt.h
/*! * Copyright (c) 2016 Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See LICENSE file in the project root for license information. */ #ifndef LIGHTGBM_BOOSTING_GBDT_H_ #define LIGHTGBM_BOOSTING_GBDT_H_ #include <string> #include <algorithm> #include <cstdio> #include <fstream> #inc...
erotima_2a-j.c
#include <stdio.h> #include <math.h> #include <getopt.h> #include <stdlib.h> #include <sys/time.h> #include <omp.h> #include <string.h> #define MIN_NUM_OF_NEURONS (1L) #define DEF_NUM_OF_NEURONS (1000L) #define MIN_NUM_OF_NEIGHBORS (0L) #define DEF_NUM_OF_NEIGHBORS (300L) #define DEF_DT (1.0e-04) #define DE...
IF97_Region5.c
// Copyright Martin Lord 2014-2014. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // IAPWS-IF97 Region 5: High Temperature Region equations /* ****************************************...
a.35.2.c
/* { dg-do compile } */ void work (int, int); void work1 (int i, int n) { int j; /* incorrect nesting of loop regions */ #pragma omp for for (j = 0; j < n; j++) work (i, j); } void wrong2 (int n) { #pragma omp parallel default(shared) { int i; #pragma omp for for (i = 0; i < n; i++) work1 (...
conv3x3s1_winograd64_pack4_neon_AoA.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 ...
drt_dft_solver.h
#ifndef _DRT_DFT_SOLVER_ #define _DRT_DFT_SOLVER_ #include <complex> #include "toefl/toefl.h" #include "blueprint.h" #include "equations.h" namespace toefl { /*! @brief Solver for dirichlet type x-boundary conditions of the toefl equations. * @ingroup solvers */ template< size_t n> class DRT_DFT_Solver { public...
ft.c
/*-------------------------------------------------------------------- NAS Parallel Benchmarks 2.3 OpenMP C versions - FT This benchmark is an OpenMP C version of the NPB FT code. The OpenMP C versions are developed by RWCP and derived from the serial Fortran versions in "NPB 2.3-serial" developed by NAS...
pr36802-2.c
/* PR middle-end/36802 */ extern void abort (void); extern int omp_set_dynamic (int); extern void omp_set_nested (int); extern int omp_get_num_threads (void); int q; int foo (int k) { int i = 6, n = 0; omp_set_dynamic (0); omp_set_nested (1); #pragma omp parallel shared (i) num_threads (3) { int l; ...
pruned_landmark_labeling.h
#ifndef PRUNED_LANDMARK_LABELING_H_ #define PRUNED_LANDMARK_LABELING_H_ #include <malloc.h> #include <stdint.h> #include <xmmintrin.h> #include <sys/time.h> #include <climits> #include <iostream> #include <sstream> #include <string> #include <vector> #include <stack> #include <queue> #include <set> #include <algorith...
r_direct_o1.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 requi...
l7_setup.c
/* * Copyright (c) 2011-2019, Triad National Security, LLC. * All rights Reserved. * * CLAMR -- LA-CC-11-094 * * Copyright 2011-2019. Triad National Security, LLC. This software was produced * under U.S. Government contract 89233218CNA000001 for Los Alamos National * Laboratory (LANL), which is operated...
activations.c
#include "activations.h" #include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> char *get_activation_string(ACTIVATION a) { switch(a){ case LOGISTIC: return "logistic"; case LOGGY: return "loggy"; case RELU: return "relu"; c...
hello_omp.c
#include <stdio.h> #include <omp.h> int main(int argc, char** argv){ #pragma omp parallel { printf("Hello from process: %d\n", omp_get_thread_num()); } return 0; }
ft.c
/*-------------------------------------------------------------------- NAS Parallel Benchmarks 2.3 OpenMP C versions - FT This benchmark is an OpenMP C version of the NPB FT code. The OpenMP C versions are developed by RWCP and derived from the serial Fortran versions in "NPB 2.3-serial" developed by NAS...
visual-effects.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
Visualization.h
#ifndef _ecc_visualization_hxx #define _ecc_visualization_hxx #include <algorithm> #include <GetSet/GetSetObjects.h> #include <LibEpipolarConsistency/EpipolarConsistencyRadonIntermediate.h> #include <LibUtilsQt/Figure.hxx> #include <LibUtilsQt/Plot.hxx> #include <LibUtilsQt/QGLPlot3D.h> #include <LibOpterix/Opterix...
loop_mesh_builder.h
/** * @file loop_mesh_builder.h * * @author Simon Stupinsky <xstupi00@stud.fit.vutbr.cz> * * @brief Parallel Marching Cubes implementation using OpenMP loops * * @date 15.12.2019 10:00 **/ #ifndef LOOP_MESH_BUILDER_H #define LOOP_MESH_BUILDER_H #include <vector> //#include <map> #include "base_mesh_...
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 ...
CPhotoconsistencyOdometry.h
/* * Photoconsistency-Visual-Odometry * Multiscale Photoconsistency Visual Odometry from RGBD Images * Copyright (c) 2012-2013, Miguel Algaba Borrego * * http://code.google.com/p/photoconsistency-visual-odometry/ * * All rights reserved. * * Redistribution and use in source and binary forms, with or with...
VectorizationOMP.c
#include <math.h> #include <omp.h> #include <stdio.h> #include <stdlib.h> #define N 100000 #define REPETITIONS 100000 int main(int argc, void **argv) { int n; // Get arguments if (argc == 2) { n = atoi(argv[1]); } else { n = N; fprintf(stderr, "WARN: No args, using default val...
ll.c
#include <stdio.h> #include <stdlib.h> #include <omp.h> #include <time.h> int CHUNK_SIZE = 32; const int MAX_FIB = 48; // for numbers > 47, fib(n) overflows integer range typedef struct Node { long data; long fib_data; struct Node *next; } Node; long fib(long i) { long ret = 0, temp = 1; long j; ...
GB_binop__first_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-...
GB_binop__isge_int8.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX...
fx.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
normal.c
// RUN: %libomp-compile-and-run | FileCheck %s // RUN: %libomp-compile-and-run | %sort-threads \ // RUN: | FileCheck --check-prefix=THREADS %s // REQUIRES: ompt #include "callback.h" int main() { #pragma omp parallel num_threads(4) { print_ids(0); print_ids(1); } print_fuzzy_addre...
interloc.h
/* * @Author: Philippe Dales * @Date: 2018-07-26 14:26:23 * @Last Modified by: Philippe Dales * @Last Modified time: 2018-07-26 14:26:23 */ #ifndef INTERLOC_H #define INTERLOC_H #include <cstring> #include <omp.h> #include <fftw3.h> #include <cstddef> #include "xseis/structures.h" #include "xseis/process.h" #incl...
p1.c
#include <stdio.h> #include <omp.h> #include <time.h> #define INTERVALS 1000000 int main(int arc, char* argv[]) { double area; /* The final anser */ double ysum; /* Sum of rectangle heights */ double xi; /* Midpoint of interval */ int i; ysum = 0.0; omp_set_num_threads(4); double begin = omp_get_wtime();...
dataracetest3.c
// data race EXISTS int main() { double a[10][10]; for(int d=0;d<1;d++) { int j; #pragma omp parallel for private(j) for(int i=0;i<10;i++) { for(j=0;j<10;j++) { a[i][j]=0; #pragma ivdep #pragma vector always #pragma simd for(int k=0;k<10;k++) { a[j][k]=1; } } ...
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) #...
tinyexr.h
/* Copyright (c) 2014 - 2017, 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...
zboxloop.c
/****************************************************************************** * Copyright (c) 1998 Lawrence Livermore National Security, LLC and other * HYPRE Project Developers. See the top-level COPYRIGHT file for details. * * SPDX-License-Identifier: (Apache-2.0 OR MIT) ***************************************...
atomic-3.c
/* { dg-do run } */ /* { dg-options "-O0" } */ #include <omp.h> #include <stdlib.h> short e[64]; int g; _Complex double d, f; int num_threads; __attribute__((noinline)) void foo (int x, long long y) { #pragma omp parallel num_threads (4) { int i; #pragma omp barrier for (i = 0; i < 2400; i++) { ...
GB_hyper_prune.c
//------------------------------------------------------------------------------ // GB_hyper_prune: remove empty vectors from a hypersparse Ap, Ah list //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPD...
collision.c
/** * @file collision.c * @brief Collision search routine. * @author Hanno Rein <hanno@hanno-rein.de> * * @details A collision is defined as an overlap between two particles. This * is only an approximation and works only if the timestep is small * enough. More precisely, dt << v / Rp, where v is the typical...
Parser.h
//===--- Parser.h - C Language Parser ---------------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===-------------------------------------------------------...
GB_binop__minus_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-...
Fig_7.15_parPiDivCon.c
#include <omp.h> static long num_steps = 1024 * 1024 * 1024; #define MIN_BLK 1024 * 256 double pi_comp(int Nstart, int Nfinish, double step) { int i, iblk; double x, sum = 0.0, sum1, sum2; if (Nfinish - Nstart < MIN_BLK) { for (i = Nstart; i < Nfinish; i++) { x = (i + 0.5) * step; ...
deconvolution_packn_fp16s.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 ...
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_unaryop__identity_int16_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...
hello.c
#include<stdio.h> #include<omp.h> int main() { int ID = omp_get_thread_num(); printf("ID main : %d\n", ID); #pragma omp parallel { ID = omp_get_thread_num(); printf("Hello(%d)", ID); printf("world!!(%d)\n", ID); } return 0; }
REAL.c
/**************************************************************************** *REAL - Rapid Earthquake Association and Location * *What you need: * 1. Traveltime table for P or/and S waves (dist,dep,P arrival,S arrival ...) * 2. Station information (stlo,stla,net,sta,chan,elev) * 3. Picks at each station and t...
vector.h
#include <iostream> #include <omp.h> template <class I, class T> class Vector { public: I max_print_length = 7; // 构造函数与析构函数 Vector(I length) { this->length = length; this->data = new T[length]; } Vector(const Vector &other) { this->in...
generator_gemm_common.c
/****************************************************************************** ** Copyright (c) 2015-2018, Intel Corporation ** ** All rights reserved. ** ** ** ...
rawSHA256_ng_fmt_plug.c
/* * Copyright 2013, epixoip. * AVX2 support, Copyright (c) 2015 magnum * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that redistribution of source * retains the above copyright. */ #include "arch.h" #if SIMD_COEF_32 #if FMT_EXTERNS_H extern struc...
mxnet_op.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 ...
oskar_dftw_c2c_3d_omp.c
/* * Copyright (c) 2013, The University of Oxford * 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 ...
mxnet_op.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 ...
cg.c
/*-------------------------------------------------------------------- NAS Parallel Benchmarks 3.0 structured OpenMP C versions - CG This benchmark is an OpenMP C version of the NPB CG code. The OpenMP C 2.3 versions are derived by RWCP from the serial Fortran versions in "NPB 2.3-serial" developed by NAS. 3...
elemwise_binary_op.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 ...
GB_unop__atan_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...
3d7pt_var.lbpar.c
#include <omp.h> #include <math.h> #define ceild(n,d) ceil(((double)(n))/((double)(d))) #define floord(n,d) floor(((double)(n))/((double)(d))) #define max(x,y) ((x) > (y)? (x) : (y)) #define min(x,y) ((x) < (y)? (x) : (y)) /* * Order-1, 3D 7 point stencil with variable coefficients * Adapted from PLUTO and Po...
NonlinearSolver_Lambda_LM.h
/* +-----------------------------------+ | | | *** Lambda nonlinear solver *** | | | | Copyright (c) -tHE SWINe- 2012 | | | | NonlinearSolver_Lambd...
GB_unop__identity_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...