Spaces:
Running
Running
File size: 18,460 Bytes
31c7d49 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 | import { buildGaussianPly } from '../../lib/gaussianPly'
import { float16ToFloat32, float32ToFloat16 } from '../../runtime/float16'
import type {
OrtLoadSessionResult,
OrtRunTimings,
OrtWorkerClientOptions,
OrtWorkerStatus,
} from '../../runtime/OrtWorkerClient'
import { OrtWorkerClient } from '../../runtime/OrtWorkerClient'
import { createTensorPayload, type TensorPayload } from '../../runtime/tensors'
import type {
GaussianScene,
GenerationOptions,
ImageToGaussianModel,
} from '../ImageToGaussianModel'
import { throwIfAborted } from '../ImageToGaussianModel'
import {
elementCount,
TRIPOSPLAT_FEATURE1_SHAPE,
TRIPOSPLAT_FEATURE2_SHAPE,
TRIPOSPLAT_IMAGE_SHAPE,
TRIPOSPLAT_LATENT_SHAPE,
TRIPOSPLAT_CAMERA_SHAPE,
TRIPOSPLAT_MAX_DECODER_POINTS,
TRIPOSPLAT_MAX_GAUSSIANS,
TRIPOSPLAT_MIN_GAUSSIANS,
TRIPOSPLAT_VAE_NOISE_SHAPE,
} from './contracts'
import {
decodeTripoSplatGaussianFeatures,
TRIPOSPLAT_GAUSSIANS_PER_POINT,
TRIPOSPLAT_GS_FEATURE_WIDTH,
} from './gaussianDecoder'
import {
sampleFlowEulerCfg,
type FlowModelInvocation,
type FlowTensorState,
} from './flowSampler'
import type {
TripoSplatGraphDescriptor,
TripoSplatGraphName,
TripoSplatModelGraphs,
} from './manifests'
import { createTripoSplatModelManifest } from './manifests'
import {
buildTripoSplatEncoderTensors,
preprocessTripoSplatImage,
type RgbImage,
type TripoSplatBackgroundRemover,
} from './preprocess'
import { fillNormal, Mulberry32 } from './random'
import {
sampleOctree,
type OctreeOccupancyInvocation,
type OctreeSampleResult,
} from './octree'
const SESSION_IDS: Record<TripoSplatGraphName, string> = {
dinov3: 'triposplat/dinov3',
vaeEncoder: 'triposplat/vae-encoder',
dit: 'triposplat/dit',
octree: 'triposplat/octree',
gaussianDecoder: 'triposplat/gaussian-decoder',
}
export interface TripoSplatWebGPUModelOptions {
graphs?: TripoSplatModelGraphs
removeBackground?: TripoSplatBackgroundRemover
allowWasmFallback?: boolean
onRuntimeStatus?: (status: OrtWorkerStatus) => void
worker?: Omit<OrtWorkerClientOptions, 'onStatus'>
}
export interface TripoSplatEncoderResult {
preparedImage: RgbImage
feature1?: Float32Array
feature2?: Float32Array
timings: Partial<Record<'dinov3' | 'vaeEncoder', OrtRunTimings>>
}
interface TripoSplatCondition {
feature1: Float32Array
feature2: Float32Array
}
function payloadToFloat32(label: string, payload: TensorPayload): Float32Array {
if (payload.type === 'float32') return payload.data
if (payload.type === 'float16') return float16ToFloat32(payload.data)
throw new Error(`${label} must be float32 or float16, got ${payload.type}.`)
}
function inputPayload(
descriptor: TripoSplatGraphDescriptor,
data: Float32Array,
dims: readonly number[],
): TensorPayload {
return descriptor.precision === 'float16'
? createTensorPayload('float16', float32ToFloat16(data), dims)
: createTensorPayload('float32', data, dims)
}
/** Browser TripoSplat adapter. Encoder-only manifests are supported for parity bring-up. */
export class TripoSplatWebGPUModel implements ImageToGaussianModel {
readonly graphs: TripoSplatModelGraphs
private readonly client: OrtWorkerClient
private readonly removeBackground?: TripoSplatBackgroundRemover
private readonly allowWasmFallback: boolean
private readonly sessions = new Map<TripoSplatGraphName, OrtLoadSessionResult>()
private disposed = false
constructor(options: TripoSplatWebGPUModelOptions = {}) {
this.graphs = options.graphs ?? createTripoSplatModelManifest()
this.removeBackground = options.removeBackground
this.allowWasmFallback = options.allowWasmFallback ?? false
this.client = new OrtWorkerClient({ ...options.worker, onStatus: options.onRuntimeStatus })
}
async load(): Promise<void> {
this.assertUsable()
// Full-pipeline graphs are deliberately staged to fit the 16 GB target.
// `load()` warms only the encoder slice; generate() releases it before DiT.
for (const name of ['dinov3', 'vaeEncoder'] as const) {
if (this.graphs[name]) await this.loadGraph(name)
}
}
async encode(
image: ImageBitmap,
options: GenerationOptions = {},
): Promise<TripoSplatEncoderResult> {
this.assertUsable()
throwIfAborted(options.signal)
const hasDino = this.graphs.dinov3 !== undefined
const hasVae = this.graphs.vaeEncoder !== undefined
if (!hasDino && !hasVae) throw new Error('TripoSplat encoder manifest contains neither DINOv3 nor Flux VAE.')
options.onProgress?.({ stage: 'preprocessing', message: 'Preparing the TripoSplat 1024px RGB composite…' })
const prepared = await preprocessTripoSplatImage(image, {
erodeRadius: options.erodeRadius,
removeBackground: this.removeBackground,
opaqueImageIsAlreadyPrepared: options.inputIsPrepared,
})
const tensors = buildTripoSplatEncoderTensors(prepared.image)
throwIfAborted(options.signal)
const result: TripoSplatEncoderResult = { preparedImage: prepared.image, timings: {} }
if (hasDino) {
options.onProgress?.({ stage: 'encoding-dinov3', message: 'Running DINOv3 on WebGPU…' })
const descriptor = this.requireGraph('dinov3')
await this.loadGraph('dinov3')
const response = await this.client.runSession({
sessionId: SESSION_IDS.dinov3,
inputs: {
pixel_values: inputPayload(descriptor, tensors.dinov3.data, TRIPOSPLAT_IMAGE_SHAPE),
},
outputs: ['feature1'],
})
const feature1 = response.outputs.feature1
if (!feature1) throw new Error('DINOv3 graph did not return feature1.')
result.feature1 = payloadToFloat32('feature1', feature1)
if (result.feature1.length !== elementCount(TRIPOSPLAT_FEATURE1_SHAPE)) {
throw new Error(`DINOv3 returned ${result.feature1.length} values; expected ${elementCount(TRIPOSPLAT_FEATURE1_SHAPE)}.`)
}
result.timings.dinov3 = response.timings
}
if (hasVae) {
options.onProgress?.({ stage: 'encoding-vae', message: 'Running the Flux VAE encoder on WebGPU…' })
const descriptor = this.requireGraph('vaeEncoder')
await this.loadGraph('vaeEncoder')
const epsilon = options.vaeNoise
? new Float32Array(options.vaeNoise)
: fillNormal(
new Float32Array(elementCount(TRIPOSPLAT_VAE_NOISE_SHAPE)),
new Mulberry32(options.seed ?? 42),
)
if (epsilon.length !== elementCount(TRIPOSPLAT_VAE_NOISE_SHAPE)) {
throw new Error(`VAE epsilon contains ${epsilon.length} values; expected ${elementCount(TRIPOSPLAT_VAE_NOISE_SHAPE)}.`)
}
const response = await this.client.runSession({
sessionId: SESSION_IDS.vaeEncoder,
inputs: {
image_rgb: inputPayload(descriptor, tensors.rgb.data, TRIPOSPLAT_IMAGE_SHAPE),
epsilon: inputPayload(descriptor, epsilon, TRIPOSPLAT_VAE_NOISE_SHAPE),
},
outputs: ['feature2'],
})
const feature2Payload = response.outputs.feature2
if (!feature2Payload) throw new Error('Flux VAE graph did not return feature2.')
result.feature2 = payloadToFloat32('feature2', feature2Payload)
if (result.feature2.length !== elementCount(TRIPOSPLAT_FEATURE2_SHAPE)) {
throw new Error(`Flux VAE returned ${result.feature2.length} values; expected ${elementCount(TRIPOSPLAT_FEATURE2_SHAPE)}.`)
}
result.timings.vaeEncoder = response.timings
}
throwIfAborted(options.signal)
return result
}
async generate(image: ImageBitmap, options: GenerationOptions = {}): Promise<GaussianScene> {
for (const graph of ['dinov3', 'vaeEncoder', 'dit', 'octree', 'gaussianDecoder'] as const) {
this.requireGraph(graph)
}
const random = new Mulberry32(options.seed ?? 42)
const vaeNoise = options.vaeNoise
? new Float32Array(options.vaeNoise)
: fillNormal(new Float32Array(elementCount(TRIPOSPLAT_VAE_NOISE_SHAPE)), random)
let encoded: TripoSplatEncoderResult
try {
encoded = await this.encode(image, { ...options, vaeNoise })
} finally {
await Promise.all([this.disposeGraph('dinov3'), this.disposeGraph('vaeEncoder')])
}
if (!encoded.feature1 || !encoded.feature2) {
throw new Error('TripoSplat encoding did not produce both conditioning tensors.')
}
throwIfAborted(options.signal)
const condition: TripoSplatCondition = {
feature1: encoded.feature1,
feature2: encoded.feature2,
}
const negativeCondition: TripoSplatCondition = {
feature1: new Float32Array(encoded.feature1.length),
feature2: new Float32Array(encoded.feature2.length),
}
const latent = options.latentNoise
? new Float32Array(options.latentNoise)
: fillNormal(new Float32Array(elementCount(TRIPOSPLAT_LATENT_SHAPE)), random)
const camera = options.cameraNoise
? new Float32Array(options.cameraNoise)
: fillNormal(new Float32Array(elementCount(TRIPOSPLAT_CAMERA_SHAPE)), random)
this.assertLength('latent noise', latent, elementCount(TRIPOSPLAT_LATENT_SHAPE))
this.assertLength('camera noise', camera, elementCount(TRIPOSPLAT_CAMERA_SHAPE))
const ditDescriptor = this.requireGraph('dit')
await this.loadGraph('dit')
let ditInferenceMs = 0
let ditReadbackMs = 0
const steps = options.steps ?? 20
let flowState: FlowTensorState
try {
flowState = await sampleFlowEulerCfg(
async (invocation: FlowModelInvocation<TripoSplatCondition>) => {
const response = await this.client.runSession({
sessionId: SESSION_IDS.dit,
inputs: {
latent: inputPayload(ditDescriptor, invocation.sample.latent, TRIPOSPLAT_LATENT_SHAPE),
camera: inputPayload(ditDescriptor, invocation.sample.camera, TRIPOSPLAT_CAMERA_SHAPE),
t: inputPayload(
ditDescriptor,
new Float32Array(invocation.timestepTensor),
[1],
),
feature1: inputPayload(
ditDescriptor,
new Float32Array(invocation.condition.feature1),
TRIPOSPLAT_FEATURE1_SHAPE,
),
feature2: inputPayload(
ditDescriptor,
new Float32Array(invocation.condition.feature2),
TRIPOSPLAT_FEATURE2_SHAPE,
),
},
outputs: ['pred_latent', 'pred_camera'],
tag: `flow-${invocation.pass}-${invocation.step}-of-${invocation.totalSteps}`,
})
ditInferenceMs += response.timings.inferenceMs
ditReadbackMs += response.timings.readbackMs
const predictedLatent = response.outputs.pred_latent
const predictedCamera = response.outputs.pred_camera
if (!predictedLatent || !predictedCamera) {
throw new Error('DiT graph must return pred_latent and pred_camera.')
}
return {
latent: payloadToFloat32('pred_latent', predictedLatent),
camera: payloadToFloat32('pred_camera', predictedCamera),
}
},
{ latent, camera },
{
condition,
negativeCondition,
steps,
guidanceScale: options.guidanceScale ?? 3,
shift: options.shift ?? 3,
predictionArithmetic: ditDescriptor.internalPrecision === 'float32'
? 'float32'
: 'float16',
signal: options.signal,
onStep: ({ step, totalSteps }) => {
options.onProgress?.({
stage: 'sampling',
message: `TripoSplat flow step ${step}/${totalSteps}…`,
progress: step / totalSteps,
step,
totalSteps,
})
},
},
)
} finally {
await this.disposeGraph('dit')
}
const numGaussians = this.normalizeGaussianCount(options.numGaussians ?? TRIPOSPLAT_MAX_GAUSSIANS)
const numPoints = numGaussians / TRIPOSPLAT_GAUSSIANS_PER_POINT
const octreeDescriptor = this.requireGraph('octree')
await this.loadGraph('octree')
let octreeInferenceMs = 0
options.onProgress?.({ stage: 'decoding-octree', message: 'Sampling the dynamic occupancy octree…' })
let points: OctreeSampleResult
try {
points = await sampleOctree(
async (invocation: OctreeOccupancyInvocation<Float32Array>) => {
const paddedCenters = new Float32Array(TRIPOSPLAT_MAX_DECODER_POINTS * 3)
paddedCenters.set(invocation.parentCenters)
const response = await this.client.runSession({
sessionId: SESSION_IDS.octree,
inputs: {
x: inputPayload(octreeDescriptor, paddedCenters, [1, TRIPOSPLAT_MAX_DECODER_POINTS, 3]),
l: inputPayload(octreeDescriptor, Float32Array.of(invocation.resolution), [1]),
cond: inputPayload(
octreeDescriptor,
new Float32Array(invocation.condition),
TRIPOSPLAT_LATENT_SHAPE,
),
},
outputs: ['logits'],
tag: `octree-level-${invocation.level}`,
})
octreeInferenceMs += response.timings.inferenceMs
const logitsPayload = response.outputs.logits
if (!logitsPayload) throw new Error('Octree graph did not return logits.')
const paddedLogits = payloadToFloat32('logits', logitsPayload)
const required = invocation.parentCount * 8
if (paddedLogits.length < required) {
throw new Error(`Octree returned ${paddedLogits.length} logits; active frontier needs ${required}.`)
}
return { logits: paddedLogits.slice(0, required) }
},
{
condition: flowState.latent,
numPoints,
rng: () => random.next(),
signal: options.signal,
onLevel: ({ level, totalLevels, occupiedVoxels }) => {
options.onProgress?.({
stage: 'decoding-octree',
message: `Octree level ${level}/${totalLevels}: ${occupiedVoxels.toLocaleString()} occupied voxels…`,
progress: level / totalLevels,
})
},
},
)
} finally {
await this.disposeGraph('octree')
}
const gaussianDescriptor = this.requireGraph('gaussianDecoder')
await this.loadGraph('gaussianDecoder')
options.onProgress?.({ stage: 'decoding-gaussians', message: 'Decoding Gaussian attributes…' })
let features: Float32Array
let gaussianInferenceMs = 0
try {
const gaussianResponse = await this.client.runSession({
sessionId: SESSION_IDS.gaussianDecoder,
inputs: {
points: inputPayload(gaussianDescriptor, new Float32Array(points.points), [1, numPoints, 3]),
cond: inputPayload(
gaussianDescriptor,
new Float32Array(flowState.latent),
TRIPOSPLAT_LATENT_SHAPE,
),
},
outputs: ['features'],
})
gaussianInferenceMs = gaussianResponse.timings.inferenceMs
const featurePayload = gaussianResponse.outputs.features
if (!featurePayload) throw new Error('Gaussian decoder graph did not return features.')
features = payloadToFloat32('features', featurePayload)
} finally {
await this.disposeGraph('gaussianDecoder')
}
this.assertLength('Gaussian decoder features', features, numPoints * TRIPOSPLAT_GS_FEATURE_WIDTH)
const gaussians = decodeTripoSplatGaussianFeatures(points.points, features)
options.onProgress?.({ stage: 'building-ply', message: 'Building browser Gaussian PLY…' })
const ply = buildGaussianPly(gaussians)
return {
model: 'triposplat',
count: numGaussians,
totalCount: numGaussians,
ply,
gaussians,
coordinateSystem: 'triposplat-object',
colorSpace: 'sh0',
metadata: {
steps,
guidanceScale: options.guidanceScale ?? 3,
shift: options.shift ?? 3,
seed: options.seed ?? 42,
ditInferenceMs,
ditReadbackMs,
octreeInferenceMs,
gaussianInferenceMs,
},
}
}
async dispose(): Promise<void> {
if (this.disposed) return
this.disposed = true
this.sessions.clear()
await this.client.dispose()
}
private async loadGraph(name: TripoSplatGraphName): Promise<OrtLoadSessionResult> {
const existing = this.sessions.get(name)
if (existing) return existing
const descriptor = this.requireGraph(name)
const loaded = await this.client.loadSession({
sessionId: SESSION_IDS[name],
manifest: descriptor.manifest,
options: {
allowWasmFallback: this.allowWasmFallback,
// Match the validated browser labs for every published graph. DiT also
// relies on exported Add(0) dense-layout barriers that ORT must retain.
graphOptimizationLevel: 'disabled',
},
})
this.sessions.set(name, loaded)
return loaded
}
private async disposeGraph(name: TripoSplatGraphName): Promise<void> {
if (!this.sessions.delete(name)) return
await this.client.disposeSession(SESSION_IDS[name])
}
private requireGraph(name: TripoSplatGraphName): TripoSplatGraphDescriptor {
const graph = this.graphs[name]
if (!graph) throw new Error(`TripoSplat graph '${name}' is not configured.`)
return graph
}
private assertLength(label: string, value: Float32Array, expected: number): void {
if (value.length !== expected) throw new Error(`${label} contains ${value.length} values; expected ${expected}.`)
}
private normalizeGaussianCount(requested: number): number {
if (!Number.isFinite(requested) || requested < TRIPOSPLAT_MIN_GAUSSIANS || requested > TRIPOSPLAT_MAX_GAUSSIANS) {
throw new Error(
`numGaussians must be in [${TRIPOSPLAT_MIN_GAUSSIANS}, ${TRIPOSPLAT_MAX_GAUSSIANS}].`,
)
}
const rounded = Math.round(requested / TRIPOSPLAT_GAUSSIANS_PER_POINT) * TRIPOSPLAT_GAUSSIANS_PER_POINT
if (rounded !== TRIPOSPLAT_MAX_GAUSSIANS) {
throw new Error(
`The checked-in Gaussian decoder contract is fixed at ${TRIPOSPLAT_MAX_GAUSSIANS} ` +
`Gaussians (8192 decoder points); requested ${rounded}. Export a separate fixed-shape ` +
`decoder to support another count without changing full self-attention semantics.`,
)
}
return rounded
}
private assertUsable(): void {
if (this.disposed) throw new Error('TripoSplatWebGPUModel has been disposed.')
}
}
|