Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for input_node (0.24 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

    using mlir::lite::CustomOpMap;
    using mlir::lite::QuantizeWeights;
    constexpr bool kUseUpdatedHybridSchemeDefault = true;
    
    std::unique_ptr<ModelT> CreateMutableModelFromFile(const Model* input_model) {
      auto copied_model = std::make_unique<ModelT>();
      input_model->UnPackTo(copied_model.get(), nullptr);
      return copied_model;
    }
    
    std::unique_ptr<FlatBufferModel> ReadTestModel() {
      auto model_path = tensorflow::io::JoinPath(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api.cc

    }
    
    TF_CAPI_EXPORT extern int TFE_OpGetInputLength(TFE_Op* op,
                                                   const char* input_name,
                                                   TF_Status* status) {
      int ret = -1;
      status->status = tensorflow::unwrap(op)->InputLength(input_name, &ret);
      return ret;
    }
    
    TF_CAPI_EXPORT extern int TFE_OpGetOutputLength(TFE_Op* op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    				label.TopologySubzone.Name: "subzone1",
    			},
    		},
    	}
    
    	controller, _ := NewFakeControllerWithOptions(t, FakeControllerOptions{})
    	addNodes(t, controller, inputNode)
    
    	assert.Equal(t, expectNode, controller.nodes.Get(inputNode.Name, ""))
    }
    
    func TestStripPodUnusedFields(t *testing.T) {
    	inputPod := &corev1.Pod{
    		TypeMeta: metav1.TypeMeta{
    			Kind:       "Pod",
    			APIVersion: "v1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_test.cc

      // Retrieve the regression signature from meta graph def.
      const auto signature_def_map = metagraph_def.signature_def();
      const auto signature_def = signature_def_map.at("regress_x_to_y");
    
      const string input_name =
          signature_def.inputs().at(tensorflow::kRegressInputs).name();
      const string output_name =
          signature_def.outputs().at(tensorflow::kRegressOutputs).name();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
Back to top