- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi all,
I am trying to run "vsldconv_2d_direct.c" example (code attached) but fail on the call to vsldConvExec(task, x, NULL, y, NULL, z, NULL) with error VSL_CC_ERROR_XSHAPE (-2311).
All other variants "vsldconv_2d_auto.c" and "vsldconv_2d_fft.c" fails the same - no surprise.
Everything else works fine, including "vsldconv_1d_auto.c".
I am running on Win10, Visual Studio 2017 with Microsoft compiler.
MKL version:
Intel(R) Math Kernel Library Version 2019.0.3 Product Build 20190125 for Intel(R) 64 architecture applications
Any idea?
Thanks in advance.
Eli
Link Copied
3 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I don't see such problem on my side. MKL 2019 u3. win10. 64 bit.
icl /Qmkl test.c
>test.exe
vsldConvExec, status 0
EXAMPLE PASSED
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
missed to add: I slightly modified your test by as follows:
status = vsldConvExec(task,x,NULL,y,NULL,z,NULL);
if( status != VSL_STATUS_OK ){
printf("ERROR: job status bad, exit with %d\n", status);
return 1;
} else {
printf(" vsldConvExec, status %d\n", status);
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks Gennady.
I have tried from scratch and it is working fine now.
It didn't make any sense to begin with.
Thanks for your effort.
Eli
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page