source
stringlengths
3
92
c
stringlengths
26
2.25M
test_utils.h
/* * Copyright (c) 2019, 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 ...
nr_direct.c
/* * */ #include <stdlib.h> #include <string.h> #include <assert.h> #include <math.h> //#include <omp.h> #include "config.h" #include "cint.h" #include "optimizer.h" #include "nr_direct.h" int GTOmax_shell_dim(const int *ao_loc, const int *shls_slice, int ncenter); int GTOmax_cache_size(int (*intor)(), int *shls_sl...
DRB028-privatemissing-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...
ParallelFor.h
// ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- // The MIT License (MIT) // // Copyright (c) 2018-2021 www.open3d.org // // Perm...
nco_omp.c
/* $Header$ */ /* Purpose: OpenMP utilities */ /* Copyright (C) 1995--present Charlie Zender This file is part of NCO, the netCDF Operators. NCO is free software. You may redistribute and/or modify NCO under the terms of the 3-Clause BSD License with exceptions described in the LICENSE file */ #include "nc...
DRB014-outofbounds-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...
omp_loop_static.h
// -*- C++ -*- // Copyright (C) 2007-2020 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library 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...
renderer.h
#pragma once #include <stb_image_write.h> #include "materials/radiometry.h" #include "scene/camera.h" #include "config.h" #include "debug.h" namespace pbr { class Image { public: Image(unsigned int rows, unsigned int cols) : _rows(rows), _cols(cols), _data() { _data...
data.c
#include "data.h" #include "utils.h" #include "image.h" #include "dark_cuda.h" #include "box.h" #include <stdio.h> #include <stdlib.h> #include <string.h> #define NUMCHARS 37 pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; list *get_paths(char *filename) { char *path; FILE *file = fopen(filename, "r"); ...
hermm_c_dia_n_hi_row_trans.c
#include "alphasparse/kernel.h" #include "alphasparse/util.h" #include "alphasparse/opt.h" #ifdef _OPENMP #include <omp.h> #endif #include <memory.h> #include <stdlib.h> alphasparse_status_t ONAME(const ALPHA_Complex alpha, const ALPHA_SPMAT_DIA *mat, const ALPHA_Complex *x, const ALPHA_INT columns, const ALPHA_INT ld...
GB_AxB_colscale_meta.c
//------------------------------------------------------------------------------ // GB_AxB_colscale_meta: C=A*D where D is a square diagonal matrix //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-Li...
IJVector_parcsr.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) **************************************...
Example_nesting_restrict.4.c
/* * @@name: nesting_restrict.4c * @@type: C * @@compilable: no * @@linkable: no * @@expect: failure */ void work(int i, int j) {} void wrong4(int n) { #pragma omp parallel default(shared) { int i; #pragma omp for for (i=0; i<n; i++) { work(i, 0); /* incorrect nesting of barrier region in a l...
HYPRE_struct_int.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...
sort-1.c
/* Test and benchmark of a couple of parallel sorting algorithms. Copyright (C) 2008-2017 Free Software Foundation, Inc. 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 yo...
converter_to_region.h
#ifndef CONVERTER_TO_REGION_H_ #define CONVERTER_TO_REGION_H_ #include <opencv2/core/core.hpp> #include <array> #include "disparity_toolkit/disparity_range.h" template<typename calculator> void calculate_region_generic(single_stereo_task& task, const cv::Mat& base, const cv::Mat& match, std::vector<disparity_region>&...
convolution_winograd_transform_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 ...
ordering_op-inl.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 ...
hello.c
/* Compile with mpicc -openmp hello.c -o hello */ #include <stdio.h> #include "mpi.h" #include <omp.h> int main(int argc, char *argv[]) { int numprocs, rank, namelen; char processor_name[MPI_MAX_PROCESSOR_NAME]; int iam = 0, np = 1; MPI_Init(&argc, &argv); MPI_Comm_size(MPI_COMM_WORLD, &numprocs); ...
GB_unop__cos_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...
GB_binop__bor_uint32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
cg.c
//-------------------------------------------------------------------------// // // // This benchmark is an OpenMP C version of the NPB CG code. This OpenMP // // C version is developed by the Center for Manycore Programming at Seoul // // Nati...
move_template.h
/** * This is a pseudo template function with three named parameters that * must be #defined before including this file. * * FUNCTION_NAME - obvious * * BEGIN_ITER_CODE - code to be executed at the start of each * particle's move step. * * END_ITER_CODE - code to be executed at the end of each particle's * mo...
ast-dump-openmp-master.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() { #pragma omp master ; } // CHECK: TranslationUnitDecl {{.*}} <<invalid sloc>> <invalid sloc> // CHECK: `-FunctionDecl {{.*}} <{{.*}}ast-dump-openmp-maste...
regul.h
#ifndef REGUL_H #define REGUL_H #include "linalg.h" Timer timer_global, timer_global2, timer_global3; enum regul_t { L2, L1, ELASTICNET, L1BALL, L2BALL, FUSEDLASSO, L1L2, L1LINF, NONE, INCORRECT_REG }; static bool is_regul_for_matrices(const regul_t& reg) { return reg==L1L2 || reg==L1LINF; } template <typename ...
trmm.origin.pluto.c
#include <omp.h> #include <math.h> #define ceild(n,d) (((n)<0) ? -((-(n))/(d)) : ((n)+(d)-1)/(d)) #define floord(n,d) (((n)<0) ? -((-(n)+(d)-1)/(d)) : (n)/(d)) #define max(x,y) ((x) > (y)? (x) : (y)) #define min(x,y) ((x) < (y)? (x) : (y)) /** * This version is stamped on May 10, 2016 * * Contact: * Louis...
boolarray.h
/** * This code is released under the * Apache License Version 2.0 http://www.apache.org/licenses/. * * (c) Daniel Lemire, http://lemire.me/en/ */ #ifndef BOOLARRAY_H #define BOOLARRAY_H #include <iso646.h> // mostly for Microsoft compilers #include <stdarg.h> #include <cassert> #include <cstring> #include <iost...
libsais.c
/*-- This file is a part of libsais, a library for linear time suffix array and burrows wheeler transform construction. Copyright (c) 2021-2022 Ilya Grebnov <ilya.grebnov@gmail.com> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the Licens...
omp4.c
// RUN: mlir-clang %s --function=* -fopenmp -S | FileCheck %s int get(int); void square(double* x, int ss) { int i=7; #pragma omp parallel for private(i) for(i=get(ss); i < 10; i+= 2) { x[i] = i; i++; x[i] = i; } } // CHECK: func @square(%arg0: memref<?xf64>, %arg1: i32) // C...
macro-3.c
/* PR preprocessor/27746 */ /* { dg-do compile } */ /* { dg-options "-fopenmp -fdump-tree-omplower" } */ #define omp FOO #define p parallel #define omp_parallel _Pragma ("omp parallel") #define omp_p _Pragma ("omp p") void bar (void); void foo (void) { #pragma omp parallel bar (); #pragma omp p bar ()...
lv2_cpu_sort.h
/* * MEGAHIT * Copyright (C) 2014 - 2015 The University of Hong Kong & L3 Bioinformatics Limited * * This program 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, or ...
oski.c
#include <assert.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "util.h" #include <omp.h> /** * \brief Given an \f$m\times n\f$ CSR matrix \f$A\f$, * estimates the fill ratio if the matrix were converted * into \f$r\times c\f$ BCSR format. * * The caller supplies this routine with a ma...
kmp_doacross_check.c
// RUN: %libomp-compile-and-run // REQUIRES: openmp-4.5 // UNSUPPORTED: gcc // This test is incompatible with gcc because of the explicit call to // __kmpc_doacross_fini(). gcc relies on an implicit call to this function // when the last iteration is executed inside the GOMP_loop_*_next() functions. // Hence, in gcc, ...
vector.h
// BLAS like functions #ifndef __cg_VECTOR_H__ #define __cg_VECTOR_H__ static inline void vector_set(int n, DOUBLE a, DOUBLE *x) { for (int i = 0; i < n; i++) x[i] = a; } static inline void vector_rand(int n, DOUBLE *x) { for (int i = 0; i < n; i++) x[i] = rand() / (double)RAND_MAX; } static inline void vect...
overwriteMerge.c
/* * Copyright 2014 Open Connectome Project (http://openconnecto.me) * * 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 ...
colorspace.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
datasharing.c
#define _DEFAULT_SOURCE #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/time.h> #include <omp.h> void fun() { int a = 100; int b = 200; int c = 300; int d = 400; static int sum = 0; printf("Before parallel: a = %d, b = %d, c = %d, d = %d\n", a, b, c, d); ...
GB_binop__ge_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...
resize.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
gridsearch.h
#ifndef TUNING_H #define TUNING_H // TODO: change after integrate with module // import from Cosan // TODO #include<> cross validate here #include<cosan/selection/crossvalidation.h> #include<cosan/selection/selection.h> namespace Cosan { /** * Hyperparameter tuning for supervised models that have one or more...
common.h
// Copyright 2022 The Google Research 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 required by applicable law...
cpu_ctc.h
#pragma once #include <tuple> #include <cmath> #include <limits> #include <algorithm> #include <numeric> #if !defined(CTC_DISABLE_OMP) && !defined(APPLE) #include <omp.h> #endif #include "ctc_helper.h" template<typename ProbT> class CpuCTC { public: // Noncopyable CpuCTC(int alphabet_size, int minibatch, v...
GB_unaryop__identity_uint32_int16.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http...
morphology.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
GB_binop__pair_fc32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
main.c
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> #include <time.h> #include "omp.h" #include "functions.h" int main (int argc, char **argv) { int Nthreads = 20; omp_set_num_threads(Nthreads); //seed value for the randomizer double seed = clock(); //this will make your program ru...
strgrp.c
/* Group similar strings Copyright (C) 2014 Andrew Jeffery <andrew@aj.id.au> This program 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, or (at your opti...
tinyexr.h
/* Copyright (c) 2014 - 2019, Syoyo Fujita and many contributors. 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 l...
atomic.c
/* PMSIS includes */ #include "pmsis.h" #include "omp.h" #define ARRAY_SIZE 512 uint32_t a[ARRAY_SIZE] = {0}; uint32_t b[ARRAY_SIZE] = {0}; uint32_t c[ARRAY_SIZE] = {0}; uint32_t errors = 0; /* Cluster main entry, executed by core 0. */ void cluster_delegate(void *arg) { printf("Cluster master core entry\n"); ...
tacacs_plus_fmt_plug.c
/* * Format for cracking TACACS+ hashes. * * https://insinuator.net/2015/06/tacacs-module-for-loki/ * * This software is Copyright (c) 2015, Daniel Mende <dmende [at] ernw.de> and * Copyright (c) 2017, Dhiru Kholia <dhiru [at] openwall.com>, and it is hereby * released to the general public under the following t...
dataset.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_DATASET_H_ #define LIGHTGBM_DATASET_H_ #include <LightGBM/config.h> #include <LightGBM/feature_group.h> #include <LightGBM/meta.h> ...
jacobi_omp.c
/* * Copyright (c) 2008, BSC (Barcelon Supercomputing Center) * 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,...
GB_unop__identity_int8_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...
parallel_for_simd_misc_messages.c
// RUN: %clang_cc1 -fsyntax-only -fopenmp -fopenmp-version=45 -verify=expected,omp45 %s -Wuninitialized // RUN: %clang_cc1 -fsyntax-only -fopenmp -fopenmp-version=50 -verify=expected,omp50 %s -Wuninitialized // RUN: %clang_cc1 -fsyntax-only -fopenmp-simd -fopenmp-version=45 -verify=expected,omp45 %s -Wuninitialized //...
samples.h
/*************************************************************************************************** * Copyright (c) 2011-2020, NVIDIA CORPORATION. All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, are not permit- * ted. * * THIS SOFTWARE IS PROVIDED BY THE...
ztrtri.c
/** * * @file * * PLASMA is a software package provided by: * University of Tennessee, US, * University of Manchester, UK. * * @precisions normal z -> s d c * **/ #include "plasma.h" #include "plasma_async.h" #include "plasma_context.h" #include "plasma_descriptor.h" #include "plasma_internal.h" #include ...
GB_unop__log2_fc64_fc64.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...
ZBinDumper.h
/* * ZBinDumper.h * Cubism * * Created by Panos Hadjidoukas on 3/18/14. * Copyright 2014 CSE Lab, ETH Zurich. All rights reserved. * */ #pragma once #include <iostream> #include <vector> #include <string> #include <stdio.h> #include <sstream> #include "BlockInfo.h" #include "LosslessCompression.h" CUBISM_...
gsrb.ompsimd.c
//------------------------------------------------------------------------------------------------------------------------------ // Samuel Williams // SWWilliams@lbl.gov // Lawrence Berkeley National Lab //------------------------------------------------------------------------------------------------------------------...
convolution_3x3_pack16to1.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 ...
cgelqs.c
/** * * @file * * PLASMA is a software package provided by: * University of Tennessee, US, * University of Manchester, UK. * * @generated from /home/luszczek/workspace/plasma/bitbucket/plasma/compute/zgelqs.c, normal z -> c, Fri Sep 28 17:38:05 2018 * **/ #include "plasma.h" #include "plasma_async.h" #inc...
GB_binop__isle_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-...
sprp32_sf.h
#ifndef _SPRP32_SF_H_INCLUDED #define _SPRP32_SF_H_INCLUDED #include <stdint.h> // 32-bit straightforward implementation begins #ifdef _OPENMP #pragma omp declare target #endif // we could use uint32_t d and A, but this is faster (at least on x86-64) ESS static inline uint32_t modular_exponentiation32(uint32_t a, ui...
SubTVec.h
#ifndef KRIPKE_SUBTVEC_H__ #define KRIPKE_SUBTVEC_H__ #include <Kripke/Kernel.h> #include <algorithm> #include <vector> #include <stdlib.h> /** * A transport vector (used for Psi and Phi, RHS, etc.) * * This provides the inner most three strides of * Psi[GS][DS][G][D][Z] * but in whatever nesting order is ...
GB_binop__div_uint8.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http:...
GB_unjumbled_template.c
//------------------------------------------------------------------------------ // GB_unjumble_template: unjumble the vectors of a matrix //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-License-Ide...
erhs.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...
3d25pt_var.c
/* * Order-1, 3D 25 point stencil with axis-symmetric ariable 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) >...
opencl_DES_bs_h_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....
flush-2.c
/* { dg-do compile } */ /* { dg-message "undeclared identifier is reported only once" "reminder" { target *-*-* } 0 } */ void f1(void) { #pragma omp flush a /* { dg-error "expected" } */ #pragma omp flush ( /* { dg-error "expected identifier" } */ #pragma omp flush (b /* { dg-error "undeclared|expected|for each" ...
bml_threshold_csr_typed.c
#include "../../macros.h" #include "../../typed.h" #include "../bml_allocate.h" #include "../bml_parallel.h" #include "../bml_threshold.h" #include "../bml_types.h" #include "bml_allocate_csr.h" #include "bml_threshold_csr.h" #include "bml_types_csr.h" #include <complex.h> #include <math.h> #include <stdlib.h> #includ...
implicit_blender.c
/* * This program 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 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be use...
transform.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
GB_binop__isgt_uint64.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
task-two.c
/* * task-two.c -- Archer testcase */ //===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // // See tools/archer/LICENSE.txt for details. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===...
column_matrix.h
/*! * Copyright 2017 by Contributors * \file column_matrix.h * \brief Utility for fast column-wise access * \author Philip Cho */ #ifndef XGBOOST_COMMON_COLUMN_MATRIX_H_ #define XGBOOST_COMMON_COLUMN_MATRIX_H_ #include <limits> #include <vector> #include "hist_util.h" namespace xgboost { namespace common { /...
utils.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 ...
GeometryConverter.h
/* -*-c++-*- IfcQuery www.ifcquery.com * MIT License Copyright (c) 2017 Fabian Gerold 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 ...
arraybench.h
/*************************************************************************** * * * OpenMP MicroBenchmark Suite - Version 2.0 * * * * ...
critical-1.c
/* { dg-do compile } */ /* { dg-options "-fopenmp -fdump-tree-ompexp" } */ extern void bar(int); void foo (void) { #pragma omp critical bar(0); /* Note that "name" is in its own namespace, thus this foo is not the same as the function. */ #pragma omp critical(foo) { bar(1); bar(2); } #...
inner_split_pass.kernel_runtime.c
#include <omp.h> #include <stdio.h> #include <stdlib.h> #include "local_header.h" #include "openmp_pscmc_inc.h" #include "inner_split_pass.kernel_inc.h" int openmp_geo_nr_Bfield_pushJ_vlo_init (openmp_pscmc_env * pe ,openmp_geo_nr_Bfield_pushJ_vlo_struct * kerstr ){ return 0 ;} void openmp_geo_nr_Bfield_pushJ_vlo...
MinMax.h
#ifndef DASH__ALGORITHM__MIN_MAX_H__ #define DASH__ALGORITHM__MIN_MAX_H__ #include <dash/internal/Config.h> #include <dash/Allocator.h> #include <dash/algorithm/LocalRange.h> #include <dash/util/Config.h> #include <dash/util/Trace.h> #include <dash/util/UnitLocality.h> #include <dash/internal/Logging.h> #include <...
GB_binop__rminus_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-...
3d25pt.c
/* * Order-2, 3D 25 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)...
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) #...
conv_dw_kernel_arm.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...
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-...
configurator.c
/* Simple tool to create config.h. * Would be much easier with ccan modules, but deliberately standalone. * * Copyright 2011 Rusty Russell <rusty@rustcorp.com.au>. MIT license. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (...
banded_source.c
void X(destroy_sparse)(X(sparse) * A) { free(A->p); free(A->q); free(A->v); free(A); } void X(destroy_banded)(X(banded) * A) { free(A->data); free(A); } void X(destroy_triangular_banded)(X(triangular_banded) * A) { free(A->data); free(A); } void X(destroy_banded_qr)(X(banded_qr) * F) ...
GB_unaryop__minv_uint32_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...
dataset.h
#ifndef LIGHTGBM_DATASET_H_ #define LIGHTGBM_DATASET_H_ #include <LightGBM/utils/random.h> #include <LightGBM/utils/text_reader.h> #include <LightGBM/utils/openmp_wrapper.h> #include <LightGBM/meta.h> #include <LightGBM/config.h> #include <LightGBM/feature_group.h> #include <vector> #include <utility> #include <func...
resource_manager.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...
functions.c
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> #include "functions.h" //compute a*b mod p safely unsigned int modprod(unsigned int a, unsigned int b, unsigned int p) { unsigned int za = a; unsigned int ab = 0; while (b > 0) { if (b%2 == 1) ab = (ab + za) % p; za = (2 * za...
multi_logistic_loss.h
#ifndef MULTI_LOGISTIC_LOSS_H #define MULTI_LOGISTIC_LOSS_H #include "../loss_mat.h" template <typename M> class MultiClassLogisticLoss final : public LinearLossMat<M, Vector<int> > { typedef typename M::value_type T; using LinearLossMat<M, Vector<int> >::_data; using LinearLossMat<M, Vector<int> >::_y; p...
omp_threadprivate.c
// RUN: %libomp-compile-and-run /* * Threadprivate is tested in 2 ways: * 1. The global variable declared as threadprivate should have * local copy for each thread. Otherwise race condition and * wrong result. * 2. If the value of local copy is retained for the two adjacent * parallel regions */ #include "omp...
common.h
#include <stdio.h> #include <unistd.h> #include <stdbool.h> #include <getopt.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <time.h> #include <sys/time.h> #include <errno.h> #define STENCILBENCH #define SB_START_INSTRUMENTS do { start_time = sb_time(); } while (0) #define SB_STOP_INSTRUMENTS d...
compare.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
grasp_parmetis.c
#include "common.h" #include "oned_csr.h" #include <mpi.h> #include <stdint.h> #include <inttypes.h> #include <stdlib.h> #include <stddef.h> #include <string.h> #include <limits.h> #include <assert.h> #include <time.h> #include <math.h> #include <parmetis.h> /////////////////// //#define TO_NEW_IDX(x) g_perm[x] //#...
sptensor.c
/* This file is part of ParTI!. ParTI! is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. ParTI! is distributed...
config_thread_limit.c
/******************************************************************************* * Copyright 2012-2016 Intel Corporation All Rights Reserved. * * The source code, information and material ("Material") contained herein is * owned by Intel Corporation or its suppliers or licensors, and title to such * Material rem...