Home /
Expert Answers /
Computer Science /
assignments-write-a-julia-jupyter-notebook-to-do-the-assignments-1-30-points-in-project-1-you-ha-pa950
(Solved): Assignments Write a Julia jupyter notebook to do the assignments. 1 (30 points) In Project 1 you ha ...
Assignments Write a Julia jupyter notebook to do the assignments. 1 (30 points) In Project 1 you have implemented the following function: " " " sinx implements sin function with the Taylor series. Arguments: x angle n number of terms used degree x in degree if degree is true else in radians " " " function sinx(x,n=5; degree = true ) In this assignment you will revise this function to compute sinx for x=0:0.00001:90 degrees and using 1000 terms for the following four implementations: - Sequential - Sequential with @simd - @threads - @threads with @simd In your notebook, measure the runtimes of these four implementations, compare the results, and discuss the speed-up and efficiency of the parallel computing versions.