source
stringlengths
3
92
c
stringlengths
26
2.25M
edge_coloring.c
#ifdef BUCKET_SORT #include <stdlib.h> #include <string.h> #include <stdint.h> #include <math.h> #include <limits.h> #include <omp.h> #include "allocator.h" #include "geometry.h" #include "bit_map.h" #include "mesh2geo.h" #define VEC_LEN 8 void iecoloring(struct geometry *g) { const uint32_t *ie = g->s->i; const...
dotProduct.h
#pragma once #include <algorithm> #include <omp.h> #include "_cuda.h" #include "ceilDiv.h" #include "sum.h" using std::vector; using std::max; // DOT-PRODUCT // ----------- template <class T> auto dotProduct(T *x, T *y, int N) { T a = T(); for (int i=0; i<N; i++) a += x[i] * y[i]; return a; } template ...
GB_unop__isnan_bool_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...
deprecate.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
simple.c
// RUN: %libomp-compile // RUN: env OMP_DISPLAY_AFFINITY=false %libomp-run | %python %S/check.py -c 'NOTHING' %s // RUN: env OMP_DISPLAY_AFFINITY=true OMP_NUM_THREADS=1 %libomp-run | %python %S/check.py -c 'CHECK' %s // RUN: env OMP_DISPLAY_AFFINITY=true OMP_NUM_THREADS=2 %libomp-run | %python %S/check.py -c 'CHECK-2' ...
hillclimb.c
#define _POSIX_C_SOURCE 200112L #define WIN32_LEAN_AND_MEAN #include <math.h> #include <ctype.h> #include <stdio.h> #include <stdint.h> #include <stdlib.h> #include <string.h> #define HASHN 3 // number of multiplies in hash #define SHIFT_RANGE 1 // radius of shift search #define CONST_RANGE 2 // radius ...
Parser.h
//===--- Parser.h - C Language Parser ---------------------------*- 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 // //===---------------------------...
GB_binop__second_bool.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
3d25pt.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-2, 3D 25 point stencil * Adapted from PLUTO and Pochoir test bench * * Tar...
GB_binop__second_int64.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
fib.ref.c
#include <sys/time.h> #include <time.h> #include <stdio.h> static unsigned long long current_time_ns() { #ifdef __MACH__ clock_serv_t cclock; mach_timespec_t mts; host_get_clock_service(mach_host_self(), CALENDAR_CLOCK, &cclock); clock_get_time(cclock, &mts); mach_port_deallocate(mach_task_self(), c...
GB_unop__identity_int64_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...
ten_tusscher_2004_epi_S2_15.c
//Original Ten Tusscher #include <assert.h> #include <stdlib.h> #include "ten_tusscher_2004_epi_S2_15.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...
sections-2.c
/* { dg-do compile } */ extern void bar(int); void foo(void) { #pragma omp sections bar (0); // { dg-error "expected" } #pragma omp sections { } // { dg-error "expected" } #pragma omp sections { bar (1); } #pragma omp sections { #pragma omp section bar(2); ba...
draw.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
profile.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
mutation.h
/*! * Functions to determine the number of fit mutated genomes that exist * a Hamming distance m (or h) away from a given, fit genome. */ #ifndef _MUTATION_H_ #define _MUTATION_H_ #include <math.h> #ifndef __FITNESS_FUNCTION__ #error "#include a fitness.h before #including mutations.h to ensure evaluate_fitness()...
GB_binop__rdiv_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...
GB_unaryop__abs_fp64_uint16.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_unop__identity_int64_uint32.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__ne_fp64.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__isgt_uint16.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
common.h
#pragma once #include <ATen/ATen.h> #ifdef _OPENMP #include <omp.h> #endif #ifdef __CUDACC__ #include <cuda.h> #include <cuda_runtime.h> #endif #ifdef _MSC_VER #define FORCE_INLINE __forceinline #pragma warning(disable : 4068) #else #define FORCE_INLINE __attribute__((always_inline)) #endif #ifdef __CUDACC__ #defi...
convolution_1x1_pack4_bf16s.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 ...
ParallelJobsOpenMP.h
/* * Copyright (C) 2011 University of Szeged * Copyright (C) 2011 Gabor Loki <loki@webkit.org> * 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...
bicg_teams.c
/** * bicg.c: This file was adapted from PolyBench/GPU 1.0 test suite * to run on GPU with OpenMP 4.0 pragmas and OpenCL driver. * * Web address: http://www.cse.ohio-state.edu/~pouchet/software/polybench/GPU * * Contacts: Marcio M Pereira <mpereira@ic.unicamp.br> * Rafael Cardoso F Sousa <rafael.cardos...
GB_helper.c
//------------------------------------------------------------------------------ // GB_helper.c: helper functions for @GrB interface //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-License-Identifie...
basic.c
#include <stdio.h> #include <stdarg.h> #include <stdlib.h> #include <abt.h> # define KMP_SIZE_T_MAX (0xFFFFFFFFFFFFFFFF) #define TCW_SYNC_8(a,b) (a) = (b) #define TCW_SYNC_PTR(a,b) TCW_SYNC_8((a),(b)) #define TCR_SYNC_8(a) (a) #define TCR_SYNC_PTR(a) ((void *)TCR_SYNC_8(a)) # define VOLATILE_CAST(x) ...
4770.c
// this source is derived from CHILL AST originally from file '/uufs/chpc.utah.edu/common/home/u1142914/lib/ytopt_vinu/polybench/polybench-code/stencils/heat-3d/kernel.c' as parsed by frontend compiler rose void kernel_heat_3d(int tsteps, int n, double A[120 + 0][120 + 0][120 + 0], double B[120 + 0][120 + 0][120 + 0])...
GB_unop__identity_uint64_int16.c
//------------------------------------------------------------------------------ // GB_unop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http://...
GB_binop__div_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...
x86_test_conv_common_utils.h
/* Copyright (c) 2016 Anakin Authors All Rights Reserve. 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 to i...
quick_sect_d.c
#include <stdlib.h> #include <stdio.h> #include <math.h> #include <omp.h> /* OpenMP Parallel Quicksort - Sections with depth checking * Checking for depth allows for nested parallelism. * @author: ANDREW VAILLANCOURT * 2019 */ int partition (int p, int r, int *data){ int x = data[p]; int k = p; ...
templatemath.h
/* * ****************************************************************************** * * * * * * This program and the accompanying materials are made available under the * * terms of the Apache License, Version 2.0 which is available at * * https://www.apache.org/licenses/LICENSE-2.0. * * * * See the NOT...
mlpLayer.c
#include <stdio.h> #include <stdlib.h> #include <math.h> #include "popc.h" #include "cell.h" #include "activation.h" #include "loss.h" #include "optimization.h" //#include "activation.h" #include "ann.h" #include "mlp.h" #include "layer.h" #include "mlpLayer.h" mlpLayerSingleton ptr mlpLayerSingletonNew () { stat...
LAGraph_pagerank3b.c
//------------------------------------------------------------------------------ // LAGraph_pagerank3b: pagerank using a real semiring //------------------------------------------------------------------------------ /* LAGraph: graph algorithms based on GraphBLAS Copyright 2019 LAGraph Contributors. (see Contributo...
hopscotch_hash.c
/****************************************************************************** * Copyright 1998-2019 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__asin_fp64_fp64.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...
exact_cover_hybrid_bfs.c
/** * Version Hybride : MPI + OpenMP avec BFS * * Quentin Deschamps, 2021 */ #include <ctype.h> #include <stdio.h> #include <stdbool.h> #include <string.h> #include <stdlib.h> #include <err.h> #include <getopt.h> #include <sys/time.h> #include <mpi.h> #include <omp.h> /* Rang du processeur principal */ #define R...
t_cholmod_gpu.c
/* ========================================================================== */ /* === GPU/t_cholmod_gpu ==================================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
kwallet_fmt_plug.c
/* KDE KWallet cracker patch for JtR. Written by Narendra Kangralkar * <narendrakangralkar at gmail.com> and Dhiru Kholia <dhiru at openwall.com>. * * Also see https://github.com/gaganpreet/kwallet-dump ;) * * This software is Copyright (c) 2013 by above authors and it is hereby * released to the general public u...
DRB025-simdtruedep-var-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...
DRB049-fprintf-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...
convolution_pack1ton_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 ...
USCMatrix.h
#ifndef USCMATRIX_H #define USCMATRIX_H #include <Eigen/Dense> #include "maybe_omp.h" #include "util.h" namespace nplm { // is this cheating? using Eigen::Matrix; using Eigen::MatrixBase; using Eigen::Dynamic; // USC = Uniform Sparse Columns. A USCMatrix is a sparse matrix in which // each column has exactly k nonz...
CycladesPartitioner.h
/* * Copyright 2016 [See AUTHORS file for list of authors] * * 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 require...
util.c
/****************************************************************************** * INCLUDES *****************************************************************************/ #include "base.h" #include "thd_info.h" #include "util.h" #define _GNU_SOURCE 1 #include<stdio.h> /********************************************...
GB_unaryop__identity_int8_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...
test12.c
int main() { int g1 = 0; #pragma omp parallel { if (1) { g1 = 20; l1: #pragma omp barrier g1 + 2; } else { g1; g1 = 10; l2: #pragma omp barrier g1 + 3; } g1 = g1 + 1; } }
integrator_sei.c
/** * @file integrator_sei.c * @brief Symplectic Epicycle Integrator (SEI). * @author Hanno Rein <hanno@hanno-rein.de> * @details This file implements the Symplectic Epicycle Integrator * (SEI). The integrator is described in detail in Rein & Tremaine 2011. * It solves epicyclic motion exactly and is therefo...
ex1.c
/****************************************************************************** * FILE: omp_workshare1.c * DESCRIPTION: * OpenMP Example - Loop Work-sharing - C/C++ Version * In this example, the iterations of a loop are scheduled dynamically * across the team of threads. A thread will perform CHUNK iterations *...
reduction_min.c
// PASS: * // RUN: ${CATO_ROOT}/src/scripts/cexecute_pass.py %s -o %t // RUN: diff <(mpirun -np 4 %t) %s.reference_output #include <stdio.h> #include <omp.h> int main() { int result = 100; #pragma omp parallel reduction(min:result) { result = omp_get_thread_num(); } printf("Result: %d\n",...
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...
quantize.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
parallel_inverse.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <omp.h> #include <time.h> void printMatrix(double** matrix, int n, FILE *fp) { if (fp != NULL) { for (int i = 0; i < n; i++) { for (int j = 0; j < n+1; j++) { fprintf(fp, "%f, ",matrix[i][j]); ...
3d25pt.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-2, 3D 25 point stencil * Adapted from PLUTO and Pochoir test bench * * Tar...
cancel-1.c
/* { dg-do compile } */ /* { dg-options "-fopenmp" } */ void f1 (void) { #pragma omp cancel parallel /* { dg-error "orphaned" } */ #pragma omp cancel for /* { dg-error "orphaned" } */ #pragma omp cancel sections /* { dg-error "orphaned" } */ #pragma omp cancel taskgroup /* { dg-error "orphaned" } */ ...
psd.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
sectionslock1-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...
fci_contract_nosym.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...
place_report.c
#define _GNU_SOURCE #include "quo.h" #include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <string.h> #include <sched.h> #include <mpi.h> #include <omp.h> /* Heavily modified from xthi.c code */ /* xthi.c code is used in examples for hybrid MPI/OpenMP affinity from a few HPC sites */ /* xthi.c origina...
majorityVoting_mex.c
// compile: mex -largeArrayDims OPTIMFLAGS="/openmp $OPTIMFLAGS" majorityVoting_mex.c #include "mex.h" #include "stdlib.h" #include "time.h" #define RANDOM_BREAK_TIES 1 /* Random number on range 1..n */ static int rand_int(int n) { int limit = RAND_MAX - RAND_MAX % n; int rnd; do { rnd = rand(); } while...
GB_queue_remove_head.c
//------------------------------------------------------------------------------ // GB_queue_remove_head: remove the matrix at the head of the matrix queue //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2018, All Rights Reserved. //...
rose_schedule.c
#include <stdio.h> #include <omp.h> // clang -fopenmp schedule.c -o schedule.out int main(int argc,char **argv) { #pragma omp parallel num_threads(4) #pragma omp for schedule(nonmonotonic : dynamic , 1) for (int i = 0; i < 12; i++) printf("Thread ID: %d, Iteration: %d\n",(omp_get_thread_num()),i); #pragma ...
nestedfn-2.c
/* { dg-do run } */ extern void abort (void); int main (void) { int i; void foo (void) { #pragma omp master i += 8; } i = 4; foo (); if (i != 12) abort (); return 0; }
single_misc_messages.c
// RUN: %clang_cc1 -fsyntax-only -fopenmp=libiomp5 -verify %s void foo(); // expected-error@+1 {{unexpected OpenMP directive '#pragma omp single'}} #pragma omp single // expected-error@+1 {{unexpected OpenMP directive '#pragma omp single'}} #pragma omp single foo void test_no_clause() { int i; #pragma omp single ...
BiOP.h
#ifndef BIOP_H_ #define BIOP_H_ /* * BiOP.h: * a simple feed forward neural operation, binary input. * * Created on: June 11, 2017 * Author: mszhang */ #include "Param.h" #include "MyLib.h" #include "Node.h" #include "Graph.h" #include "ModelUpdate.h" class BiParams { public: Param W1; Param W2; ...
psd.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
radix_sort.h
#ifndef _PCL_RADIX_SORT_ #define _PCL_RADIX_SORT_ #include <utility> #include <omp.h> template<typename T> using Key_Value_Pair = std::pair<T, T>; template<typename T> Key_Value_Pair<T>* radix_sort_parallel(Key_Value_Pair<T>* inp_buf, Key_Value_Pair<T>* tmp_buf, int64_t elements_count, int64_t max_value) { int m...
GB_unop__identity_int8_fp64.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...
single_copyprivate.c
#include <omp.h> #include "omp_testsuite.h" int check_single_copyprivate (FILE * logFile) { int result = 0; int nr_iterations = 0; int i; int j; #pragma omp parallel private(i,j) { for (i = 0; i < LOOPCOUNT; i++) { /* int thread; thread=omp_get_thread_num(); ...
State.h
//===-------- State.h - OpenMP State & ICV interface ------------- 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 // //===----------------------------...
bml_introspection_ellpack_typed.c
#include "../../macros.h" #include "../../typed.h" #include "../bml_introspection.h" #include "../bml_types.h" #include "bml_introspection_ellpack.h" #include "bml_types_ellpack.h" #include <stdio.h> #include <stdlib.h> #include <complex.h> #include <math.h> /** Return the sparsity of a matrix. * * Note that the t...
pointwise_metric.h
/*! * Copyright 2016 by Contributors * \file pointwise_metric.h * \brief interface of evalution metric function supported in openmit * \author ZhouYong,WangYongJie */ #ifndef OPENMIT_METRIC_POINTWISE_METRIC_H_ #define OPENMIT_METRIC_POINTWISE_METRIC_H_ #include <cmath> #include "openmit/metric/metric.h" namespac...
GB_binop__lt_bool.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX...
my_sgemm.c
#if defined(_WIN32) #else /* * -------------------------------------------------------------------------- * BLISLAB * -------------------------------------------------------------------------- * Copyright (C) 2016, The University of Texas at Austin * * Redistribution and use in source and binary forms, with or w...
GB_binop__bxor_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-...
gravity.c
#include <string.h> #include <mpi.h> #include <fastpm/libfastpm.h> #include <fastpm/prof.h> #include <fastpm/transfer.h> #include <fastpm/logging.h> #include "pmpfft.h" #include "pmghosts.h" static void apply_pot_transfer(PM * pm, FastPMFloat * from, FastPMFloat * to, int order) { fastpm_apply_laplace_transfer(p...
cg.c
// C extension for the cg_solve module. Implements a c routine of the // conjugate gradient algorithm to solve Ax=b, using sparse matrix A in // the csr format. // // See the module cg_solve.py // // Padarn Wilson 2012 // // Note Padarn 26/11/12: Currently the input matrix for the CG solve must // be a Sparse_CSR mat...
Pragma.h
//===- Pragma.h - Pragma registration and handling --------------*- 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 // //===---------------------------...
spalart_allmaras_turbulence_model.h
// | / | // ' / __| _` | __| _ \ __| // . \ | ( | | ( |\__ ` // _|\_\_| \__,_|\__|\___/ ____/ // Multi-Physics // // License: BSD License // Kratos default license: kratos/license.txt // // Main authors: Jordi Cotela // ...
pooling_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 ...
bml_normalize_csr_typed.c
#include "../../macros.h" #include "../../typed.h" #include "../bml_allocate.h" #include "../bml_normalize.h" #include "../bml_parallel.h" #include "../bml_types.h" #include "bml_add_csr.h" #include "bml_allocate_csr.h" #include "bml_normalize_csr.h" #include "bml_scale_csr.h" #include "bml_types_csr.h" #include <comp...
task_codegen.c
// RUN: %clang_cc1 -verify -triple x86_64-apple-darwin10 -fopenmp -fopenmp-version=50 -x c -emit-llvm %s -o - | FileCheck %s // RUN: %clang_cc1 -fopenmp -fopenmp-version=50 -x c -triple x86_64-apple-darwin10 -emit-pch -o %t %s // RUN: %clang_cc1 -fopenmp -fopenmp-version=50 -x c -triple x86_64-apple-darwin10 -include-p...
GB_ijsort.c
//------------------------------------------------------------------------------ // GB_ijsort: sort an index array I and remove duplicates //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http://suitespa...
fx.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
SPHCalcDensityFunctor.h
/** * @file SPHCalcDensityFunctor.h * @author seckler * @date 19.01.18 */ #pragma once #include "autopas/pairwiseFunctors/Functor.h" #include "autopas/sph/SPHKernels.h" #include "autopas/sph/SPHParticle.h" namespace autopas { namespace sph { /** * Class that defines the density functor. * It is used to calcula...
Parser.h
//===--- Parser.h - C Language Parser ---------------------------*- 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 // //===---------------------------...
GB_binop__lxor_fp32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
LAGraph_cc_fastsv5.c
//------------------------------------------------------------------------------ // LAGraph_cc_fastsv4: connected components //------------------------------------------------------------------------------ /* LAGraph: graph algorithms based on GraphBLAS Copyright 2020 LAGraph Contributors. (see Contribu...
particle_fp.h
#pragma once #define SECONDORDER 5.e-1 #define THIRDORDER 1.6666666666666667e-1 #define FOURTHORDER 4.1666666666666667e-2 #define FIFTHORDER 8.3333333333333333e-3 #define SIXTHORDER 1.3888888888888889e-3 #define SEVENTHORDER 1.9841269841269841e-4 #define ALPHA 1.1666666666666667e-3 #define ONE_TWELFTH ...
ddot_kahan_omp_reduce.c
#include <stdio.h> #include <stdlib.h> #include <errno.h> #include <omp.h> #include "immintrin.h" __attribute__((optimize("no-tree-vectorize"))) void ddot_kahan_omp_scalar_comp_reduce( int N, const double* a, const double* b, double* r) { int i; double sum = 0.0; #pragma omp pa...
GB_binop__gt_fp32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
analysis.c
#include "alphasparse/util/analysis.h" #include "alphasparse/util/malloc.h" #include "alphasparse/opt.h" #include <memory.h> #include <assert.h> #include <stdio.h> void alphasparse_nnz_counter_coo(const ALPHA_INT *row_indx, const ALPHA_INT *col_indx, const ALPHA_INT nnz, ALPHA_INT *lo_p, ALPHA_INT *diag_p, ALPHA_INT *...
ellipticUpdatePGMRES.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 wi...
GB_Matrix_diag.c
//------------------------------------------------------------------------------ // GB_Matrix_diag: construct a diagonal matrix from a vector //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX-License-...
GB_unop__conj_fc64_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...
comm.h
/** * Copyright (c) 2015 by Contributors */ #ifndef MXNET_KVSTORE_COMM_H_ #define MXNET_KVSTORE_COMM_H_ #include <string> #include <algorithm> #include <utility> #include <limits> #include <vector> #include "mxnet/ndarray.h" namespace mxnet { namespace kvstore { /** * \brief multiple device commmunication */ class ...
ccl_cls.c
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> #include <gsl/gsl_errno.h> #include <gsl/gsl_integration.h> #include "ccl.h" typedef struct{ double l; ccl_cosmology *cosmo; ccl_cl_tracer_collection_t *trc1; ccl_cl_tracer_collection_t *trc2; ccl_f2d_t *psp; int *status; } inte...
dot_product.c
/* reduction Clause Example */ #include <omp.h> main(int argc, char *argv[]) { int i, n, chunk; float a[100], b[100], result; /* Some initializations */ n = 100; chunk = 10; result = 0.0; for (i=0; i < n; i++) { a[i] = i * 1.0; b[i] = i * 2.0; } #pragma omp parallel for ...