Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setModel (0.1 sec)

  1. pkg/scheduler/framework/runtime/framework_test.go

    			defer cancel()
    			f, err := newFrameworkWithQueueSortAndBind(ctx, registry, profile, WithPodNominator(podNominator))
    			if err != nil {
    				t.Fatalf("fail to create framework: %s", err)
    			}
    			tt.nodeInfo.SetNode(tt.node)
    			gotStatus := f.RunFilterPluginsWithNominatedPods(ctx, framework.NewCycleState(), tt.pod, tt.nodeInfo)
    			if diff := cmp.Diff(gotStatus, tt.wantStatus, cmpOpts...); diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        return translator->TranslateInternal();
      }
      return ret;
    }
    
    bool Translator::CheckGpuDelegateCompatibility(uint8_t* model_buffer_pointer) {
      bool gpu_compatibile = true;
      auto model = tflite::GetModel(model_buffer_pointer);
      auto subgraphs = model->subgraphs();
    
      for (int i = 0; i < subgraphs->Length(); ++i) {
        const tflite::SubGraph* subgraph = subgraphs->Get(i);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    				}
    			}
    		})
    	}
    }
    
    func TestPreFilterDisabled(t *testing.T) {
    	pod := &v1.Pod{}
    	nodeInfo := framework.NewNodeInfo()
    	node := v1.Node{}
    	nodeInfo.SetNode(&node)
    	_, ctx := ktesting.NewTestContext(t)
    	p := plugintesting.SetupPlugin(ctx, t, topologySpreadFunc, &config.PodTopologySpreadArgs{DefaultingType: config.ListDefaulting}, cache.NewEmptySnapshot())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
Back to top