Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions prisma/seeders/devicesSeeder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ const devices: DeviceData[] = [
},
{ brandName: 'Retroid', modelName: 'Pocket 4', socName: 'Dimensity 900' },
{ brandName: 'Retroid', modelName: 'Pocket 5', socName: 'Snapdragon 865' },
{ brandName: 'Retroid', modelName: 'Pocket 6', socName: 'Snapdragon 8 Gen 2' },
{
brandName: 'Retroid',
modelName: 'Pocket Classic',
Expand Down Expand Up @@ -474,9 +475,13 @@ const devices: DeviceData[] = [
},

// Google Pixel
{ brandName: 'Google', modelName: 'Pixel 10 Pro XL', socName: 'Tensor G5' },
{ brandName: 'Google', modelName: 'Pixel 10 Pro', socName: 'Tensor G5' },
{ brandName: 'Google', modelName: 'Pixel 10', socName: 'Tensor G5' },
{ brandName: 'Google', modelName: 'Pixel 9 Pro XL', socName: 'Tensor G4' },
{ brandName: 'Google', modelName: 'Pixel 9 Pro', socName: 'Tensor G4' },
{ brandName: 'Google', modelName: 'Pixel 9', socName: 'Tensor G4' },
{ brandName: 'Google', modelName: 'Pixel 9a', socName: 'Tensor G4' },
{ brandName: 'Google', modelName: 'Pixel 8a', socName: 'Tensor G3' },
{ brandName: 'Google', modelName: 'Pixel 8 Pro', socName: 'Tensor G3' },
{ brandName: 'Google', modelName: 'Pixel 8', socName: 'Tensor G3' },
Expand Down
10 changes: 9 additions & 1 deletion prisma/seeders/socSeeder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1163,12 +1163,20 @@ const socs: SoCData[] = [
},

// Google Tensor SoCs
{
name: 'Tensor G5',
manufacturer: 'Google',
architecture: 'ARM64',
processNode: '3nm',
cpuCores: 8,
gpuModel: 'PowerVR DXT-48-1536',
},
Comment thread
coderabbitai[bot] marked this conversation as resolved.
{
name: 'Tensor G4',
manufacturer: 'Google',
architecture: 'ARM64',
processNode: '4nm',
cpuCores: 9,
cpuCores: 8,
gpuModel: 'Mali-G715',
},
{
Expand Down
Loading