René's URL Explorer Experiment


Title: About Efficiency Sparse Dense Multiplication · Issue #550 · python-graphblas/python-graphblas · GitHub

Open Graph Title: About Efficiency Sparse Dense Multiplication · Issue #550 · python-graphblas/python-graphblas

X Title: About Efficiency Sparse Dense Multiplication · Issue #550 · python-graphblas/python-graphblas

Description: Hi, thank you so much for a great project. May I ask a small question related to sparse and dense matrix operation? The case is that I want to conduct a multiplication between sparse and dense matrix. In detail, the sparsity of the 2 pro...

Open Graph Description: Hi, thank you so much for a great project. May I ask a small question related to sparse and dense matrix operation? The case is that I want to conduct a multiplication between sparse and dense matr...

X Description: Hi, thank you so much for a great project. May I ask a small question related to sparse and dense matrix operation? The case is that I want to conduct a multiplication between sparse and dense matr...

Opengraph URL: https://github.com/python-graphblas/python-graphblas/issues/550

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"About Efficiency Sparse Dense Multiplication","articleBody":"Hi, thank you so much for a great project. May I ask a small question related to sparse and dense matrix operation? The case is that I want to conduct a multiplication between sparse and dense matrix. In detail, the sparsity of the 2 project is given as below:\r\n```\r\nX shape: (200000, 50000) \r\nC shape: (50000, 100)\r\n#nnz X: 99500704\r\n#nnz C: 3160328\r\nSparsity of X:  0.0099500704\r\nSparsity of C:  0.6320656\r\n```\r\nWhere X is a sparse matrix and C is a dense one. In theory, C should be stored in dense format in order to make the operation to be efficient instead of sparse one. However, using bitmap/dense matrix provided by GraphBLAS is not as efficient as compared to MKL code for sparse * dense operation\r\n```\r\n##################### python-graphblas (Default Setting - 32 Threads - CSR Format * BitmapC Format) #####################\r\nConvert Scipy Sparse Format -\u003e python-graphblas Format (s) 0.6137485504150391\r\nSparse * Sparse computing time (s) 2.929335117340088\r\nSparse * Sparse computing time (s) 2.9536073207855225\r\nSparse * Sparse computing time (s) 2.9327011108398438\r\nSparse * Sparse computing time (s) 2.946722984313965\r\nSparse * Sparse computing time (s) 2.942711114883423\r\nSparse * Sparse computing time (s) 2.959540843963623\r\nSparse * Sparse computing time (s) 2.9557604789733887\r\nSparse * Sparse computing time (s) 2.946617364883423\r\nSparse * Sparse computing time (s) 2.9554543495178223\r\nSparse * Sparse computing time (s) 2.9580225944519043\r\nSparse * Sparse computing time (s) 2.9371848106384277\r\nSparse * Sparse computing time (s) 2.9504570960998535\r\nSparse * Sparse computing time (s) 2.956547498703003\r\nSparse * Sparse computing time (s) 2.9532806873321533\r\nSparse * Sparse computing time (s) 2.947199821472168\r\nSparse * Sparse computing time (s) 2.952831745147705\r\nSparse * Sparse computing time (s) 2.950216293334961\r\nSparse * Sparse computing time (s) 2.950721025466919\r\nSparse * Sparse computing time (s) 2.958610773086548\r\nSparse * Sparse computing time (s) 2.952730894088745\r\nMean Runtime:  2.9495126962661744\r\nStd Runtime:  0.008198427827772714\r\n\r\n##################### python-graphblas (Default Setting - 32 Threads - CSR Format * FullC Format) #####################\r\nConvert Scipy Sparse Format -\u003e python-graphblas Format (s) 0.5988132953643799\r\nSparse * Sparse computing time (s) 1.73736572265625\r\nSparse * Sparse computing time (s) 1.744694709777832\r\nSparse * Sparse computing time (s) 1.7468664646148682\r\nSparse * Sparse computing time (s) 1.7360756397247314\r\nSparse * Sparse computing time (s) 1.7450006008148193\r\nSparse * Sparse computing time (s) 1.7598528861999512\r\nSparse * Sparse computing time (s) 1.7438948154449463\r\nSparse * Sparse computing time (s) 1.7407243251800537\r\nSparse * Sparse computing time (s) 1.7503554821014404\r\nSparse * Sparse computing time (s) 1.740696907043457\r\nSparse * Sparse computing time (s) 1.757706642150879\r\nSparse * Sparse computing time (s) 1.7401001453399658\r\nSparse * Sparse computing time (s) 1.7460541725158691\r\nSparse * Sparse computing time (s) 1.7468533515930176\r\nSparse * Sparse computing time (s) 1.751969337463379\r\nSparse * Sparse computing time (s) 1.7436254024505615\r\nSparse * Sparse computing time (s) 1.7455754280090332\r\nSparse * Sparse computing time (s) 1.7475886344909668\r\nSparse * Sparse computing time (s) 1.7609961032867432\r\nSparse * Sparse computing time (s) 1.7456836700439453\r\nMean Runtime:  1.7465840220451354\r\nStd Runtime:  0.006642586857441714\r\n```\r\n\r\n\r\n```\r\n##################### MKL (Default Settings - 16 Threads - Sparse CSR Format * Dense Numpy Format) #####################\r\nSparse * Sparse computing time (s) 0.6445832252502441\r\nSparse * Sparse computing time (s) 0.6223111152648926\r\nSparse * Sparse computing time (s) 0.6190366744995117\r\nSparse * Sparse computing time (s) 0.6191632747650146\r\nSparse * Sparse computing time (s) 0.617084264755249\r\nSparse * Sparse computing time (s) 0.6194536685943604\r\nSparse * Sparse computing time (s) 0.6174299716949463\r\nSparse * Sparse computing time (s) 0.6181790828704834\r\nSparse * Sparse computing time (s) 0.6196620464324951\r\nSparse * Sparse computing time (s) 0.6216928958892822\r\nSparse * Sparse computing time (s) 0.6174044609069824\r\nSparse * Sparse computing time (s) 0.6212775707244873\r\nSparse * Sparse computing time (s) 0.6180646419525146\r\nSparse * Sparse computing time (s) 0.6177294254302979\r\nSparse * Sparse computing time (s) 0.6187028884887695\r\nSparse * Sparse computing time (s) 0.6197123527526855\r\nSparse * Sparse computing time (s) 0.6219933032989502\r\nSparse * Sparse computing time (s) 0.6392252445220947\r\nSparse * Sparse computing time (s) 0.6407394409179688\r\nSparse * Sparse computing time (s) 0.6248526573181152\r\n\r\nMean Runtime:  0.6229149103164673\r\nStd Runtime:  0.008091237575214866\r\n```\r\n\r\nCould you please kindly suggest any format from GraphBLAS to solve this problem? Thank you so much in advance!","author":{"url":"https://github.com/khoinpd0411","@type":"Person","name":"khoinpd0411"},"datePublished":"2024-11-24T21:11:25.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":4},"url":"https://github.com/550/python-graphblas/issues/550"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:8ce31727-1d77-9dcf-da0e-521947b21475
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idA826:1581ED:846A3F:B67D4D:698E0BC9
html-safe-nonce47ff47ddcfdf9db92d2592eb938aeebd796d747b09c2df0e522869b4b72a003d
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBODI2OjE1ODFFRDo4NDZBM0Y6QjY3RDREOjY5OEUwQkM5IiwidmlzaXRvcl9pZCI6IjY3NjE0NDU2MDU3MjgxOTM0ODEiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmaced6b86bf7278f650bc16a9a0f2e8874587953fbd1a1b9873902dbf39e15ef90a
hovercard-subject-tagissue:2688391363
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/python-graphblas/python-graphblas/550/issue_layout
twitter:imagehttps://opengraph.githubassets.com/07703c0586aeae2b56afdaa51d947208f1b6489bbde41c072cec72c46c2d5e76/python-graphblas/python-graphblas/issues/550
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/07703c0586aeae2b56afdaa51d947208f1b6489bbde41c072cec72c46c2d5e76/python-graphblas/python-graphblas/issues/550
og:image:altHi, thank you so much for a great project. May I ask a small question related to sparse and dense matrix operation? The case is that I want to conduct a multiplication between sparse and dense matr...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamekhoinpd0411
hostnamegithub.com
expected-hostnamegithub.com
None70a88bfe6d9639434ae7f5a46d15c336b8884978a51526bc55fc57d848f1e3c1
turbo-cache-controlno-preview
go-importgithub.com/python-graphblas/python-graphblas git https://github.com/python-graphblas/python-graphblas.git
octolytics-dimension-user_id103965858
octolytics-dimension-user_loginpython-graphblas
octolytics-dimension-repository_id221014819
octolytics-dimension-repository_nwopython-graphblas/python-graphblas
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id221014819
octolytics-dimension-repository_network_root_nwopython-graphblas/python-graphblas
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
release2519b16db5550494a653f9a8837c14ef7df80804
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/issues/550#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython-graphblas%2Fpython-graphblas%2Fissues%2F550
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%2Fpython-graphblas%2Fpython-graphblas%2Fissues%2F550
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=python-graphblas%2Fpython-graphblas
Reloadhttps://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/issues/550
Reloadhttps://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/issues/550
Reloadhttps://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/issues/550
python-graphblas https://patch-diff.githubusercontent.com/python-graphblas
python-graphblashttps://patch-diff.githubusercontent.com/python-graphblas/python-graphblas
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fpython-graphblas%2Fpython-graphblas
Fork 16 https://patch-diff.githubusercontent.com/login?return_to=%2Fpython-graphblas%2Fpython-graphblas
Star 152 https://patch-diff.githubusercontent.com/login?return_to=%2Fpython-graphblas%2Fpython-graphblas
Code https://patch-diff.githubusercontent.com/python-graphblas/python-graphblas
Issues 55 https://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/issues
Pull requests 14 https://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/pulls
Discussions https://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/discussions
Actions https://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/actions
Projects 0 https://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/projects
Wiki https://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/wiki
Security 0 https://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/security
Insights https://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/pulse
Code https://patch-diff.githubusercontent.com/python-graphblas/python-graphblas
Issues https://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/issues
Pull requests https://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/pulls
Discussions https://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/discussions
Actions https://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/actions
Projects https://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/projects
Wiki https://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/wiki
Security https://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/security
Insights https://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/python-graphblas/python-graphblas/issues/550
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/python-graphblas/python-graphblas/issues/550
About Efficiency Sparse Dense Multiplicationhttps://patch-diff.githubusercontent.com/python-graphblas/python-graphblas/issues/550#top
https://github.com/khoinpd0411
https://github.com/khoinpd0411
khoinpd0411https://github.com/khoinpd0411
on Nov 24, 2024https://github.com/python-graphblas/python-graphblas/issues/550#issue-2688391363
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.