repo_id
stringlengths
21
96
file_path
stringlengths
31
155
content
stringlengths
1
92.9M
__index_level_0__
int64
0
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/run-nv-bench-filters.sh
#!/bin/bash param_shape=(512,512 3840,2160 3840,2160,3 192,192,192) param_filt=(gabor gaussian median rank_order unsharp_mask sobel prewitt scharr roberts roberts_pos_diag roberts_neg_diag farid laplace meijering sato frangi hessian threshold_isodata threshold_otsu threshold_yen threshold_local threshold_li threshold_m...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/_image_bench.py
import itertools import math import re import subprocess import time import types from collections import abc import cupy as cp import cupyx.scipy.ndimage import numpy as np import pandas as pd import scipy.ndimage import skimage.data from cucim.time import repeat def product_dict(**kwargs): # https://stackover...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/run-nv-bench-restoration.sh
#!/bin/bash param_shape=(512,512 3840,2160 3840,2160,3 192,192,192) param_filt=(denoise_tv_chambolle calibrate_denoiser wiener unsupervised_wiener richardson_lucy) param_dt=(float32 uint8) for shape in "${param_shape[@]}"; do for filt in "${param_filt[@]}"; do for dt in "${param_dt[@]}"; do pyth...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/cucim_segmentation_bench.py
import argparse import math import os import pickle import cupy as cp import numpy as np import pandas as pd import skimage import skimage.segmentation from _image_bench import ImageBench import cucim.skimage from cucim.skimage import data, measure class LabelBench(ImageBench): def __init__( self, ...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/run-nv-bench-feature.sh
#!/bin/bash param_shape=(512,512 3840,2160 3840,2160,3 192,192,192) param_filt=(multiscale_basic_features canny daisy structure_tensor hessian_matrix hessian_matrix_det shape_index corner_kitchen_rosenfeld corner_harris corner_shi_tomasi corner_foerstner corner_peaks match_template blob_dog blob_log blob_doh) param_dt=...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/cucim_feature_bench.py
import argparse import math import os import pickle import cupy as cp import numpy as np import pandas as pd import skimage import skimage.feature from _image_bench import ImageBench from skimage import data, draw import cucim.skimage import cucim.skimage.feature from cucim.skimage import exposure class BlobDetecti...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/cupyx_scipy_ndimage_morphology_bench.py
import os import pickle import cupy as cp import cupyx.scipy.ndimage import numpy as np import pandas as pd import scipy import scipy.ndimage as ndi from _image_bench import ImageBench class BinaryMorphologyBench(ImageBench): def __init__( self, function_name, shape, structure=Non...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/bench_convolve.py
""" Benchmark locally modified ndimage functions vs. their CuPy counterparts """ import cupy as cp import cupyx.scipy.ndimage as ndi from cupyx.profiler import benchmark from cucim.skimage._vendored.ndimage import ( # noqa: F401 convolve1d, correlate1d, gaussian_filter, gaussian_filter1d, gaussian...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/cucim_transform_bench.py
import argparse import os import pickle import numpy as np import pandas as pd import skimage import skimage.transform from _image_bench import ImageBench import cucim.skimage import cucim.skimage.transform def main(args): pfile = "cucim_transform_results.pickle" if os.path.exists(pfile): with open(...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/cucim_filters_bench.py
import argparse import os import pickle import numpy as np import pandas as pd import skimage import skimage.filters from _image_bench import ImageBench import cucim.skimage import cucim.skimage.filters def main(args): pfile = "cucim_filters_results.pickle" if os.path.exists(pfile): with open(pfile,...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/cupyx_scipy_ndimage_fourier_bench.py
import os import pickle import cupy import cupy as cp import numpy as np import pandas as pd from _image_bench import ImageBench pfile = "fourier_results.pickle" if os.path.exists(pfile): with open(pfile, "rb") as f: all_results = pickle.load(f) else: all_results = pd.DataFrame() dtypes = [np.float32...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/run-nv-bench-segmentation.sh
#!/bin/bash param_shape=(512,512 3840,2160 3840,2160,3 192,192,192) # these require an integer-valued label image param_filt=(clear_border expand_labels relabel_sequential find_boundaries mark_boundaries random_walker) param_dt=(float32) param_dt_label=(uint8 uint32) for shape in "${param_shape[@]}"; do for filt i...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/cupyx_scipy_ndimage_measurements_bench.py
import math import os import pickle import cupy import cupy as cp import cupyx.scipy.ndimage import numpy as np import pandas as pd import scipy import scipy.ndimage as ndi from _image_bench import ImageBench class LabelBench(ImageBench): def __init__( self, function_name, shape, ...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/run-nv-bench-measure.sh
#!/bin/bash param_shape=(512,512 3840,2160 3840,2160,3 192,192,192) param_filt=(label regionprops moments moments_central centroid inertia_tensor inertia_tensor_eigvals block_reduce shannon_entropy profile_line) param_dt=(float32 uint8) for shape in "${param_shape[@]}"; do for filt in "${param_filt[@]}"; do ...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/cucim_registration_bench.py
import argparse import math import os import pickle import cupy as cp import numpy as np import pandas as pd import skimage import skimage.registration from _image_bench import ImageBench import cucim.skimage import cucim.skimage.registration class RegistrationBench(ImageBench): def set_args(self, dtype): ...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/cupyx_scipy_ndimage_interp_bench.py
import math import os import pickle import cupy import cupy as cp import numpy as np import pandas as pd from _image_bench import ImageBench class InterpolationBench(ImageBench): def set_args(self, dtype): imaged = cupy.testing.shaped_random(self.shape, xp=cp, dtype=dtype) image = cp.asnumpy(imag...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/run-nv-bench-morphology.sh
#!/bin/bash param_shape=(512,512 3840,2160 3840,2160,3 192,192,192) param_filt=(binary_erosion binary_dilation binary_opening binary_closing isotropic_erosion isotropic_dilation isotropic_opening isotropic_closing remove_small_objects remove_small_holes erosion dilation opening closing white_tophat black_tophat medial_...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/run-nv-bench-registration.sh
#!/bin/bash param_shape=(512,512 3840,2160 3840,2160,3 192,192,192) param_filt=(phase_cross_correlation optical_flow_tvl1 optical_flow_ilk) param_dt=(float32 uint8) for shape in "${param_shape[@]}"; do for filt in "${param_filt[@]}"; do for dt in "${param_dt[@]}"; do python cucim_registration_be...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/cucim_color_bench.py
import argparse import os import pickle import cupy import cupy as cp import cupyx.scipy.ndimage import numpy as np import pandas as pd import scipy import skimage import skimage.color from _image_bench import ImageBench import cucim.skimage import cucim.skimage.color func_name_choices = [ "convert_colorspace", ...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/requirements-bench.txt
pandas>=1.0 tabulate>=0.8.7
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/cucim_restoration_bench.py
import argparse import math import os import pickle import cupy as cp import cupyx.scipy.ndimage as ndi import numpy as np import pandas as pd import skimage import skimage.restoration from _image_bench import ImageBench from skimage.restoration import denoise_tv_chambolle as tv_cpu import cucim.skimage import cucim....
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/cucim_measure_bench.py
import argparse import math import os import pickle import cupy as cp import numpy as np import pandas as pd import skimage import skimage.measure from _image_bench import ImageBench from cucim_metrics_bench import MetricsBench import cucim.skimage import cucim.skimage.measure class LabelBench(ImageBench): def ...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/cucim_metrics_bench.py
import argparse import os import pickle import cupy as cp import numpy as np import pandas as pd import skimage import skimage.metrics from _image_bench import ImageBench import cucim.skimage import cucim.skimage.metrics from cucim.skimage import data, measure class MetricsBench(ImageBench): def set_args(self, ...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/run-all.sh
for file in ./cu*py do echo $file time python "$file" done
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/run-nv-bench-transform.sh
#!/bin/bash param_shape=(512,512 3840,2160 3840,2160,3 192,192,192) param_filt=(resize resize_local_mean rescale rotate downscale_local_mean warp_polar integral_image pyramid_gaussian pyramid_laplacian) param_dt=(float32 uint8) for shape in "${param_shape[@]}"; do for filt in "${param_filt[@]}"; do for dt i...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/run-nv-bench-color.sh
#!/bin/bash param_shape=(512,512 3840,2160 192,192,192) param_filt=(convert_colorspace rgb2hed hed2rgb lab2lch lch2lab xyz2lab lab2xyz rgba2rgb label2rgb) param_dt=(float32 uint8) for shape in "${param_shape[@]}"; do for filt in "${param_filt[@]}"; do for dt in "${param_dt[@]}"; do python cucim_...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/run-nv-bench-metrics.sh
#!/bin/bash param_shape=(512,512 3840,2160 3840,2160,3 192,192,192) param_filt=(structural_similarity mean_squared_error normalized_root_mse peak_signal_noise_ratio normalized_mutual_information) param_dt=(float32 uint8) for shape in "${param_shape[@]}"; do for filt in "${param_filt[@]}"; do for dt in "${pa...
0
rapidsai_public_repos/cucim/benchmarks
rapidsai_public_repos/cucim/benchmarks/skimage/cucim_morphology_bench.py
import argparse import copy import functools import math import operator import os import pickle import cupy as cp import numpy as np import pandas as pd import scipy.ndimage as ndi import skimage import skimage.data import skimage.morphology from _image_bench import ImageBench import cucim.skimage import cucim.skima...
0
rapidsai_public_repos/cucim
rapidsai_public_repos/cucim/cpp/CMakeLists.txt
# # Copyright (c) 2020-2021, 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 or agr...
0
rapidsai_public_repos/cucim/cpp/include
rapidsai_public_repos/cucim/cpp/include/cucim/cuimage.h
/* * Copyright (c) 2020-2022, 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...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/util/cuda.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/util/platform.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/util/file.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/config/config.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim/3rdparty
rapidsai_public_repos/cucim/cpp/include/cucim/3rdparty/dlpack/dlpack.h
// From https://github.com/dmlc/dlpack/blob/v0.6/include/dlpack/dlpack.h // clang-format off /*! * Copyright (c) 2017 by Contributors * \file dlpack.h * \brief The common header of DLPack. */ #ifndef DLPACK_DLPACK_H_ #define DLPACK_DLPACK_H_ #ifdef __cplusplus #define DLPACK_EXTERN_C extern "C" #else #define DLPA...
0
rapidsai_public_repos/cucim/cpp/include/cucim/3rdparty
rapidsai_public_repos/cucim/cpp/include/cucim/3rdparty/dlpack/dlpackcpp.h
// From https://github.com/dmlc/dlpack/blob/v0.6/contrib/dlpack/dlpackcpp.h // clang-format off /*! * Copyright (c) 2017 by Contributors * \file dlpackcpp.h * \brief Example C++ wrapper of DLPack */ #ifndef DLPACK_DLPACKCPP_H_ #define DLPACK_DLPACKCPP_H_ #include <dlpack/dlpack.h> #include <cstdint> // for int6...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/dynlib/helper.h
/* * Copyright (c) 2020, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/cache/image_cache_config.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/cache/image_cache.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/cache/image_cache_manager.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/cache/cache_type.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/logger/logger.h
/* * Copyright (c) 2020, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/logger/timer.h
/* * Copyright (c) 2020, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/core/interface.h
/* * Copyright (c) 2020, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/core/framework.h
/* * Copyright (c) 2020-2021, 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...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/core/version.h
/* * Copyright (c) 2020, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/core/plugin.h
/* * Copyright (c) 2020, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/core/plugin_util.h
/* * Copyright (c) 2020, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/cpp20/find_if.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/profiler/profiler_config.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/profiler/profiler.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/profiler/nvtx3.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/filesystem/cufile_driver.h
/* * Copyright (c) 2020-2022, 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...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/filesystem/file_path.h
/* * Copyright (c) 2020, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/filesystem/file_handle.h
/* * Copyright (c) 2020-2022, 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...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/concurrent/threadpool.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/memory/dlpack.h
/* * Copyright (c) 2020-2022, 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...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/memory/memory_manager.h
/* * Copyright (c) 2020-2021, 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...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/loader/tile_info.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/loader/batch_data_processor.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/loader/thread_batch_data_loader.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/plugin/plugin_config.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/plugin/image_format.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/macros/defines.h
/* * Copyright (c) 2020, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/macros/api_header.h
/* * Copyright (c) 2020, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/codec/base64.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/codec/hash_function.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/codec/methods.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/io/device_type.h
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/include/cucim
rapidsai_public_repos/cucim/cpp/include/cucim/io/device.h
/* * Copyright (c) 2020-2021, 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...
0
rapidsai_public_repos/cucim/cpp/include/cucim/io
rapidsai_public_repos/cucim/cpp/include/cucim/io/format/image_format.h
/* * Copyright (c) 2020-2021, 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...
0
rapidsai_public_repos/cucim/cpp
rapidsai_public_repos/cucim/cpp/tests/config.h
/* * Apache License, Version 2.0 * Copyright 2021 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 re...
0
rapidsai_public_repos/cucim/cpp
rapidsai_public_repos/cucim/cpp/tests/test_metadata.cpp
/* * Copyright (c) 2020-2022, 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...
0
rapidsai_public_repos/cucim/cpp
rapidsai_public_repos/cucim/cpp/tests/CMakeLists.txt
# # Copyright (c) 2020, 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 or agreed t...
0
rapidsai_public_repos/cucim/cpp
rapidsai_public_repos/cucim/cpp/tests/test_read_region.cpp
/* * Copyright (c) 2020-2022, 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...
0
rapidsai_public_repos/cucim/cpp
rapidsai_public_repos/cucim/cpp/tests/main.cpp
/* * Copyright (c) 2020, 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 ...
0
rapidsai_public_repos/cucim/cpp
rapidsai_public_repos/cucim/cpp/tests/test_cufile.cpp
/* * Copyright (c) 2020, 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 ...
0
rapidsai_public_repos/cucim/cpp/plugins
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/CMakeLists.txt
# Apache License, Version 2.0 # Copyright 2021 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 app...
0
rapidsai_public_repos/cucim/cpp/plugins
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.editorconfig
[*] indent_style = space indent_size = 4 charset = utf-8 trim_trailing_whitespace = true max_line_length = 120 insert_final_newline = true
0
rapidsai_public_repos/cucim/cpp/plugins
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.clang-format
AccessModifierOffset: -4 AlignAfterOpenBracket: Align AlignConsecutiveAssignments: false AlignConsecutiveDeclarations: false AlignEscapedNewlinesLeft: false AlignTrailingComments: false AllowAllParametersOfDeclarationOnNextLine: true AllowShortFunctionsOnASingleLine: false AllowShortIfStatementsOnASingleLine: false All...
0
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/tests/config.h
/* * Apache License, Version 2.0 * Copyright 2021 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 re...
0
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/tests/test_basic.cpp
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/tests/CMakeLists.txt
# # Copyright (c) 2021, 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 or agreed t...
0
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/tests/main.cpp
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/benchmarks/config.h
/* * Apache License, Version 2.0 * Copyright 2021 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 re...
0
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/benchmarks/CMakeLists.txt
# # Copyright (c) 2021, 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 or agreed t...
0
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/benchmarks/main.cpp
/* * Copyright (c) 2021, 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 ...
0
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea/misc.xml
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="CMakeWorkspace" PROJECT_DIR="$PROJECT_DIR$" /> <component name="JavaScriptSettings"> <option name="languageLevel" value="ES6" /> </component> </project>
0
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea/.name
cumed
0
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea/cucim.kit.cumed.iml
<?xml version="1.0" encoding="UTF-8"?> <module classpath="CMake" type="CPP_MODULE" version="4" />
0
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea/vcs.xml
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="VcsDirectoryMappings"> <mapping directory="$PROJECT_DIR$/../../.." vcs="Git" /> </component> </project>
0
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea/codeStyles/codeStyleConfig.xml
<component name="ProjectCodeStyleConfiguration"> <state> <option name="USE_PER_PROJECT_SETTINGS" value="true" /> </state> </component>
0
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea/codeStyles/Project.xml
<component name="ProjectCodeStyleConfiguration"> <code_scheme name="Project" version="173"> <clangFormatSettings> <option name="ENABLED" value="true" /> </clangFormatSettings> </code_scheme> </component>
0
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea/fileTemplates
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea/fileTemplates/includes/NVIDIA_CMAKE_HEADER.cmake
# # Copyright (c) $YEAR, 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 or agreed ...
0
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea/fileTemplates
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea/fileTemplates/includes/NVIDIA_C_HEADER.h
/* * Copyright (c) $YEAR, 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...
0
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea/fileTemplates
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea/fileTemplates/internal/CMakeLists.txt.cmake
#parse("NVIDIA_CMAKE_HEADER.cmake")
0
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea/fileTemplates
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea/fileTemplates/internal/C Header File.h
#parse("NVIDIA_C_HEADER.h") #[[#ifndef]]# ${INCLUDE_GUARD} #[[#define]]# ${INCLUDE_GUARD} #[[#endif]]# //${INCLUDE_GUARD}
0
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea/fileTemplates
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea/fileTemplates/internal/C++ Class.cc
#parse("NVIDIA_C_HEADER.h") #[[#include]]# "${HEADER_FILENAME}"
0
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea/fileTemplates
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea/fileTemplates/internal/C Source File.c
#parse("NVIDIA_C_HEADER.h") #if (${HEADER_FILENAME}) #[[#include]]# "${HEADER_FILENAME}" #end
0
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea/fileTemplates
rapidsai_public_repos/cucim/cpp/plugins/cucim.kit.cumed/.idea/fileTemplates/internal/C++ Class Header.h
#parse("NVIDIA_C_HEADER.h") #[[#ifndef]]# ${INCLUDE_GUARD} #[[#define]]# ${INCLUDE_GUARD} ${NAMESPACES_OPEN} class ${NAME} { }; ${NAMESPACES_CLOSE} #[[#endif]]# //${INCLUDE_GUARD}
0