Tagged articles
10 articles
Page 1 of 1
DataFunTalk
DataFunTalk
May 10, 2026 · Artificial Intelligence

How AI Is Powering One‑Person Billion‑Dollar Startups and Multi‑Agent Software Collaboration

In a Code with Claude interview, Anthropic co‑founders Dario and Daniela Amodei explain how exponential AI growth—evidenced by an 80× revenue surge—creates compute bottlenecks, drives a shift to multi‑agent collaboration, and forces product teams to rethink development through scaling laws and Amdahl's Law.

Amdahl's LawArtificial IntelligenceCompute Bottleneck
0 likes · 26 min read
How AI Is Powering One‑Person Billion‑Dollar Startups and Multi‑Agent Software Collaboration
ITPUB
ITPUB
Dec 29, 2022 · Databases

How TDSQL‑C Accelerates Parallel Queries in Cloud‑Native Databases

This transcript details the design, implementation, and performance evaluation of TDSQL‑C's parallel query feature, covering product background, workload challenges, execution plans, Amdahl's law analysis, task scheduling, data partitioning, and future enhancements for cloud‑native database systems.

Amdahl's LawData PartitioningParallel Query
0 likes · 17 min read
How TDSQL‑C Accelerates Parallel Queries in Cloud‑Native Databases
21CTO
21CTO
Oct 25, 2021 · Fundamentals

Why Understanding Computer System Fundamentals Boosts Your Programming Performance

This article explains how computer systems combine hardware and system software, describes the memory hierarchy, operating‑system abstractions, Amdahl's law, and various forms of parallelism, and shows why mastering these fundamentals can dramatically improve program efficiency and reliability.

Amdahl's Lawcomputer architecturehardware hierarchy
0 likes · 16 min read
Why Understanding Computer System Fundamentals Boosts Your Programming Performance
Python Crawling & Data Mining
Python Crawling & Data Mining
Mar 7, 2021 · Fundamentals

Unlocking System Performance: How Amdahl’s Law and Parallelism Shape Modern Computing

This article explains how computer systems combine hardware and system software, describes the memory hierarchy, OS abstractions, Amdahl's law, and the three levels of parallelism—thread‑level, instruction‑level, and SIMD—showing why understanding these concepts is essential for writing fast, reliable programs.

Amdahl's LawMemory HierarchyParallelism
0 likes · 16 min read
Unlocking System Performance: How Amdahl’s Law and Parallelism Shape Modern Computing
JavaEdge
JavaEdge
Feb 11, 2021 · Fundamentals

From Vacuum Tubes to Quantum Chips: How Computer Architecture Evolved

This article traces the historical evolution of computers from first‑generation vacuum‑tube machines to modern VLSI systems, explains fundamental performance limits such as the von Neumann bottleneck and power consumption, and introduces parallel optimization concepts like Amdahl’s Law and future computing paradigms.

Amdahl's LawCPU performanceVon Neumann Bottleneck
0 likes · 12 min read
From Vacuum Tubes to Quantum Chips: How Computer Architecture Evolved
ITPUB
ITPUB
May 25, 2019 · Fundamentals

What Are the ‘Hacker Laws’ Every Developer Should Know?

This article introduces a collection of essential developer principles—including Amdahl's Law, Amara's Law, Hofstadter's Law, Parkinson's Law, and the Unix Philosophy—explaining their origins, key insights, practical implications, and where to find the full list on GitHub.

Amara's LawAmdahl's LawUnix Philosophy
0 likes · 6 min read
What Are the ‘Hacker Laws’ Every Developer Should Know?
Qunar Tech Salon
Qunar Tech Salon
Jul 4, 2018 · Backend Development

Performance Optimization of Qunar's ATPCO International Ticket Pricing System

This article details how Qunar's ATPCO international fare system was analyzed and optimized through performance profiling, application of Little's Law and Amdahl's Law, code refactoring, cache replacement, pruning of search space, and concurrency improvements such as ForkJoinPool to dramatically reduce response times and CPU pressure.

Amdahl's LawBackendLittle's Law
0 likes · 12 min read
Performance Optimization of Qunar's ATPCO International Ticket Pricing System
dbaplus Community
dbaplus Community
May 25, 2016 · Databases

How Parallel Execution Supercharges SQL Server Queries—and the Pitfalls to Avoid

This article explains the theory behind SQL Server's parallel execution, illustrates its performance gains with Amdahl's Law, lists operators that block parallelism, discusses configuration settings, warns of deadlocks and thread starvation, and presents practical MapReduce‑style optimizations for real‑world workloads.

Amdahl's LawMapReduceParallel Execution
0 likes · 16 min read
How Parallel Execution Supercharges SQL Server Queries—and the Pitfalls to Avoid
Baidu Tech Salon
Baidu Tech Salon
May 28, 2014 · Game Development

C++ Performance Optimization Techniques for Ray Tracing

The article outlines 27 C++ performance optimization techniques for ray tracing, emphasizing profiling hot paths, minimizing branches and memory accesses, using inline and reference passing, aligning data, loop unrolling, avoiding unnecessary temporaries, and simplifying math to exploit cache locality and modern CPU parallelism.

Amdahl's LawC++ optimizationCode Efficiency
0 likes · 12 min read
C++ Performance Optimization Techniques for Ray Tracing