Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

Recent questions tagged parallel

0 votes
601 views
1 answer
    How to call a function with simple inputs in several MATLAB sessions automatically? The manual way to do it ... bothering the other sessions. See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
734 views
1 answer
    How do you move data from one processor to another in julia? Say I have an array a = [1:10] Or ... those processors as the same variable name? See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
625 views
1 answer
    I am having trouble understanding the concept of blocking communication and non-blocking communication in MPI. ... advantages and disadvantages? See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
892 views
1 answer
    When I try the following code double start = omp_get_wtime(); long i; #pragma omp parallel for for (i = ... version that's faster that the sequential one? Question&Answers:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
691 views
1 answer
    Let's say I have a 4-core CPU, and I want to run some process in the minimum amount of time. The process ... I run it using 4000 threads rather than 4 threads? Question&Answers:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
780 views
1 answer
    I am doing a machine learning project in Python, so I have to do parallel predict function, which ... problems with multiprocessing module in pickling function. Question&Answers:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
703 views
1 answer
    How do you send blocks of 2-D array to different processors? Suppose the 2D array size is 400x400 an I want to ... final result. I am using MPI in C programs. Question&Answers:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
649 views
1 answer
    This is probably a trivial question, but how do I parallelize the following loop in python? # setup output lists ... s the easiest way to parallelize this code? Question&Answers:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
641 views
1 answer
    I have this code (file name is test.jl) which is a simplified version of a more complex code: ... /distributed-calculus-in-julia-with-python-imported-code-undefvarerror-anon...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.1k views
1 answer
    I am new in R. I am trying to use the covmat package. I think the problem in parallel process ... /error-in-checkforremoteerrorsval-2-nodes-produced-errors-first-error-subsc...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
779 views
1 answer
    I'm using some ready-made scripts for distributed training of my model, and not understanding very ... /questions/65878299/distributed-evaluation-of-validation-dataset-in-pytorch...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
674 views
1 answer
    I have been trying to implement some code requiring to call reduce on thrust::device_ptr, and the results are ... .com/questions/65912029/value-of-sum-from-thrustreduce-not-correct...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
802 views
1 answer
    I developed a pipeline written in Snakemake for genome variant calling analysis. I'm trying to parallelize ... -calling-pipeline-parallelization-error-sbatch-not-found-error-submi...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
641 views
1 answer
    I am breaking a very large text file up into smaller chunks, and performing further processing on the chunks. ... -do-i-have-idle-workers-when-using-python-multiprocessing-pools...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
654 views
1 answer
    I'm doing an university project on the topic of parallel computing. I've created a program that solves a system of ... -runs-normally-when-i-run-it-on-my-computer-but-freezes...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
668 views
1 answer
    I have a single file of CUDA code compiled to intermediate language PTX code, example.ptx. I would be interested ... /using-nvdisasm-to-generate-control-flow-image-of-ptx-code...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
667 views
1 answer
    I need to do run some computations to update object attributes. I want to use parallel computing ... /questions/65931142/using-python-multiprocessing-to-run-object-computations...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
559 views
1 answer
    I would like to parallelize population dynamics for individuals moving on a 2D landscape. The landscape will be ... /65932565/shared-memory-and-population-dynamics-on-a-landscape...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
871 views
1 answer
    I'm trying to run a simple example of dynamic parallelism in cuda. the code of the .cu file is __global__ ... /65599979/how-to-compile-cu-file-for-dynamic-parallelism-with-matlab...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
718 views
1 answer
    I am trying to write an OpenCL code to do element-wise operations on multi-dimensional arrays. I know that ... .com/questions/65643402/opencl-element-wise-operations-on-4d-array...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
603 views
1 answer
    cl_device_id is defined as "typedef struct _cl_device_id *cl_device_id". In the openCL method clGetDeviceIDs, "devices" parameter ... get-the-size-of-cl-devide-id-struct-in-opencl...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
833 views
1 answer
    I am doing a machine learning project in Python, so I have to do parallel predict function, which I'm ... /26432411/multiprocessing-dummy-in-python-is-not-utilising-100-cpu...
asked Oct 6, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
722 views
1 answer
    I am doing a machine learning project in Python, so I have to do parallel predict function, which I'm ... /26432411/multiprocessing-dummy-in-python-is-not-utilising-100-cpu...
asked Oct 6, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
642 views
1 answer
    I'm interested in using OCaml for a project, however I'm not sure about where its parallelization ... questions/6588500/what-is-the-state-of-ocamls-parallelization-abilities...
asked Oct 6, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
649 views
1 answer
    I'm interested in using OCaml for a project, however I'm not sure about where its parallelization ... questions/6588500/what-is-the-state-of-ocamls-parallelization-abilities...
asked Oct 6, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
591 views
1 answer
    I know that MPI_PACK() is used to bundle the non-contiguous data together and send them, but what is ... https://stackoverflow.com/questions/66052004/advantage-of-using-mpi-pack...
asked Oct 6, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
669 views
1 answer
    I know that MPI_PACK() is used to bundle the non-contiguous data together and send them, but what is ... https://stackoverflow.com/questions/66052004/advantage-of-using-mpi-pack...
asked Oct 6, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
815 views
1 answer
    I'm trying to run a simple example of dynamic parallelism in cuda. the code of the .cu file is __global__ ... requires separate compilation mode Does anyone know how to fix it?...
asked Feb 19, 2021 in Technique[技术] by 深蓝 (71.8m points)
To see more, click for the full list of questions or popular tags.
Ask a question:
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.8k users

...