René's URL Explorer Experiment


Title: Error JNAerating CLDGEMMKernels.cl: NullPointerException · Issue #34 · nativelibs4java/JavaCL · GitHub

Open Graph Title: Error JNAerating CLDGEMMKernels.cl: NullPointerException · Issue #34 · nativelibs4java/JavaCL

X Title: Error JNAerating CLDGEMMKernels.cl: NullPointerException · Issue #34 · nativelibs4java/JavaCL

Description: get NullPointerException, when tried to build the following code define WIDTH 4 if WIDTH == 1 typedef float floatX; elif WIDTH == 2 typedef float2 floatX; elif WIDTH == 4 typedef float4 floatX; endif // Use wider data types __kernel void...

Open Graph Description: get NullPointerException, when tried to build the following code define WIDTH 4 if WIDTH == 1 typedef float floatX; elif WIDTH == 2 typedef float2 floatX; elif WIDTH == 4 typedef float4 floatX; end...

X Description: get NullPointerException, when tried to build the following code define WIDTH 4 if WIDTH == 1 typedef float floatX; elif WIDTH == 2 typedef float2 floatX; elif WIDTH == 4 typedef float4 floatX; end...

Opengraph URL: https://github.com/nativelibs4java/JavaCL/issues/34

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Error JNAerating CLDGEMMKernels.cl: NullPointerException","articleBody":"get NullPointerException, when tried to build the following code\n# define WIDTH 4\n# if WIDTH == 1\n\n```\ntypedef float floatX;\n```\n# elif WIDTH == 2\n\n```\ntypedef float2 floatX;\n```\n# elif WIDTH == 4\n\n```\ntypedef float4 floatX;\n```\n# endif\n\n// Use wider data types\n__kernel void gemm4(const int M, const int N, const int K,\n                      const __global double\\* A,\n                      const __global double\\* B,\n                      __global double\\* C) {\n\n```\n// Thread identifiers\nconst int row = get_local_id(0); // Local row ID (max: TS/WIDTH)\nconst int col = get_local_id(1); // Local col ID (max: TS)\nconst int globalRow = (TS/WIDTH)*get_group_id(0) + row; // 0..M/WIDTH\nconst int globalCol = TS*get_group_id(1) + col; // 0..N\n\n// Local memory to fit a tile of TS*TS elements of A and B\n__local floatX Asub[TS][TS/WIDTH];\n__local floatX Bsub[TS][TS/WIDTH];\n\n// Initialize the accumulation registers\n#if WIDTH == 1\n    floatX acc = 0.0f;\n#elif WIDTH == 2\n    floatX acc = { 0.0f, 0.0f };\n#elif WIDTH == 4\n    floatX acc = { 0.0f, 0.0f, 0.0f, 0.0f };\n#endif\n\n// Loop over all tiles\nconst int numTiles = K/TS;\n```\n\n...\n}\n\nafter replace with\n    int ts = TS;\n    const int numTiles = K/ts;\n\nbuilds fine.\n\n[INFO] ------------------------------------------------------------------------\n[ERROR] Failed to execute goal com.nativelibs4java:maven-javacl-plugin:1.0.0-RC4:compile (default) on project clqr: Error JNAerating CLDGEMMKernels.cl: NullPointerException -\u003e [Help 1]\norg.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal com.nativelibs4java:maven-javacl-plugin:1.0.0-RC4:compile (default) on project clqr: Error JNAerating CLDGEMMKernels.cl\n    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:217)\n    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)\n    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)\n    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:84)\n    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:59)\n    at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter.java:183)\n    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161)\n    at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:320)\n    at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)\n    at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)\n    at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)\n    at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)\n    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)\n    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)\n    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)\n    at java.lang.reflect.Method.invoke(Method.java:498)\n    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)\n    at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)\n    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)\n    at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)\nCaused by: org.apache.maven.plugin.MojoExecutionException: Error JNAerating CLDGEMMKernels.cl\n    at com.nativelibs4java.opencl.generator.JavaCLGeneratorMojo.generateAll(JavaCLGeneratorMojo.java:191)\n    at com.nativelibs4java.opencl.generator.JavaCLGeneratorMojo.execute(JavaCLGeneratorMojo.java:210)\n    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101)\n    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209)\n    ... 19 more\nCaused by: java.lang.NullPointerException\n    at com.ochafik.lang.jnaerator.TypeConversion.convertExpressionToJava(TypeConversion.java:1223)\n    at com.ochafik.lang.jnaerator.BridJTypeConversion.convertExpressionToJava(BridJTypeConversion.java:488)\n    at com.ochafik.lang.jnaerator.DeclarationsConverter.convertConstant(DeclarationsConverter.java:206)\n    at com.ochafik.lang.jnaerator.DeclarationsConverter$1.visitVariablesDeclaration(DeclarationsConverter.java:176)\n    at com.ochafik.lang.jnaerator.parser.VariablesDeclaration.accept(VariablesDeclaration.java:41)\n    at com.ochafik.lang.jnaerator.parser.Scanner.visit(Scanner.java:479)\n    at com.ochafik.lang.jnaerator.parser.Scanner.visitBlock(Scanner.java:378)\n    at com.ochafik.lang.jnaerator.parser.Statement$Block.accept(Statement.java:379)\n    at com.ochafik.lang.jnaerator.parser.Scanner.visit(Scanner.java:468)\n    at com.ochafik.lang.jnaerator.parser.Scanner.visitFunction(Scanner.java:106)\n    at com.ochafik.lang.jnaerator.parser.Function.accept(Function.java:215)\n    at com.ochafik.lang.jnaerator.parser.Scanner.visit(Scanner.java:479)\n    at com.ochafik.lang.jnaerator.parser.Scanner.visitSourceFile(Scanner.java:235)\n    at com.ochafik.lang.jnaerator.parser.SourceFile.accept(SourceFile.java:101)\n    at com.ochafik.lang.jnaerator.SourceFiles.accept(SourceFiles.java:49)\n    at com.ochafik.lang.jnaerator.DeclarationsConverter.convertConstants(DeclarationsConverter.java:128)\n    at com.nativelibs4java.opencl.generator.JavaCLGenerator.generateLibraryFiles(JavaCLGenerator.java:470)\n    at com.ochafik.lang.jnaerator.JNAerator.jnaerationCore(JNAerator.java:1465)\n    at com.ochafik.lang.jnaerator.JNAerator.jnaerate(JNAerator.java:1018)\n    at com.nativelibs4java.opencl.generator.JavaCLGeneratorMojo.generateAll(JavaCLGeneratorMojo.java:160)\n    ... 22 more\n","author":{"url":"https://github.com/fossil","@type":"Person","name":"fossil"},"datePublished":"2016-05-22T12:29:50.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/34/JavaCL/issues/34"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:55b36701-9851-1042-b905-ec0bf683ff22
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idC61E:5D6BD:F9194:16296F:6979E150
html-safe-noncec453c942f761f2f24630f5af818ffa292740b988216e920b6bc76b192dda02a4
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDNjFFOjVENkJEOkY5MTk0OjE2Mjk2Rjo2OTc5RTE1MCIsInZpc2l0b3JfaWQiOiIzODYyMTc1MDM5NzYzMzc0NDE2IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac427462461a52ea64e5810e1bc3f5a1cdd06206e3c69fec17a16f28768c83712f
hovercard-subject-tagissue:156149916
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/nativelibs4java/JavaCL/34/issue_layout
twitter:imagehttps://opengraph.githubassets.com/fbb3bcbb45fbc03acef8c2b5c51f1c9324f8e2d6e5e5a76fc68a04f91939f314/nativelibs4java/JavaCL/issues/34
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/fbb3bcbb45fbc03acef8c2b5c51f1c9324f8e2d6e5e5a76fc68a04f91939f314/nativelibs4java/JavaCL/issues/34
og:image:altget NullPointerException, when tried to build the following code define WIDTH 4 if WIDTH == 1 typedef float floatX; elif WIDTH == 2 typedef float2 floatX; elif WIDTH == 4 typedef float4 floatX; end...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamefossil
hostnamegithub.com
expected-hostnamegithub.com
None2b107eb9d90c9cac30a73eb8cbff9f061e7aa8abfc974388da184e33e9167b4a
turbo-cache-controlno-preview
go-importgithub.com/nativelibs4java/JavaCL git https://github.com/nativelibs4java/JavaCL.git
octolytics-dimension-user_id11545921
octolytics-dimension-user_loginnativelibs4java
octolytics-dimension-repository_id31854274
octolytics-dimension-repository_nwonativelibs4java/JavaCL
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id31854274
octolytics-dimension-repository_network_root_nwonativelibs4java/JavaCL
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasef6fa9e90ef424d47fefcf2b081f57fd855fc2959
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/nativelibs4java/JavaCL/issues/34#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnativelibs4java%2FJavaCL%2Fissues%2F34
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnativelibs4java%2FJavaCL%2Fissues%2F34
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=nativelibs4java%2FJavaCL
Reloadhttps://patch-diff.githubusercontent.com/nativelibs4java/JavaCL/issues/34
Reloadhttps://patch-diff.githubusercontent.com/nativelibs4java/JavaCL/issues/34
Reloadhttps://patch-diff.githubusercontent.com/nativelibs4java/JavaCL/issues/34
nativelibs4java https://patch-diff.githubusercontent.com/nativelibs4java
JavaCLhttps://patch-diff.githubusercontent.com/nativelibs4java/JavaCL
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fnativelibs4java%2FJavaCL
Fork 19 https://patch-diff.githubusercontent.com/login?return_to=%2Fnativelibs4java%2FJavaCL
Star 90 https://patch-diff.githubusercontent.com/login?return_to=%2Fnativelibs4java%2FJavaCL
Code https://patch-diff.githubusercontent.com/nativelibs4java/JavaCL
Issues 36 https://patch-diff.githubusercontent.com/nativelibs4java/JavaCL/issues
Pull requests 0 https://patch-diff.githubusercontent.com/nativelibs4java/JavaCL/pulls
Actions https://patch-diff.githubusercontent.com/nativelibs4java/JavaCL/actions
Projects 0 https://patch-diff.githubusercontent.com/nativelibs4java/JavaCL/projects
Wiki https://patch-diff.githubusercontent.com/nativelibs4java/JavaCL/wiki
Security 0 https://patch-diff.githubusercontent.com/nativelibs4java/JavaCL/security
Insights https://patch-diff.githubusercontent.com/nativelibs4java/JavaCL/pulse
Code https://patch-diff.githubusercontent.com/nativelibs4java/JavaCL
Issues https://patch-diff.githubusercontent.com/nativelibs4java/JavaCL/issues
Pull requests https://patch-diff.githubusercontent.com/nativelibs4java/JavaCL/pulls
Actions https://patch-diff.githubusercontent.com/nativelibs4java/JavaCL/actions
Projects https://patch-diff.githubusercontent.com/nativelibs4java/JavaCL/projects
Wiki https://patch-diff.githubusercontent.com/nativelibs4java/JavaCL/wiki
Security https://patch-diff.githubusercontent.com/nativelibs4java/JavaCL/security
Insights https://patch-diff.githubusercontent.com/nativelibs4java/JavaCL/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/nativelibs4java/JavaCL/issues/34
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/nativelibs4java/JavaCL/issues/34
Error JNAerating CLDGEMMKernels.cl: NullPointerExceptionhttps://patch-diff.githubusercontent.com/nativelibs4java/JavaCL/issues/34#top
https://github.com/fossil
https://github.com/fossil
fossilhttps://github.com/fossil
on May 22, 2016https://github.com/nativelibs4java/JavaCL/issues/34#issue-156149916
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.