<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re:The code in parallel_for is not covered by llvm code coverage in Intel® oneAPI DPC++/C++ Compiler</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/The-code-in-parallel-for-is-not-covered-by-llvm-code-coverage/m-p/1449576#M2739</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for providing the details.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;The code coverage percentage shown by the general commands might not be significant. We should not read it as an absolute value of how much the "original" source codes have been covered.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;gt;As all the lines of main is executed, it should shows cover as 100% (for now its shoes as 50%).&lt;/EM&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And also, the compiler generates a lot of extra codes including the codes from the header files. So, the code coverage percentage will be generated based on all the lines of code generated by the compiler.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I hope this helps resolve your query.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 24 Jan 2023 10:44:37 GMT</pubDate>
    <dc:creator>VarshaS_Intel</dc:creator>
    <dc:date>2023-01-24T10:44:37Z</dc:date>
    <item>
      <title>The code in parallel_for is not covered by llvm code coverage</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/The-code-in-parallel-for-is-not-covered-by-llvm-code-coverage/m-p/1445593#M2726</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried to generate a code coverage report for my DPC++ code using llvm, but it is not displaying the correct result, even if each line of code is running.&lt;/P&gt;
&lt;P&gt;Following some debugging, I discovered that it is not covering specific code under parallel for.&lt;/P&gt;
&lt;P&gt;Sample code:-&lt;/P&gt;
&lt;P&gt;main.cpp&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;#include &amp;lt;CL/sycl.hpp&amp;gt;
#include &amp;lt;iostream&amp;gt;
using namespace std;
using namespace sycl;
const std::string secret {
    "Ifmmp-!xpsme\"\012J(n!tpssz-!Ebwf/!"
        "J(n!bgsbje!J!dbo(u!ep!uibu/!.!IBM\01"};
const auto sz = secret.size();
int main() {
    queue Q;
    char*result = malloc_shared&amp;lt;char&amp;gt;(sz, Q);
    std::memcpy(result,secret.data(),sz);
    Q.parallel_for(sz,[=](auto&amp;amp;i) {
        // Temp/extra code start(This is added to increase code inside parallel_for)
        result[i] -= 1;
        result[i] += 1;
        result[i] -= 1;
        result[i] += 1;
        result[i] -= 1;
        result[i] += 1;
        // Temp/extra code end..
        result[i] -= 1;
        });
    Q.wait();
    std::cout &amp;lt;&amp;lt; result &amp;lt;&amp;lt; "\n";
    return 0;
}
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;makefile&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;CC  = dpcpp
CFLAG = -fprofile-instr-generate -fcoverage-mapping
RM  = rm -rf
export LLVM__ROOT = /opt/intel/oneapi/compiler/2022.1.0/linux/bin-llvm
help: ## Makefile help
	@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
main.o: main.cpp
	$(CC) $(CFLAG) -c -Wall  main.cpp
build: main.o ## Make build
	$(CC) $(CFLAG) -o main main.o
coverage: ## Run code coverage
	LLVM_PROFILE_FILE="main.profraw" ./main
	$(LLVM__ROOT)/llvm-profdata merge -sparse main.profraw -o main.profdata
	$(LLVM__ROOT)/llvm-cov report ./main -instr-profile=main.profdata
clean: ## Clean all generate files
	$(RM) main *.o *.profdata *.profraw
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&lt;SPAN class="sub_section_element_selectors"&gt;Steps to generate code coverage,&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;$ make build
$ ./main
$ make coverage&lt;/LI-CODE&gt;
&lt;P class="sub_section_element_selectors"&gt;&lt;SPAN class="sub_section_element_selectors"&gt;Code coverage report :-&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;Filename                      Regions    Missed Regions     Cover   Functions  Missed Functions  Executed       Lines      Missed Lines     Cover    Branches   Missed Branches     Cover
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
main-0fb086.cpp                     2                 1    50.00%           2                 1    50.00%          26                 9    65.38%           0                 0         -
main-header-16a1df.h                8                 4    50.00%           8                 4    50.00%          12                 6    50.00%           0                 0         -
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
TOTAL                              10                 5    50.00%          10                 5    50.00%          38                15    60.53%           0                 0         -
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Paavan_Joshi_0-1673415286003.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/36943i1A2DC52DB8C204E9/image-size/medium?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="Paavan_Joshi_0-1673415286003.png" alt="Paavan_Joshi_0-1673415286003.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&lt;SPAN class="sub_section_element_selectors"&gt;Could anyone help with identifying the problem and solution, please?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jan 2023 05:34:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/The-code-in-parallel-for-is-not-covered-by-llvm-code-coverage/m-p/1445593#M2726</guid>
      <dc:creator>Paavan_Joshi</dc:creator>
      <dc:date>2023-01-11T05:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: The code in parallel_for is not covered by llvm code coverage</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/The-code-in-parallel-for-is-not-covered-by-llvm-code-coverage/m-p/1446421#M2729</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for posting in Intel Communities.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please let us know the OS details, CPU, and GPU details you are using?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And also, could you please let us know on which device selector you are using by using the below command?&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;SYCL_PI_TRACE=1 ./main (./main is the executable that got generated)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;gt;but it is not displaying the correct result, even if each line of code is running.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Could you please let us know what are the expected results?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Varsha&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jan 2023 11:21:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/The-code-in-parallel-for-is-not-covered-by-llvm-code-coverage/m-p/1446421#M2729</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2023-01-13T11:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: The code in parallel_for is not covered by llvm code coverage</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/The-code-in-parallel-for-is-not-covered-by-llvm-code-coverage/m-p/1446984#M2731</link>
      <description>&lt;P&gt;Hi Varsha,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt; Could you please let us know the OS details, CPU, and GPU details you are using?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- The output of clinfo is stored to a file and attached to the reply.&lt;/P&gt;
&lt;P&gt;OS :-&amp;nbsp;Ubuntu 20.04.5 LTS&lt;/P&gt;
&lt;PRE&gt;cat /proc/cpuinfo&lt;BR /&gt;&lt;BR /&gt;vendor_id : GenuineIntel&lt;BR /&gt;cpu family : 6&lt;BR /&gt;model : 190&lt;BR /&gt;model name : Genuine Intel(R) 0000&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;&amp;nbsp;And also, could you please let us know on which device selector you are using by using the below command?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;SYCL_PI_TRACE=1 ./main (./main is the executable that got generated)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;SYCL_PI_TRACE[basic]: Plugin found and successfully loaded: libpi_opencl.so
SYCL_PI_TRACE[all]: Selected device -&amp;gt;
SYCL_PI_TRACE[all]:   platform: Intel(R) OpenCL HD Graphics
SYCL_PI_TRACE[all]:   device: Intel(R) Graphics [0x46d1]
Hello, world!   I'm sorry, Dave. I'm afraid I can't do that. - HAL
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-&amp;gt;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;cout &amp;lt;&amp;lt; &lt;/SPAN&gt;&lt;SPAN&gt;"Running on "&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;&amp;lt; &lt;/SPAN&gt;&lt;SPAN&gt;Q&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;get_device&lt;/SPAN&gt;&lt;SPAN&gt;().&lt;/SPAN&gt;&lt;SPAN&gt;get_info&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;info&lt;/SPAN&gt;&lt;SPAN&gt;::&lt;/SPAN&gt;&lt;SPAN&gt;device&lt;/SPAN&gt;&lt;SPAN&gt;::name&amp;gt;()&amp;lt;&amp;lt; &lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;\n&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;Running on Intel(R) Graphics [0x46d1]
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;&amp;nbsp;Could you please let us know what are the expected results?&lt;/P&gt;
&lt;P&gt;As all the lines of main is executed, it should shows cover as 100% (for now its shoes as 50%).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Paavan&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jan 2023 06:33:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/The-code-in-parallel-for-is-not-covered-by-llvm-code-coverage/m-p/1446984#M2731</guid>
      <dc:creator>Paavan_Joshi</dc:creator>
      <dc:date>2023-01-16T06:33:10Z</dc:date>
    </item>
    <item>
      <title>Re:The code in parallel_for is not covered by llvm code coverage</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/The-code-in-parallel-for-is-not-covered-by-llvm-code-coverage/m-p/1449576#M2739</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for providing the details.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;The code coverage percentage shown by the general commands might not be significant. We should not read it as an absolute value of how much the "original" source codes have been covered.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;gt;As all the lines of main is executed, it should shows cover as 100% (for now its shoes as 50%).&lt;/EM&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And also, the compiler generates a lot of extra codes including the codes from the header files. So, the code coverage percentage will be generated based on all the lines of code generated by the compiler.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I hope this helps resolve your query.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Jan 2023 10:44:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/The-code-in-parallel-for-is-not-covered-by-llvm-code-coverage/m-p/1449576#M2739</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2023-01-24T10:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: The code in parallel_for is not covered by llvm code coverage</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/The-code-in-parallel-for-is-not-covered-by-llvm-code-coverage/m-p/1449969#M2748</link>
      <description>&lt;P&gt;Hi Varsha&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, even if I add more lines of code inside a particular parallel_for, the percentage of code coverage will still decrease.&lt;/P&gt;
&lt;P&gt;Please check the attached screenshots:-&lt;/P&gt;
&lt;P&gt;1 line of code inside&amp;nbsp;parallel_for :-&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="COVERAGE_1_PARALLEL_FOR_LINES.TXT.jpg" style="width: 999px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/37418iE8A26B43D8A4DB9E/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="COVERAGE_1_PARALLEL_FOR_LINES.TXT.jpg" alt="COVERAGE_1_PARALLEL_FOR_LINES.TXT.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - covers :- 80% of code.&lt;/P&gt;
&lt;P&gt;7 lines of code inside&amp;nbsp;parallel_for :-&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="COVERAGE_7_PARALLEL_FOR_LINES.TXT.jpg" style="width: 999px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/37419iF1B2F3DE9B8E01C6/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="COVERAGE_7_PARALLEL_FOR_LINES.TXT.jpg" alt="COVERAGE_7_PARALLEL_FOR_LINES.TXT.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - covers :- 66.67% of code.&lt;/P&gt;
&lt;P&gt;13 lines of code inside&amp;nbsp;parallel_for :-&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="COVERAGE_13_PARALLEL_FOR_LINES.TXT.jpg" style="width: 999px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/37420i1AEB19181B170F46/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="COVERAGE_13_PARALLEL_FOR_LINES.TXT.jpg" alt="COVERAGE_13_PARALLEL_FOR_LINES.TXT.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - covers :- 61.54% of code.&lt;/P&gt;
&lt;P&gt;As a result of this discovery, I have a suspicion that it is not covering a certain parallel_for area of the code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;Paavan&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2023 12:42:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/The-code-in-parallel-for-is-not-covered-by-llvm-code-coverage/m-p/1449969#M2748</guid>
      <dc:creator>Paavan_Joshi</dc:creator>
      <dc:date>2023-01-25T12:42:49Z</dc:date>
    </item>
    <item>
      <title>Re:The code in parallel_for is not covered by llvm code coverage</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/The-code-in-parallel-for-is-not-covered-by-llvm-code-coverage/m-p/1455273#M2796</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you please provide us with any update on your issue(we have contacted you internally through the mail)?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 10 Feb 2023 12:02:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/The-code-in-parallel-for-is-not-covered-by-llvm-code-coverage/m-p/1455273#M2796</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2023-02-10T12:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: The code in parallel_for is not covered by llvm code coverage</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/The-code-in-parallel-for-is-not-covered-by-llvm-code-coverage/m-p/1455279#M2797</link>
      <description>&lt;P&gt;Hi Varsha,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Replied back on same mail chain, please check.&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;&amp;nbsp; As I am facing this issue on some project and that’s why I am using ADL-S/ADL-N board itself not intel OneCloud.&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;&amp;nbsp; The problem is that, the code coverage itself doesn’t covers code inside parallel_for at all. Is there any way to cover that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can we connect on teams so we can discuss and look into it quickly?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and Regards,&lt;/P&gt;
&lt;P&gt;Paavan&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Feb 2023 12:33:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/The-code-in-parallel-for-is-not-covered-by-llvm-code-coverage/m-p/1455279#M2797</guid>
      <dc:creator>Paavan_Joshi</dc:creator>
      <dc:date>2023-02-10T12:33:53Z</dc:date>
    </item>
    <item>
      <title>Re:The code in parallel_for is not covered by llvm code coverage</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/The-code-in-parallel-for-is-not-covered-by-llvm-code-coverage/m-p/1469321#M2952</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for your patience.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Apologies for the delay in my response. As Intel Code Coverage inherits the feature of the open source llvm.org(&lt;A href="https://clang.llvm.org/docs/SourceBasedCodeCoverage.html" target="_blank"&gt;https://clang.llvm.org/docs/SourceBasedCodeCoverage.html&lt;/A&gt;).&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Sorry for the inconvenience caused to you. As the issue is related to Clang Code Coverage so we suggest you file an issue on llvm.org GitHub (&lt;A href="https://github.com/llvm/llvm-project/issues/" target="_blank"&gt;https://github.com/llvm/llvm-project/issues/&lt;/A&gt;).&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you please let us know if you have any other queries related to Intel Compiler? If not, can we go ahead and close this thread?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 24 Mar 2023 06:00:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/The-code-in-parallel-for-is-not-covered-by-llvm-code-coverage/m-p/1469321#M2952</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2023-03-24T06:00:11Z</dc:date>
    </item>
    <item>
      <title>Re:The code in parallel_for is not covered by llvm code coverage</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/The-code-in-parallel-for-is-not-covered-by-llvm-code-coverage/m-p/1471969#M2957</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We have not heard back from you. This thread will no longer be monitored by Intel. If you need additional information, please start a new thread.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 31 Mar 2023 17:02:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-DPC-C-Compiler/The-code-in-parallel-for-is-not-covered-by-llvm-code-coverage/m-p/1471969#M2957</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2023-03-31T17:02:07Z</dc:date>
    </item>
  </channel>
</rss>

