Search is not available for this dataset
text string | meta dict |
|---|---|
/* $Header$ */
/* Purpose: Description (definition) of spherical geometry functions */
/* This file includes BSD-licensed code whose copyright is held by another author
The copyright owner and license terms for the NCO modifications to that code are
Copyright (C) 2018--present Charlie Zender
This file is par... | {
"alphanum_fraction": 0.6828184511,
"avg_line_length": 29.5375,
"ext": "h",
"hexsha": "cbf261874d2521cf9913f8d02dac2e788c8c37d1",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha": "69c0... |
/* These functions compute linear preprocessing for
the UE using LAPACKE and CBLAS modules of
LAPACK libraries.
MMSE and MMSE whitening filters are available.
Functions are using RowMajor storage of the
matrices, like in conventional C. Traditional
Fortran functions of LAPACK employ ColumnMajor... | {
"alphanum_fraction": 0.6040927971,
"avg_line_length": 29.1179941003,
"ext": "c",
"hexsha": "0f7863384cb25cdbf0768d3a670da7a506919bdb",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <getopt.h>
#include <mpi.h>
#include <iniparser.h>
#include "prepmt/prepmt_hpulse96.h"
#include "prepmt/prepmt_event.h"
#ifdef PARMT_USE_INTEL
#include <mkl_cblas.h>
#else
#include <cblas.h>
#endif
#include "sacio.h"
#include "cps.h"
#include "cps_mpi.... | {
"alphanum_fraction": 0.5465426441,
"avg_line_length": 36.1905940594,
"ext": "c",
"hexsha": "89b51f096ed808feef64a46baf7a4547816ae913",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
#include <stdio.h>
#include <stdlib.h>
#include <gsl/gsl_vector.h>
#include <gsl/gsl_statistics_double.h>
#include <math.h>
#include "tz_error.h"
#include "tz_constant.h"
#include "tz_voxel_linked_list.h"
#include "tz_stack_sampling.h"
#include "tz_voxel_graphics.h"
#include "tz_neurotrace.h"
#include "tz_stack_math.h"... | {
"alphanum_fraction": 0.660472319,
"avg_line_length": 25.0776699029,
"ext": "c",
"hexsha": "f479202b7fc074057bd5726e1902c767872f668d",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha": ... |
#ifndef __UTILS_UTILS_H_INCLUDED__
#include <iostream>
#include <vector>
#include <Eigen/Dense>
#include <gsl/gsl>
#include <numeric>
#include <random>
#define __UTILS_UTILS_H_INCLUDED__
template<typename Matrix>
void removeRow(Matrix& matrix, gsl::index rowToRemove)
{
gsl::index numRows = matrix.rows()-1;
gsl... | {
"alphanum_fraction": 0.6391941392,
"avg_line_length": 33.2347826087,
"ext": "h",
"hexsha": "e984862f2f063253af01a5964f213738856b60f5",
"lang": "C",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2021-04-13T05:56:38.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-04-13T05:56:... |
#ifndef BCT_TEST_H
#define BCT_TEST_H
#include <bct/bct.h>
#include <gsl/gsl_matrix.h>
#include <gsl/gsl_vector.h>
#include <octave/oct.h>
#include <vector>
namespace bct_test {
Matrix from_gsl(const gsl_vector*, int = 0);
Matrix from_gsl(const gsl_matrix*, int = 0, int = 0);
NDArray from_gsl(const std::vector<gsl... | {
"alphanum_fraction": 0.6620392532,
"avg_line_length": 28.2297297297,
"ext": "h",
"hexsha": "d2ef78d7714381bb7ff5a828ee6cd436ec63152a",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
/*
* Copyright (c) 2010-2018 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* Copyright (c) 2013 Inria. All rights reserved.
* $COPYRIGHT
*
* @precisions normal z -> s d c
*
*/
#include "dplasma.h"
... | {
"alphanum_fraction": 0.5258164569,
"avg_line_length": 34.6898734177,
"ext": "c",
"hexsha": "af01957fb8f0fd4e6023bc08bbf5fbc4164d10cc",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
#include <math.h>
#include <cblas.h>
void matmult_mnk(int M, int N, int K, double **A, double **B, double **C) {
for (int l = 0; l < M*N; l++) {
C[0][l] = 0;
}
for (int m = 0; m < M; m++) {
for (int n = 0; n < N; n++) {
for (int k = 0; k < K; k++) {
C[m][n] += A[m][k] * B[k][n];
}
}
... | {
"alphanum_fraction": 0.4209486166,
"avg_line_length": 21.5319148936,
"ext": "c",
"hexsha": "07955c9e0d7df07054cff0d20eb9f89c20fcbb1b",
"lang": "C",
"max_forks_count": 3,
"max_forks_repo_forks_event_max_datetime": "2021-01-18T16:42:40.000Z",
"max_forks_repo_forks_event_min_datetime": "2019-01-22T10:34:... |
#ifndef EIGEN_BENCH_UTIL_H
#define EIGEN_BENCH_UTIL_H
#include <Eigen/Core>
#include "BenchTimer.h"
using namespace std;
using namespace Eigen;
#include <boost/preprocessor/repetition/enum_params.hpp>
#include <boost/preprocessor/repetition.hpp>
#include <boost/preprocessor/seq.hpp>
#include <boost/pre... | {
"alphanum_fraction": 0.6829454407,
"avg_line_length": 28.1827956989,
"ext": "h",
"hexsha": "6489ab7e1156d9f860de040e71db43160004829e",
"lang": "C",
"max_forks_count": 23,
"max_forks_repo_forks_event_max_datetime": "2021-10-11T07:10:06.000Z",
"max_forks_repo_forks_event_min_datetime": "2018-10-14T02:14... |
#pragma once
#include <gsl\gsl>
#include <winrt\Windows.Foundation.h>
#include <d3d11.h>
#include "DrawableGameComponent.h"
#include "MatrixHelper.h"
#include "DirectionalLight.h"
namespace Library
{
class ProxyModel;
}
namespace Rendering
{
class TransparencyMaterial;
class TransparencyDemo final : public Libra... | {
"alphanum_fraction": 0.7741416309,
"avg_line_length": 28.6769230769,
"ext": "h",
"hexsha": "2fd0cfcf2e15ee980324c5ad4c65910d6dbe95b4",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
/* siman/siman_test.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Mark Galassi
*
* 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... | {
"alphanum_fraction": 0.6309697856,
"avg_line_length": 26.2236421725,
"ext": "c",
"hexsha": "5d41d18bde720d7d4a7e12a014e92f51e0a341b5",
"lang": "C",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2015-10-02T01:32:59.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-10-02T01:32:... |
/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
* Copyright 2018 Couchbase, Inc.
*
* 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
*
* ... | {
"alphanum_fraction": 0.6627372053,
"avg_line_length": 39.5227272727,
"ext": "h",
"hexsha": "d6ea0c7208fa1f3c304a500243ce2b008586588a",
"lang": "C",
"max_forks_count": 2,
"max_forks_repo_forks_event_max_datetime": "2020-04-06T09:20:15.000Z",
"max_forks_repo_forks_event_min_datetime": "2019-10-11T14:00:... |
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <assert.h>
#include <gsl/gsl_vector.h>
#define MAX(A,B) (((A)>(B))?(A):(B))
void reoshift(gsl_vector *v, int h)
{
if ( h > 0 ) {
gsl_vector *temp = gsl_vector_alloc(v->size);
gsl_vector_view p = gsl_vector_subvector(v, 0, v->size - h);
... | {
"alphanum_fraction": 0.5849187132,
"avg_line_length": 26.7685185185,
"ext": "c",
"hexsha": "9ecd573fae548736443921b67d25613f7addf351",
"lang": "C",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2018-11-09T22:08:40.000Z",
"max_forks_repo_forks_event_min_datetime": "2018-11-09T22:08:... |
//This computes "the" DCT (discrete cosine transformation) along dim of matrix X.
//This uses a CBLAS matrix multiplication by the DCT-II matrix.
//For complex input X, the output Y is complex, and the DCT is just the DCT of the
//real and imaginary parts separately (following Octave convention).
#include <stdio.h>
#... | {
"alphanum_fraction": 0.5003298697,
"avg_line_length": 38.7412140575,
"ext": "c",
"hexsha": "018e2ed9b377bf67558d01e88aaae3eb5e868aa7",
"lang": "C",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2021-10-05T13:50:32.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-10-05T13:50:... |
/* matrix/gsl_matrix_ushort.h
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough
*
* 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... | {
"alphanum_fraction": 0.6706197058,
"avg_line_length": 35.4905063291,
"ext": "h",
"hexsha": "c5baa9812af5019d4edb36919cff05365623d93a",
"lang": "C",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2015-10-02T01:32:59.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-10-02T01:32:... |
/* randist/test.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough
*
* 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
* y... | {
"alphanum_fraction": 0.6768290554,
"avg_line_length": 18.8760711931,
"ext": "c",
"hexsha": "8c2cfb066077c1c76d3ad1f6e95722cd24ed2547",
"lang": "C",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2015-10-02T01:32:59.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-10-02T01:32:... |
#pragma once
#include "../utils/utils.h"
#include <gsl/gsl>
namespace Halley {
class Compression {
public:
static Bytes deflate(const Bytes& bytes);
static Bytes deflate(gsl::span<const gsl::byte> bytes);
static Bytes inflate(const Bytes& bytes);
static Bytes inflate(gsl::span<const gsl::byte> bytes);
stat... | {
"alphanum_fraction": 0.7300970874,
"avg_line_length": 32.1875,
"ext": "h",
"hexsha": "1611de7c8c5cf14cfc90f03344a9adc937bc58b6",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha": "aa58... |
/**
* @file blas_mangle.h
* @brief Macros to "de-mangle" BLAS routines and includes and allow generic calls to them in the code.
* @author Moritz Kreutzer <moritz.kreutzer@fau.de>
*/
#ifndef GHOST_BLAS_MANGLE_H
#define GHOST_BLAS_MANGLE_H
#include <strings.h>
#ifdef GHOST_HAVE_MKL
#include <mkl_cblas.h>
#elif def... | {
"alphanum_fraction": 0.7391304348,
"avg_line_length": 41.6875,
"ext": "h",
"hexsha": "28d9e2bd45cacf3e5987aaf57997c7f0253c4ccf",
"lang": "C",
"max_forks_count": 2,
"max_forks_repo_forks_event_max_datetime": "2017-12-19T19:38:16.000Z",
"max_forks_repo_forks_event_min_datetime": "2016-12-14T15:20:12.000... |
#ifndef BFM_FRANCIS_H
#define BFM_FRANCIS_H
#include <cstdlib>
#include <string>
#include <cmath>
#include <iostream>
#include <sstream>
#include <stdexcept>
#include <fstream>
#include <complex>
#include <algorithm>
#include "UTSolve.h"
#include "Householder.h"
#include <util/time_cps.h>
//#define USE_LAPACK
//#defi... | {
"alphanum_fraction": 0.5230313553,
"avg_line_length": 27.2729805014,
"ext": "h",
"hexsha": "3df90f865d8fe7e3a4d87230ffd55ca74190f661",
"lang": "C",
"max_forks_count": 3,
"max_forks_repo_forks_event_max_datetime": "2021-12-02T20:41:09.000Z",
"max_forks_repo_forks_event_min_datetime": "2020-03-16T05:55:... |
/*
* Copyright (c) 2016-2021 lymastee, All rights reserved.
* Contact: lymastee@hotmail.com
*
* This file is part of the gslib project.
*
* 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 t... | {
"alphanum_fraction": 0.6189032428,
"avg_line_length": 26.6175438596,
"ext": "h",
"hexsha": "d08cd2747c4c780759d186c246adce11b06c8e9d",
"lang": "C",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2016-10-19T15:20:58.000Z",
"max_forks_repo_forks_event_min_datetime": "2016-10-19T15:20:... |
/* blas/gsl_blas.h
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman
*
* 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)... | {
"alphanum_fraction": 0.4772061585,
"avg_line_length": 44.0894039735,
"ext": "h",
"hexsha": "3c83815ffa1584a5958435e1074817b6307000c6",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
//This does CELL (~soma) stage of GRU (gated recurrent unit) model.
//This requires each neuron to have 3 input time series, X, Xr, Xz,
//where X is the usual input and Xr, Xz the inputs for the reset and update gates,
//stacked into X = [X; Xr; Xz] for dim=0, or X = [X Xr Xz] for dim=1.
//For dim=0, R[:,t] = sig{Xr[:... | {
"alphanum_fraction": 0.4170506912,
"avg_line_length": 40.7582608696,
"ext": "c",
"hexsha": "ba77a21032e4fee42d3358c707c133aa42a96f14",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
/* randist/geometric.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough
*
* 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, ... | {
"alphanum_fraction": 0.6471674877,
"avg_line_length": 23.8823529412,
"ext": "c",
"hexsha": "afce6b27b252de26c394dc7aa17adcadb2cc653c",
"lang": "C",
"max_forks_count": 14,
"max_forks_repo_forks_event_max_datetime": "2020-03-12T12:31:25.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-07-21T04:47... |
#pragma once
#include <gsl/gsl_vector.h>
double vs_gsl_Gradient_ForwardDiff (
const gsl_vector * x, /**< [in] Point at which the gradient is to be evaluated */
void * data, /**< [in] Optional parameters passed directly to the function func_f */
double (*func_f)(const gsl_vector * x, void *data), ... | {
"alphanum_fraction": 0.6468531469,
"avg_line_length": 47.6666666667,
"ext": "h",
"hexsha": "2903cae8fd976bd39e19cec3bc5bca2a0904b723",
"lang": "C",
"max_forks_count": 5,
"max_forks_repo_forks_event_max_datetime": "2022-01-14T11:29:56.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-04-19T06:44:... |
#include <lapacke.h> | {
"alphanum_fraction": 0.75,
"avg_line_length": 20,
"ext": "h",
"hexsha": "aad224189374ebe2dd7810a13075555f395ee7dc",
"lang": "C",
"max_forks_count": 13,
"max_forks_repo_forks_event_max_datetime": "2022-03-29T07:25:21.000Z",
"max_forks_repo_forks_event_min_datetime": "2019-08-03T05:29:38.000Z",
"max_f... |
/* statistics/gsl_statistics_char.h
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough
*
* 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 Licen... | {
"alphanum_fraction": 0.7912063632,
"avg_line_length": 58.7792207792,
"ext": "h",
"hexsha": "6bc8d9405e1dd7d52d5d0e538c5163f2b51ed44a",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
/**
* ex_gnuplot.h
*
* utility functions for plotting with gnuplot (v 4.6)
*
* - minimizes boilerplate needed to use
* - popen -> process piping available, less temp files
* - idea based on myexamples/gnuplot (syntax) and gnuplot_i by N. Devillard (pipes), except a bit simpler
*
* Aaro Salosensaari 2016
*
... | {
"alphanum_fraction": 0.6975806452,
"avg_line_length": 24,
"ext": "h",
"hexsha": "53374b58aa4e13606c7ec735ff962844b18d9143",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha": "17319213c... |
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <fitsio.h>
#include <gsl/gsl_statistics.h>
#ifdef SPECTRIM
#include "FBSpectrim.h"
#else
#include "fbus.h"
#endif
typedef struct _Box {
double x;
double y;
double fwhm;
double cenx;
double ceny;
double counts;
double background;
... | {
"alphanum_fraction": 0.578049474,
"avg_line_length": 24.3110599078,
"ext": "c",
"hexsha": "e06abefd7c949a3fc26c7b81a2f356a1754f8e01",
"lang": "C",
"max_forks_count": 3,
"max_forks_repo_forks_event_max_datetime": "2017-12-01T13:02:36.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-07-29T15:16:3... |
#ifndef MESH_H
#define MESH_H
#define EIGEN_SUPERLU_SUPPORT
#include <iostream>
#include <iomanip>
#include <cmath>
#include <vector>
#include <chrono>
#include <armadillo>
#include <petsc.h>
#include "../TPLs/yaml-cpp/include/yaml-cpp/yaml.h"
#include "../TPLs/eigen-git-mirror/Eigen/Eigen"
#include "../TPLs/eigen-git... | {
"alphanum_fraction": 0.6723352566,
"avg_line_length": 26.5564516129,
"ext": "h",
"hexsha": "002e717da7d5648bdbb34454f9f3c51eabf52115",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
/* linalg/cod.c
*
* Copyright (C) 2016, 2017 Patrick Alken
*
* 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 option) any later version.
*... | {
"alphanum_fraction": 0.5670634216,
"avg_line_length": 28.3220125786,
"ext": "c",
"hexsha": "53d12e81732c25357371464d363e3f921107a83f",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
#ifndef PROB_FUNCTIONS_H
#define PROB_FUNCTIONS_H
#include <gsl/gsl_vector.h>
#include "data.h"
double my_f (const gsl_vector *x, void *params);
void my_df (const gsl_vector *x, void *params, gsl_vector *g);
void my_fdf (const gsl_vector *x, void *params, double *f, gsl_vector *g);
void gradientQ (Dataset *data, doub... | {
"alphanum_fraction": 0.75,
"avg_line_length": 31.1578947368,
"ext": "h",
"hexsha": "e18245749b4f616187bd8d88160de0e650f5278a",
"lang": "C",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2019-02-25T18:59:03.000Z",
"max_forks_repo_forks_event_min_datetime": "2019-02-25T18:59:03.000Z"... |
//This computes the IDFT (inverse discrete Fourier transformation) along dim of matrix X.
//This uses a CBLAS matrix multiplication by the IDFT matrix.
//The real-valued case is complicated (i.e., where only real part is output).
//This will only exactly invert with DFT if the DFT output all F=ndft/2+1 positive freqs.... | {
"alphanum_fraction": 0.481221374,
"avg_line_length": 39.9390243902,
"ext": "c",
"hexsha": "e2aa546df06a4b39222fe55c69b41f3532f2f8a1",
"lang": "C",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2021-10-05T13:50:32.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-10-05T13:50:3... |
#ifndef RENDERING_ENTITY_STEREO_VIEWERCENTRICENTITY_H
#define RENDERING_ENTITY_STEREO_VIEWERCENTRICENTITY_H
#include "stereoimageentity.h"
#include <gsl/gsl>
class QPaintEvent;
class QPainter;
namespace s3d {
struct ViewerContext;
} // namespace s3d
class ViewerCentricEntity : public StereoImageEntity {
public:
... | {
"alphanum_fraction": 0.791634981,
"avg_line_length": 27.3958333333,
"ext": "h",
"hexsha": "98283f4490dfd22f6e5397807bdd23de440d29a4",
"lang": "C",
"max_forks_count": 6,
"max_forks_repo_forks_event_max_datetime": "2021-05-18T16:22:03.000Z",
"max_forks_repo_forks_event_min_datetime": "2017-07-13T21:51:0... |
#include <stdio.h>
#include <string.h>
#include <gsl/gsl_statistics_double.h>
#include "tz_error.h"
#include "tz_constant.h"
#include "tz_image_lib.h"
#include "tz_objdetect.h"
#include "tz_imatrix.h"
#include "tz_stack_math.h"
#include "tz_stack_bwdist.h"
#include "tz_stack_bwmorph.h"
#include "tz_voxel_linked_list.h"... | {
"alphanum_fraction": 0.7165517241,
"avg_line_length": 24.5762711864,
"ext": "c",
"hexsha": "c2612307588d451a49b2cca5d6c834bc41926c95",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
/* permutation/gsl_permutation.h
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004, 2007 Brian Gough
*
* 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,... | {
"alphanum_fraction": 0.7752540347,
"avg_line_length": 33.1287128713,
"ext": "h",
"hexsha": "10ac0f58a2e1d962f1ef62e5a6c65f15aef9d683",
"lang": "C",
"max_forks_count": 173,
"max_forks_repo_forks_event_max_datetime": "2022-03-27T07:27:04.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-08T18:0... |
#pragma once
#include <filesystem>
#include <unordered_map>
#include <optional>
#include <variant>
#include <string>
#include <vector>
#include <gsl/gsl>
#include <DirectML.h>
#include "BucketAllocator.h"
class Model
{
public:
// When binding a buffer to an operator it is possible to use a subregion of
// the... | {
"alphanum_fraction": 0.6215338496,
"avg_line_length": 28.7985611511,
"ext": "h",
"hexsha": "bcba7ac3fabd72d1bfa7c9357ab8de4fd081d6cf",
"lang": "C",
"max_forks_count": 20,
"max_forks_repo_forks_event_max_datetime": "2020-06-12T15:57:58.000Z",
"max_forks_repo_forks_event_min_datetime": "2019-05-13T12:56... |
/*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
** **
** This file forms part of the Underworld geophysics modelling application. **
** ... | {
"alphanum_fraction": 0.6415072989,
"avg_line_length": 39.8961625282,
"ext": "c",
"hexsha": "034ddd5c2e7beb43fdcab74784dced52da333612",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
/*
Copyright [2021] [IBM Corporation]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,... | {
"alphanum_fraction": 0.7116564417,
"avg_line_length": 28.4603174603,
"ext": "h",
"hexsha": "92e04091f76543998f6cb50d9967beb385c719db",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
/****************************************************************
*
* Copyright (C) Max Planck Institute
* for Biological Cybernetics, Tuebingen, Germany
*
* Author: Gabriele Lohmann, 2015
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public Lic... | {
"alphanum_fraction": 0.6140433553,
"avg_line_length": 29.3702422145,
"ext": "c",
"hexsha": "289e6fb4a614fe56693e715083c58df5bc9d5409",
"lang": "C",
"max_forks_count": 8,
"max_forks_repo_forks_event_max_datetime": "2022-03-22T08:05:46.000Z",
"max_forks_repo_forks_event_min_datetime": "2017-09-29T10:33:... |
/* err/stream.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough
*
* 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
* yo... | {
"alphanum_fraction": 0.7130144605,
"avg_line_length": 26.8358208955,
"ext": "c",
"hexsha": "801c1c085d62efa6d54ed84b205877e3a921e99d",
"lang": "C",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2015-10-02T01:32:59.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-10-02T01:32:... |
// The MIT License (MIT)
//
// Copyright (c) 2018 Mateusz Pusz
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, co... | {
"alphanum_fraction": 0.6730909816,
"avg_line_length": 32.4288793103,
"ext": "h",
"hexsha": "457c87ff0b6508f361faddc8a96affb8596de0c8",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <math.h>
#include <gsl/gsl_matrix.h>
#include <gsl/gsl_blas.h>
#include <gsl/gsl_linalg.h>
struct color {
double value[3];
};
struct color cartesian_to_polar(struct color source_color) {
struct color target_color;
target_color.value[0] = source_col... | {
"alphanum_fraction": 0.6750067379,
"avg_line_length": 31.9397417504,
"ext": "c",
"hexsha": "b944eba609700f51ced548743f216b4957b818bf",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
/******************************************************************************
* gsl_sprng.h: rewrite of gsl-sprng.h to use sprng streams *
* Author: Yan Y. Liu <yanliu@illinois.edu> *
* Date: 2014/08/17 *
... | {
"alphanum_fraction": 0.5840965862,
"avg_line_length": 33.3611111111,
"ext": "h",
"hexsha": "9f3a5b0d7fc314c7afb78d2d4cce8d69fb0576b4",
"lang": "C",
"max_forks_count": 20,
"max_forks_repo_forks_event_max_datetime": "2021-06-17T14:29:16.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-10-28T15:28... |
// https://github.com/attractivechaos/matmul
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <stdio.h>
/**********************************
* Pseudo-random number generator *
**********************************/
static uint64_t mat_rng[2] = { 11ULL, 1181783497276652981ULL };
static inline uint64... | {
"alphanum_fraction": 0.5507774538,
"avg_line_length": 25.3292307692,
"ext": "c",
"hexsha": "045ce1b08104c50973e968f2bcf2eecad98517a4",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
/* specfunc/hyperg_1F1.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman
*
* 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 o... | {
"alphanum_fraction": 0.5646440269,
"avg_line_length": 29.1214859438,
"ext": "c",
"hexsha": "c18fc705588837ec45f57a1bbe8522ad7558edf6",
"lang": "C",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2015-10-02T01:32:59.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-10-02T01:32:... |
/*
* Copyright (c) 1997-1999 Massachusetts Institute of Technology
*
* 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 versio... | {
"alphanum_fraction": 0.5816219979,
"avg_line_length": 28.5397350993,
"ext": "c",
"hexsha": "54e69795aac0941016378d055efa4ff5b50eb46d",
"lang": "C",
"max_forks_count": 8,
"max_forks_repo_forks_event_max_datetime": "2022-03-29T02:59:10.000Z",
"max_forks_repo_forks_event_min_datetime": "2017-11-20T07:52:... |
/*! @copyright (c) 2017 King Abdullah University of Science and
* Technology (KAUST). All rights reserved.
*
* STARS-H is a software package, provided by King Abdullah
* University of Science and Technology (KAUST)
*
* @file include/common.h
*
* @cond
* This command in pair wit... | {
"alphanum_fraction": 0.6310815541,
"avg_line_length": 21.8091603053,
"ext": "h",
"hexsha": "90c4b846603e3aa5bb504664729fb4b2aee402ab",
"lang": "C",
"max_forks_count": 6,
"max_forks_repo_forks_event_max_datetime": "2022-03-24T18:08:24.000Z",
"max_forks_repo_forks_event_min_datetime": "2017-11-12T16:28:... |
/*
* C version of Diffusive Nested Sampling (DNest4) by Brendon J. Brewer
*
* Yan-Rong Li, liyanrong@mail.ihep.ac.cn
* Jun 30, 2016
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <math.h>
#include <string.h>
#include <mpi.h>
#include <gsl/gsl_rng.h>
#include "dnest.h"
#include "model2... | {
"alphanum_fraction": 0.6196984925,
"avg_line_length": 23.0324074074,
"ext": "c",
"hexsha": "227055cfbbb570056100432c82cc2181ed8b327a",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
#ifndef VM_ALLOC_STACK_RESOURCE_H
#define VM_ALLOC_STACK_RESOURCE_H
#include "vm/alloc/memory_resource.h"
#include <gsl/span>
#include <cstddef>
namespace wasm {
struct StackOverflowError:
public std::bad_alloc
{
StackOverflowError(const char* pos, std::size_t count):
std::bad_alloc(), at(pos), requested(count)
... | {
"alphanum_fraction": 0.6719636776,
"avg_line_length": 23.5790754258,
"ext": "h",
"hexsha": "a8386c85d9b48c3454aab2a95601bbcf781086d3",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
#include "lah.h"
#ifdef HAVE_LAPACK
#include <lapacke.h>
#include <math.h>
/* Input Matrix P has to be symmetric positive semi-definite,
* e.g. real covarianz matrix */
lah_Return lah_matSqrt(lah_mat *P, lah_mat *Psqrt, lah_mat *Work)
{
lah_Return res = lahReturnOk;
lah_index i, j;
lah_value temp;
l... | {
"alphanum_fraction": 0.5308474576,
"avg_line_length": 25.4310344828,
"ext": "c",
"hexsha": "3d35e9463405b8c776904a6ff4933de7524041ab",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
/* specfunc/gsl_sf_hyperg.h
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman
*
* 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
* you... | {
"alphanum_fraction": 0.7197254815,
"avg_line_length": 29.1419354839,
"ext": "h",
"hexsha": "8366b88d04cd3c1048dd0f64711508bc92b33703",
"lang": "C",
"max_forks_count": 30,
"max_forks_repo_forks_event_max_datetime": "2021-03-30T23:53:15.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-02-01T15:12... |
#pragma once
#include <gsl/span>
namespace std {
using gsl::span;
} // namespace std
| {
"alphanum_fraction": 0.6818181818,
"avg_line_length": 11,
"ext": "h",
"hexsha": "017ff56b5374c87a700df055eb9bcdc7583ace4c",
"lang": "C",
"max_forks_count": 7,
"max_forks_repo_forks_event_max_datetime": "2022-01-23T00:37:50.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-01-28T02:16:25.000Z",
... |
#include <gsl/gsl_interp.h>
#include <unistd.h>
#include <stdio.h>
int main(int argc, char const *argv[]) {
double x = 4096.0;
int iterations = 1500;
for(int i=0; i<iterations; i++){
printf("%lf\n",x);
gsl_ieee_printf_double(&x);
printf("---------\n");
x = x/2;
}
return 0;
}
| {
"alphanum_fraction": 0.5742574257,
"avg_line_length": 18.9375,
"ext": "c",
"hexsha": "8fd6d00bea719bef080e6609fb82414bc4790e69",
"lang": "C",
"max_forks_count": 2,
"max_forks_repo_forks_event_max_datetime": "2019-05-29T10:19:18.000Z",
"max_forks_repo_forks_event_min_datetime": "2019-04-10T09:35:51.000... |
#include <mpi.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <gsl/gsl_math.h>
#include "allvars.h"
#include "proto.h"
#ifdef MPISENDRECV_SIZELIMIT
#undef MPI_Sendrecv
int MPI_Sizelimited_Sendrecv(void *sendbuf, int sendcount, MPI_Datatype sendtype,
int dest, int s... | {
"alphanum_fraction": 0.6557478368,
"avg_line_length": 21.5733333333,
"ext": "c",
"hexsha": "56566cb13abba1f5339b40e9c8c42c585bf14256",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
/*
* Copyright <2012> <Vincent Le Guilloux,Peter Schmidtke, Pierre Tuffery>
* Copyright <2013-2018> <Peter Schmidtke, Vincent Le Guilloux>
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... | {
"alphanum_fraction": 0.6941935484,
"avg_line_length": 31.9587628866,
"ext": "h",
"hexsha": "af89a317dbd16256627a319653e7aa381882cc0c",
"lang": "C",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2021-06-23T09:48:16.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-06-23T09:48:... |
//
// trmm.h
// Linear Algebra Template Library
//
// Created by Rodney James on 1/4/12.
// Copyright (c) 2012 University of Colorado Denver. All rights reserved.
//
#ifndef _trmm_h
#define _trmm_h
/// @file trmm.h Performs multiplication of a triangular matrix with a rectangular matrix.
#include <cctype>
#inclu... | {
"alphanum_fraction": 0.3579980942,
"avg_line_length": 29.4353658537,
"ext": "h",
"hexsha": "f3124443bdf186f698383fc97bce95f3241d552d",
"lang": "C",
"max_forks_count": 2,
"max_forks_repo_forks_event_max_datetime": "2022-02-09T23:18:24.000Z",
"max_forks_repo_forks_event_min_datetime": "2019-02-01T06:46:... |
/* specfunc/bessel_I0.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman
*
* 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 op... | {
"alphanum_fraction": 0.6489434219,
"avg_line_length": 25.1845493562,
"ext": "c",
"hexsha": "3fe0c64f94896a96584cc3039f6418c0d72fcc0a",
"lang": "C",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2015-10-02T01:32:59.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-10-02T01:32:... |
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#include <lapacke.h>
#define ABS(a) (((a) < 0) ? -(a) : (a))
int main()
{
/*
* hbar^2/2m = 1
*/
static double pi = M_PI;
int n, npw;
double v0, a, b, ecut, k;
double *g, *e, *h, *wrk;
int i, j, ij, m, lwork, info, p;
char *V = "V";
ch... | {
"alphanum_fraction": 0.4881627209,
"avg_line_length": 24.9916666667,
"ext": "c",
"hexsha": "3ca18ad6bb18bd137a1956595c76c474859d6723",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
/*
C code for the adiabatic approximation
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <math.h>
#include <gsl/gsl_math.h>
#include <gsl/gsl_errno.h>
#include <gsl/gsl_roots.h>
#include <gsl/gsl_min.h>
#include <gsl/gsl_integration.h>
#ifdef _OPENMP
#include <omp.h>
#endif
#define CHUNKSIZE ... | {
"alphanum_fraction": 0.6272049043,
"avg_line_length": 30.4955908289,
"ext": "c",
"hexsha": "81e69ac7a3542d7e1e0a27320f34dd48474cea56",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
//
// her2k.h
// Linear Algebra Template Library
//
// Created by Rodney James on 1/6/12.
// Copyright (c) 2012 University of Colorado Denver. All rights reserved.
//
#ifndef _her2k_h
#define _her2k_h
/// @file her2k.h Performs multiplication of two complex matrices resulting in a Hermitian matrix.
#include <cct... | {
"alphanum_fraction": 0.4320342205,
"avg_line_length": 28.8219178082,
"ext": "h",
"hexsha": "3bab530ee133d6b8ce15a0a570426f5416f9fa4a",
"lang": "C",
"max_forks_count": 2,
"max_forks_repo_forks_event_max_datetime": "2022-02-09T23:18:24.000Z",
"max_forks_repo_forks_event_min_datetime": "2019-02-01T06:46:... |
#include <bindings.cmacros.h>
#include <gsl/gsl_errno.h>
BC_INLINE2(GSL_ERROR_SELECT_2,int,int,int)
BC_INLINE3(GSL_ERROR_SELECT_3,int,int,int,int)
BC_INLINE4(GSL_ERROR_SELECT_4,int,int,int,int,int)
BC_INLINE5(GSL_ERROR_SELECT_5,int,int,int,int,int,int)
BC_INLINE2VOID(GSL_STATUS_UPDATE,int*,int)
| {
"alphanum_fraction": 0.8282828283,
"avg_line_length": 33,
"ext": "c",
"hexsha": "ed682a55ef036e40696571b01e6577e38754d870",
"lang": "C",
"max_forks_count": 19,
"max_forks_repo_forks_event_max_datetime": "2021-09-10T19:31:38.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-03T20:43:08.000Z",
... |
#pragma once
#include "CesiumGltfReader/Library.h"
#include <CesiumAsync/AsyncSystem.h>
#include <CesiumAsync/Future.h>
#include <CesiumAsync/HttpHeaders.h>
#include <CesiumAsync/IAssetAccessor.h>
#include <CesiumGltf/Model.h>
#include <CesiumJsonReader/ExtensionReaderContext.h>
#include <CesiumJsonReader/IExtensionJ... | {
"alphanum_fraction": 0.6956431964,
"avg_line_length": 28.4882352941,
"ext": "h",
"hexsha": "a2ccbdfc5a4e00d3d8546ff97862e55e27cd2a03",
"lang": "C",
"max_forks_count": 66,
"max_forks_repo_forks_event_max_datetime": "2022-03-31T13:38:41.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-03-30T15:14... |
/*
* BRAINS
* (B)LR (R)everberation-mapping (A)nalysis (I)n AGNs with (N)ested (S)ampling
* Yan-Rong Li, liyanrong@ihep.ac.cn
* Thu, Aug 4, 2016
*/
/*!
* \file smooth.c
* \brief smoothing functions using FFT provided by GSL.
*
* References: Press et al., Numerical Recipes, Chapter 13.1.
* GSL... | {
"alphanum_fraction": 0.6383297062,
"avg_line_length": 26.0709219858,
"ext": "c",
"hexsha": "ce8bb9d8b3f3bdb8eb011cb214a2e1ed228fa9dd",
"lang": "C",
"max_forks_count": 4,
"max_forks_repo_forks_event_max_datetime": "2020-11-22T12:54:58.000Z",
"max_forks_repo_forks_event_min_datetime": "2019-06-12T13:51:... |
#include <petsc.h>
#include <petscvec.h>
#include <petscmat.h>
#include <petscksp.h>
#include "del2mat.h"
#define DEL2MAT_MULT ((void(*)(void))Del2Mat_mult)
#define DEL2MAT_DIAG ((void(*)(void))Del2Mat_diag)
int main(int argc,char **argv)
{
PetscInt n;
PetscScalar h;
Del2Mat shell;
Mat A;
Vec x,b;
K... | {
"alphanum_fraction": 0.6649972176,
"avg_line_length": 28.9838709677,
"ext": "c",
"hexsha": "a6315f7a01e5ba75d59872409a9527cf5bad0ea9",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
#ifndef TESTING_COMMON
#define TESTING_COMMON
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define MAX(a, b) ((a) > (b) ? (a) : (b))
// header ------------------------------------------
#include "testing_setting.h"
#undef _IEEE_
#define __STDC_WANT_IEC_60559_TYPES_EXT__
#include <cstdio>
#include <cstdlib>
#include <cm... | {
"alphanum_fraction": 0.6920433518,
"avg_line_length": 32.8956521739,
"ext": "h",
"hexsha": "08f9672e01f356d3d0179f8a5aa6b20b499434f6",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
/**
*
* @file testing_sgemm.c
*
* PLASMA testing routines
* PLASMA is a software package provided by Univ. of Tennessee,
* Univ. of California Berkeley and Univ. of Colorado Denver
*
* @version 2.6.0
* @author Emmanuel Agullo
* @author Mathieu Faverge
* @date 2010-11-15
* @generated s Tue Jan 7 11:45:19... | {
"alphanum_fraction": 0.4462869503,
"avg_line_length": 34.531120332,
"ext": "c",
"hexsha": "120434f05f83bd967aba811f2a8d5a07f15fe800",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha": ... |
/*
* testnonsymm.c
* Patrick Alken
*
* Compile: gcc -g -O2 -Wall -o testnonsymm testnonsymm.c -lm -lgsl -lcblas -latlas
*
* Usage: testnonsymm [options]
*
* -i : incremental matrices
* -b : balance the matrices
* -z : compute Schur vectors and test them
* -n size : ... | {
"alphanum_fraction": 0.5281682222,
"avg_line_length": 21.8233128834,
"ext": "c",
"hexsha": "4dc926771b0273e02efa61578d1e46e21c612be7",
"lang": "C",
"max_forks_count": 2,
"max_forks_repo_forks_event_max_datetime": "2021-02-14T12:31:02.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-01-20T16:22:... |
#ifndef BASIC_DATA_STRUCTURE_H
#define BASIC_DATA_STRUCTURE_H
#include <vector>
#include <array>
#include <string>
#include <fstream>
#include <iostream>
#include <petsc.h>
#include <petscksp.h>
#include "petscsys.h"
#include "petscmat.h"
using namespace std;
/////////////////////////////////
// const int degree = 3... | {
"alphanum_fraction": 0.692746114,
"avg_line_length": 21.6853932584,
"ext": "h",
"hexsha": "d6be863d09137854c48267ead8d1783ed0cf23c3",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha": ... |
/* Copyright 2017 International Business Machines Corporation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or a... | {
"alphanum_fraction": 0.6910390324,
"avg_line_length": 28.873015873,
"ext": "h",
"hexsha": "2756a4fe34687579943e680f7741310d5a50468c",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha": ... |
#pragma once
#include <gsl/span>
#include <rapidjson/fwd.h>
#include <spdlog/fwd.h>
#include <memory>
namespace CesiumGltf {
struct Model;
}
namespace Cesium3DTilesSelection {
/**
* @brief Parses the provided B3DM batch table and adds an equivalent
* EXT_feature_metadata extension to the provided glTF.
*
* @pa... | {
"alphanum_fraction": 0.748655914,
"avg_line_length": 22.5454545455,
"ext": "h",
"hexsha": "d0f0b919fa95362de2c23cbb9f34d0160ccf5869",
"lang": "C",
"max_forks_count": 66,
"max_forks_repo_forks_event_max_datetime": "2022-03-31T13:38:41.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-03-30T15:14:... |
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#include <gsl/gsl_matrix.h>
#include <gsl/gsl_vector.h>
#include <gsl/gsl_linalg.h>
#include <gsl/gsl_blas.h>
#include "mathfunctions.h"
#include "globals.h"
#include "constitutive_equations.h"
/*******************************************************************... | {
"alphanum_fraction": 0.5892135676,
"avg_line_length": 27.8612565445,
"ext": "c",
"hexsha": "e4458da3afdf60d29c9700c88931488eb2f679bb",
"lang": "C",
"max_forks_count": 2,
"max_forks_repo_forks_event_max_datetime": "2020-04-03T20:59:00.000Z",
"max_forks_repo_forks_event_min_datetime": "2019-06-18T02:50:... |
/**
*
* @file testing_dtrsm.c
*
* PLASMA testing routines
* PLASMA is a software package provided by Univ. of Tennessee,
* Univ. of California Berkeley and Univ. of Colorado Denver
*
* @version 2.6.0
* @author Mathieu Faverge
* @date 2010-11-15
* @generated d Tue Jan 7 11:45:18 2014
*
**/
#include <std... | {
"alphanum_fraction": 0.5150826133,
"avg_line_length": 33.8307692308,
"ext": "c",
"hexsha": "af8b4a6231a73548a1abbba0042e781fdaf52ef9",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
#pragma once
#include <vector>
#include <chrono>
#include <complex>
#include <boost/circular_buffer.hpp>
#include <gsl/gsl_odeiv.h>
#include "Tract.h"
class SpeechSynthesizer
{
public:
double h_min;
private:
// vocal chord
const double m1; // mass 1 of vocal cords
const double m2; // mass 2 of v... | {
"alphanum_fraction": 0.6935483871,
"avg_line_length": 26.1971830986,
"ext": "h",
"hexsha": "2566245854d4e5ffe626a2b09dc568fb875cf4b2",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
#ifndef matops_h
#define matops_h
#include <ceed.h>
#include <petsc.h>
#include <petscdmplex.h>
#include "structs.h"
PetscErrorCode MatGetDiag(Mat A, Vec D);
PetscErrorCode ApplyLocal_Ceed(Vec X, Vec Y, UserO user);
PetscErrorCode MatMult_Ceed(Mat A, Vec X, Vec Y);
PetscErrorCode FormResidual_Ceed(SNES snes, Vec X, ... | {
"alphanum_fraction": 0.7336601307,
"avg_line_length": 30.6,
"ext": "h",
"hexsha": "fa416e730e006952e3e7f4f0f77e00b7b1d62132",
"lang": "C",
"max_forks_count": 41,
"max_forks_repo_forks_event_max_datetime": "2022-03-01T13:02:07.000Z",
"max_forks_repo_forks_event_min_datetime": "2017-12-27T22:35:13.000Z"... |
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "compearth.h"
#ifdef COMPEARTH_USE_MKL
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wreserved-id-macro"
#pragma clang diagnostic ignored "-Wstrict-prototypes"
#endif
#include <mkl_cblas.h>
#ifdef __clang__
#pragma cla... | {
"alphanum_fraction": 0.5429125138,
"avg_line_length": 33.1376146789,
"ext": "c",
"hexsha": "cf066095cbf0b58a98ca91884025bb368bd67791",
"lang": "C",
"max_forks_count": 3,
"max_forks_repo_forks_event_max_datetime": "2022-02-28T13:42:40.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-07-08T00:13:... |
//CELL (~soma) stage: IIR filtering of each row or col of X according to dim.
//The IIR filters are specified by an Nx(Q+1) or (Q+1)xN matrix A,
//where Q is the IIR filter order (Q=0 means only a0; Q=1 means a0 and a1; etc.).
//The calling program must ensure that the sizes are correct, the filter is stable, etc.
//... | {
"alphanum_fraction": 0.4530954312,
"avg_line_length": 40.2065217391,
"ext": "c",
"hexsha": "70803d683e9474b510312a9d2f1b444d95b93675",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
/* specfunc/trig.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman
*
* 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)... | {
"alphanum_fraction": 0.6141632425,
"avg_line_length": 25.5349740933,
"ext": "c",
"hexsha": "a604cd86a5a1544802ff1e0e876a1b36b81990fd",
"lang": "C",
"max_forks_count": 40,
"max_forks_repo_forks_event_max_datetime": "2022-03-03T23:23:37.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-02-26T15:31... |
#ifndef I3SPRNGRANDOMSERVICE_H
#define I3SPRNGRANDOMSERVICE_H
#include "phys-services/I3RandomService.h"
#include <gsl/gsl_randist.h>
#include <gsl/gsl_rng.h>
#include <gsl/gsl_test.h>
#include <string>
/**
* copyright (C) 2004
* the icecube collaboration
* $Id: I3SPRNGRandomService.h 127790 2015-01-14 04:03:0... | {
"alphanum_fraction": 0.70562636,
"avg_line_length": 24.7461538462,
"ext": "h",
"hexsha": "9a0cb07bd168dceebc58864e933de1a5c829429e",
"lang": "C",
"max_forks_count": 3,
"max_forks_repo_forks_event_max_datetime": "2021-03-30T16:44:18.000Z",
"max_forks_repo_forks_event_min_datetime": "2020-07-17T09:20:29... |
/*
* Player - One Hell of a Robot Server
* Copyright (C) 2000 Brian Gerkey & Kasper Stoy
* gerkey@usc.edu kaspers@robotics.usc.edu
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published... | {
"alphanum_fraction": 0.6353046595,
"avg_line_length": 27.4426229508,
"ext": "h",
"hexsha": "b7cbf8975c87b0cdc76a2116d8526a733d2a5624",
"lang": "C",
"max_forks_count": 2,
"max_forks_repo_forks_event_max_datetime": "2018-11-27T22:55:07.000Z",
"max_forks_repo_forks_event_min_datetime": "2018-11-16T16:14:... |
#ifndef PMVS3_OPTIM_H
#define PMVS3_OPTIM_H
#include <vector>
#include "patch.h"
#include <gsl/gsl_multimin.h>
namespace PMVS3 {
class CfindMatch;
class Coptim {
public:
Coptim(CfindMatch& findMatch);
void init(void);
//-----------------------------------------------------------------
// Image manipul... | {
"alphanum_fraction": 0.5950575314,
"avg_line_length": 37.3073170732,
"ext": "h",
"hexsha": "30729b6228eb63973e2348323d5b87303ddfcf57",
"lang": "C",
"max_forks_count": 14,
"max_forks_repo_forks_event_max_datetime": "2020-03-12T12:31:25.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-07-21T04:47... |
/**
*
* @file qwrapper_clantr.c
*
* PLASMA core_blas quark wrapper
* PLASMA is a software package provided by Univ. of Tennessee,
* Univ. of California Berkeley and Univ. of Colorado Denver
*
* @version 2.6.0
* @author Mathieu Faverge
* @date 2010-11-15
* @generated c Tue Jan 7 11:44:57 2014
*
**/
#inc... | {
"alphanum_fraction": 0.4834658853,
"avg_line_length": 34.3741007194,
"ext": "c",
"hexsha": "9947541e76e14c14d34e89ab67055a02a7198653",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
/**
*
* Copyright (c) 2017-2020 King Abdullah University of Science and Technology
* All rights reserved.
*
* ExaGeoStat is a software package provided by KAUST
**/
/**
*
* @file MLE_misc.h
*
* Header file of auxiliary functions that are needed by ExaGeoStat.
*
* @version 1.1.0
*
* @author Sameh Abdulah... | {
"alphanum_fraction": 0.6010273973,
"avg_line_length": 39.6772823779,
"ext": "h",
"hexsha": "dc78477919b5a601e75ad74dc8265510bf714056",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
/* $Id$ */
/*
* Copyright (c) 2014, 2015 Kristaps Dzonsons <kristaps@kcons.eu>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS... | {
"alphanum_fraction": 0.6923040255,
"avg_line_length": 28.3110661269,
"ext": "c",
"hexsha": "ba4729942773e0b6d57c6a2560957855c4d3febd",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
#ifndef PRIMAL_DUAL_LOOPLESS_H
#define PRIMAL_DUAL_LOOPLESS_H
#include "problem_data.h"
#include <string>
#include <gsl/gsl_rng.h>
#include <gsl/gsl_randist.h>
#include <stdio.h> /* printf */
#include <time.h>
#include <fstream>
#include <algorithm>
#include <iomanip>
#include <ctime>
#include <s... | {
"alphanum_fraction": 0.5619774891,
"avg_line_length": 25.0280797101,
"ext": "h",
"hexsha": "740385b1c37e0a49f063a626ca996fa0c273a5c8",
"lang": "C",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2021-01-15T04:23:24.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-01-15T04:23:... |
#pragma once
#include <assert.h>
#include <math.h>
#include <gsl/gsl_matrix.h>
#include <gsl/gsl_vector.h>
#include "defines.h"
#include "matrix_vector_ops.h"
#define DEFAULT_DIFF_ERROR_TOLERANCE 5e-5
#define DEFAULT_DIFF_STEPSIZE 1e-2
#define MAX_DIFF_CORRECTION_ATTEMPTS 100
#define RUNGE_KUTTA_ORDER 5
typedef i... | {
"alphanum_fraction": 0.5648011782,
"avg_line_length": 31.5813953488,
"ext": "h",
"hexsha": "645b419905d8edb0ce7488184a48fdab0cb6062a",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
/* Implementation for next reaction method */
#include <math.h>
#include <stdint.h>
#include <time.h>
#include <stdio.h>
#include <stdint.h>
#include <float.h>
#include <gsl/gsl_rng.h>
#include <gsl/gsl_randist.h>
#include "ssa.h"
#include "nrm.h"
#include "priorityq.h"
#include "depgraph.h"
const gsl_rng_type *SSA... | {
"alphanum_fraction": 0.5660490137,
"avg_line_length": 23.2361111111,
"ext": "c",
"hexsha": "24590755176c68344b33d7b986a4ded1f1e90108",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
#define _XOPEN_SOURCE 600
#include <stdlib.h>
#include <stdio.h>
#include <mpi.h>
#include <stdint.h>
#include <time.h>
#include <math.h>
#include <gsl/gsl_rng.h>
#include <gsl/gsl_randist.h>
#include <errno.h>
#include "fileio.h"
#include "likelihood.h"
#include "master_tasks.h"
#include "mutation.h"
#include "radix.... | {
"alphanum_fraction": 0.5946364105,
"avg_line_length": 26.7448275862,
"ext": "c",
"hexsha": "aa857326d592b833b71d88626808d7feb31024a0",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
#ifndef DDM__ALGORITHM__SUMMA_H_
#define DDM__ALGORITHM__SUMMA_H_
#include "../../ddm/Exception.h"
#include "../../ddm/Types.h"
#include "../../ddm/Pattern.h"
#include "../../ddm/Future.h"
#include "../../ddm/algorithm/Copy.h"
#include "../../ddm/util/Trace.h"
#include <utility>
// Prefer MKL if available:
#ifdef DD... | {
"alphanum_fraction": 0.5940067474,
"avg_line_length": 39.1226708075,
"ext": "h",
"hexsha": "69b1abe4154d856a11afd9f7100e036201bea787",
"lang": "C",
"max_forks_count": 6,
"max_forks_repo_forks_event_max_datetime": "2020-01-09T03:32:31.000Z",
"max_forks_repo_forks_event_min_datetime": "2019-06-03T16:56:... |
#include <stdio.h>
#include <gsl/gsl_rng.h>
/* https://www.gnu.org/software/gsl/doc/html/rng.html */
/* run as
./a.out 10000 rnd_u.csv
*/
gsl_rng * r; /* global generator */
int main(int argc, char **argv) {
const gsl_rng_type * T;
gsl_rng * r;
if( argc > 1) {
FILE *fp; /* file container for random n... | {
"alphanum_fraction": 0.5677749361,
"avg_line_length": 15.9591836735,
"ext": "c",
"hexsha": "2147e7018c5f69b4c937c375d883125caada3d4c",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
#include <stdio.h>
#include <gsl/gsl_sf_gamma.h>
int main() {
printf("hello, world!\n");
printf("%f\n", gsl_sf_gamma(1.0));
printf("%f\n", gsl_sf_gamma(1.5));
printf("%f\n", gsl_sf_gamma(2.0));
printf("%f\n", gsl_sf_gamma(2.5));
printf("%f\n", gsl_sf_gamma(3.0));
}
| {
"alphanum_fraction": 0.5841924399,
"avg_line_length": 24.25,
"ext": "c",
"hexsha": "51a471534bcd034202eac1fcee6475d5420d5649",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha": "4c368b... |
/* monte/test.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Michael Booth
*
* 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... | {
"alphanum_fraction": 0.6195424453,
"avg_line_length": 31.9064171123,
"ext": "c",
"hexsha": "2c2da55dfc3986af84ef189de33db9e480bda6e5",
"lang": "C",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2015-10-02T01:32:59.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-10-02T01:32:... |
#include <math.h>
#include <gsl/gsl_integration.h>
#include <gsl/gsl_roots.h>
#include <gsl/gsl_sf_hyperg.h>
#include <gsl/gsl_errno.h>
#include <gsl/gsl_math.h>
#include <fastpm/libfastpm.h>
void
fastpm_horizon_init(FastPMHorizon * horizon, FastPMCosmology * cosmology)
{
gsl_set_error_handler_off(); // Turn off... | {
"alphanum_fraction": 0.580581981,
"avg_line_length": 24.3129251701,
"ext": "c",
"hexsha": "8a0620a8afe4aa03df702cc7b2bb2607dda1b826",
"lang": "C",
"max_forks_count": 1,
"max_forks_repo_forks_event_max_datetime": "2021-04-14T23:24:19.000Z",
"max_forks_repo_forks_event_min_datetime": "2021-04-14T23:24:1... |
#include <viaio/Vlib.h>
#include <viaio/VImage.h>
#include <viaio/mu.h>
#include <viaio/option.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#include <gsl/gsl_cblas.h>
#include <gsl/gsl_matrix.h>
#include <gsl/gsl_vector.h>
#include <gsl/gsl_statistics.h>
#include <gsl/gsl_sort.h>
#... | {
"alphanum_fraction": 0.5890138322,
"avg_line_length": 22.2815964523,
"ext": "c",
"hexsha": "895c682901d9eccb2f520bca1331c6952f067709",
"lang": "C",
"max_forks_count": 8,
"max_forks_repo_forks_event_max_datetime": "2022-03-22T08:05:46.000Z",
"max_forks_repo_forks_event_min_datetime": "2017-09-29T10:33:... |
#ifndef OPENMC_PHOTON_H
#define OPENMC_PHOTON_H
#include "openmc/endf.h"
#include "openmc/memory.h" // for unique_ptr
#include "openmc/particle.h"
#include "openmc/vector.h"
#include <gsl/gsl>
#include <hdf5.h>
#include "xtensor/xtensor.hpp"
#include <string>
#include <unordered_map>
#include <utility> // for pair
... | {
"alphanum_fraction": 0.6379222108,
"avg_line_length": 29.8320610687,
"ext": "h",
"hexsha": "ca8f75474d0c9209cafd081e367903b346696dab",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
#include <stdio.h>
#include <gsl/gsl_monte.h>
#include <gsl/gsl_monte_vegas.h>
#include <gsl/gsl_math.h>
#include "timer.c"
#include "timer.h"
extern double g (double *t, size_t dim, void *params);
double dipole_approx (double r);
double gaussian (double *x, int dim);
int main (void)
{
double res, err;
si... | {
"alphanum_fraction": 0.5039619651,
"avg_line_length": 21.0333333333,
"ext": "c",
"hexsha": "8bb5abd328999908d32ad62315868ed45cd7e0a9",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
#include <pthread.h>
#include <stdlib.h>
#include <cblas.h>
#include "tasks.h"
void update_task_seq(void *ptr)
{
struct update_task_arg *arg = (struct update_task_arg*) ptr;
int nrows = arg->nrows;
int ncols = arg->ncols;
int nrhs = arg->nrhs;
double *L = arg->L;
int ldL = arg->ldL;
d... | {
"alphanum_fraction": 0.5126416739,
"avg_line_length": 21.641509434,
"ext": "c",
"hexsha": "312e83564b0bbff87318a9ed3ecb522471ea6b7b",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha": ... |
/* integration/qagp.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough
*
* 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)... | {
"alphanum_fraction": 0.5627537212,
"avg_line_length": 23.1389432485,
"ext": "c",
"hexsha": "fc8e039ff4330491e104a10adeb19f83bffaf6d5",
"lang": "C",
"max_forks_count": 40,
"max_forks_repo_forks_event_max_datetime": "2022-03-03T23:23:37.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-02-26T15:31... |
#pragma once
#include <memory>
#include "halley/text/halleystring.h"
#include "halley/core/graphics/texture.h"
#include <gsl/gsl>
namespace Halley
{
enum class ShaderType;
class MaterialDataBlock;
class Material;
enum class ShaderParameterType;
class Painter;
class MaterialDefinition;
class MaterialParameter;
... | {
"alphanum_fraction": 0.7595948827,
"avg_line_length": 28.8615384615,
"ext": "h",
"hexsha": "65801cc3f62382e63f716241b802fa07629840c4",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
/**
* @file bblas_sutil.c
*
* @brief BBLAS testing utilities for float routines.
*
* BBLAS is a software package provided by Univ. of Manchester,
* Univ. of Tennessee.
*
* @version 1.0.0
* @author Samuel D. Relton
* @author Pedro V. Lara
* @author Mawussi Zounon
* @date 2016-02-20
*
* Contains ro... | {
"alphanum_fraction": 0.6092867232,
"avg_line_length": 20.3010752688,
"ext": "c",
"hexsha": "928f5a0f4292c85e34f474d48901370af93ff7ca",
"lang": "C",
"max_forks_count": null,
"max_forks_repo_forks_event_max_datetime": null,
"max_forks_repo_forks_event_min_datetime": null,
"max_forks_repo_head_hexsha":... |
/////////////////////////////////////////////////////////////////////
// = NMatrix
//
// A linear algebra library for scientific computation in Ruby.
// NMatrix is part of SciRuby.
//
// NMatrix was originally inspired by and derived from NArray, by
// Masahiro Tanaka: http://narray.rubyforge.org
//
// == Copyright Inf... | {
"alphanum_fraction": 0.6809563067,
"avg_line_length": 25.2708333333,
"ext": "h",
"hexsha": "11a9594693135142cde344600b2e406b55242a71",
"lang": "C",
"max_forks_count": 131,
"max_forks_repo_forks_event_max_datetime": "2022-03-04T13:51:54.000Z",
"max_forks_repo_forks_event_min_datetime": "2015-01-16T08:0... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.