Skip to content

Commit

Permalink
Add BC Info
Browse files Browse the repository at this point in the history
  • Loading branch information
Mmasoud1 committed Feb 4, 2024
1 parent 1984b28 commit 9d64545
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2195,6 +2195,8 @@
<input type="text" name="Extra_Err_Info" id= "Extra_Err_Info" />
<input type="text" name="Extra_Info" id= "Extra_Info" />
<input type="number" step=any name="CPU_Cores" id= "CPU_Cores" />
<input type="text" name="Which_Brainchop" id= "Which_Brainchop" />
<input type="text" name="Seq_Conv" id= "Seq_Conv" />
<input type="submit" id="SubmitStatisticalData" />
</form>
</div>
Expand Down
5 changes: 4 additions & 1 deletion js/brainchop/mainMeshNetFunctions.js
Original file line number Diff line number Diff line change
Expand Up @@ -7035,7 +7035,10 @@ resetMainParameters = () => {
statData["GPU_Vendor_Full"] = detectGPUVendor_v0();
statData["GPU_Card_Full"] = detectGPUCardType_v0();
statData["CPU_Cores"] = getCPUNumCores();
statData["TF_Backend"] = tf.getBackend();
statData["TF_Backend"] = tf.getBackend();

statData["Which_Brainchop"] = "latest";
statData["Seq_Conv"] = inferenceModelsList[$$("selectModel").getValue() - 1]["enableSeqConv"];


//-- Init
Expand Down
2 changes: 1 addition & 1 deletion js/brainchop/mainParameters.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
Data_Load: null, Preprocess_t: null, Inference_t: null, Merge_t: null, Postprocess_t: null,
Model: null, Browser: null, Browser_Ver: null, OS: null, Texture_Size: null, Heap_Size_MB: Infinity, Used_Heap_MB: Infinity, Heap_Limit_MB: Infinity,
WebGL1: null, WebGL2: null, TF_Backend: null, GPU_Vendor: null, GPU_Vendor_Full: null,
GPU_Card: null, GPU_Card_Full:null, Status: null, CPU_Cores: null, Error_Type: null, Extra_Err_Info: null, Extra_Info: null };
GPU_Card: null, GPU_Card_Full:null, Status: null, CPU_Cores: null, Error_Type: null, Extra_Err_Info: null, Extra_Info: null, Which_Brainchop: null, Seq_Conv: null };



Expand Down

0 comments on commit 9d64545

Please sign in to comment.