Skip to content

UCR-Research-Computing/UCR-Research-Computing.github.io

Repository files navigation

Welcome to UCR Research Computing

At the University of California, Riverside (UCR), we're committed to empowering our researchers with the most advanced computational resources and support services.

Explore a wide array of computational tools and platforms tailored to support your research endeavors. Through our sidebar navigation and the cards below you can explore our offerings:

Explore Our Resources

Compute Options

Storage Options

Support Options

<script> let allComputeOptions = [ { name: "Campus HPC Cluster (HPCC)", link: "./pages/HPCC.html", description: "UCR's shared High-Performance Computing Cluster, offering resources for computationally intensive research." }, { name: "Ursa Major - Google Cloud Computing", link: "./pages/ursa_major.html", description: "A Google cloud computing platform providing scalable and flexible cloud computing environments. HPC Clusters, GPUs, Workstations, VMs, AI Tools, Gemini" }, { name: "Nautilus Cluster", link: "./pages/Nautilus.html", description: "A distributed Kubernetes-based cluster for high-throughput computing, part of the National Research Platform. CPUs, GPUs, LLMs, FPGAs, Jupyter" }, { name: "NSF ACCESS", link: "./pages/nsf_access.html", description: "Provides access to national high-performance computing resources through the NSF ACCESS program.PC Cluster, GPUS, Workstations, Graphical Evniorments" } ]; const storageOptions = [ { name: "Campus HPC Cluster Storage", link: "./pages/hpcc_gpfs.html", description: "High-performance GPFS storage integrated with the HPCC, suitable for large datasets and fast I/O." }, { name: "Ursa Major Cloud Storage", link: "./pages/ursa_major_data.html", description: "Persistent storage options for applications and data within the Ursa Major cloud environment." }, { name: "Ceph Research Data Storage (coming soon)", link: "./pages/ceph_secure_research_storage.html", description: "A future scalable and secure storage solution for research data, offering various access protocols." }, { name: "Google Drive", link: "./pages/Google_Drive.html", description: "UCR-provided Google Drive for cloud storage, collaboration, and file sharing." } ]; let allSupportOptions = [ { name: "Research Infrastructure Support", link: "./pages/research_infrastructure_support.html", description: "Dedicated support for on-premises research clusters and major computing systems, focusing on design, construction, and administration to enhance security and reliability." }, { name: "Ursa Major Support", link: "./pages/ursa_major.html", description: "Comprehensive support for UCR's Google Cloud Platform (GCP) resources, including help with workstations, HPC clusters, AI/ML services, and secure storage." }, { name: "Research Computing Facilitation", link: "./pages/research_facilitation.html", description: "Expert consultation, training, and technical assistance to help researchers effectively access, utilize, and optimize advanced computing resources for their projects." }, { name: "Knowledge Base", link: "./Knowledge_Base/README.html", description: "A comprehensive resource hub with practical guides, how-to articles, and technical information for UCR's research computing tools and services." } ]; function createCard(item) { return `

${item.name}

${item.description}

`; } function renderCards(options, containerId) { const container = document.getElementById(containerId); const sectionContainer = container ? container.closest('.mb-12, .mt-12') : null; if (container) { let cardsHTML = ""; if (options.length > 0) { options.forEach(option => { cardsHTML += createCard(option); }); container.innerHTML = cardsHTML; if (sectionContainer) sectionContainer.style.display = ''; // Show section } else { container.innerHTML = '

No matching resources found.

'; // Optionally hide the section if no cards match, or keep it to show "No matching resources" // For now, we'll keep the section visible to show the message. // If you want to hide the section title as well: if (sectionContainer) sectionContainer.style.display = ''; // Or 'none' to hide completely } } else { // console.error("Card container not found:", containerId); } } // Initial render and event listener setup function initializeSearchAndCards() { renderCards(allComputeOptions, 'compute-cards'); renderCards(storageOptions, 'storage-cards'); renderCards(allSupportOptions, 'support-cards'); } // Defer script execution until the DOM is fully loaded if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', initializeSearchAndCards); } else { // DOMContentLoaded has already fired initializeSearchAndCards(); } </script>

Researcher Resources

Contact Us

For more information, please contact us at:

[email protected] - UCR Research Computing Slack

About

Github website for UCR Research Computing

Resources

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •