Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for api_type (0.24 sec)

  1. tensorflow/compiler/mlir/lite/transforms/post_quantize.cc

          continue;
        }
    
        // Make a copy of current argument and append it to the end of the list if
        // the pattern isn't found.
        Type arg_type = arg.getType();
        input_types.push_back(arg_type);
        auto new_arg = bb.addArgument(arg_type, loc);
        arg.replaceAllUsesWith(new_arg);
        arg.dropAllUses();
        bb.eraseArgument(0);
      }
    
      // Edit the return ops and remove the dequantize ops in place.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    // classification for API Priority and Fairness
    type PriorityAndFairnessClassification struct {
    	FlowSchemaName    string
    	FlowSchemaUID     apitypes.UID
    	PriorityLevelName string
    	PriorityLevelUID  apitypes.UID
    }
    
    // waitingMark tracks requests waiting rather than being executed
    var waitingMark = &requestWatermark{
    	phase: epmetrics.WaitingPhase,
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/promote_resources_to_args.cc

      auto add_resource_argument = [&](BlockArgument arg,
                                       TF::ResourceType resource_type) {
        Type arg_type = resource_type.getSubtypes().front();
        arg.setType(arg_type);
        resources[arg.getArgNumber()].live_value = arg;
        argument_types[arg.getArgNumber()] = arg_type;
        has_resources = true;
      };
    
      // Loop through the non `tf.VarHandleOp` resource arguments in the function,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. pilot/pkg/security/model/authentication.go

    	return &tls.SdsSecretConfig{
    		Name: name,
    		SdsConfig: &core.ConfigSource{
    			ConfigSourceSpecifier: &core.ConfigSource_ApiConfigSource{
    				ApiConfigSource: &core.ApiConfigSource{
    					ApiType:                   core.ApiConfigSource_GRPC,
    					SetNodeOnFirstMessageOnly: true,
    					TransportApiVersion:       core.ApiVersion_V3,
    					GrpcServices: []*core.GrpcService{
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. pkg/kube/kclient/client.go

    package kclient
    
    import (
    	"context"
    	"fmt"
    	"sync"
    	"sync/atomic"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	klabels "k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	apitypes "k8s.io/apimachinery/pkg/types"
    	"k8s.io/client-go/tools/cache"
    
    	"istio.io/istio/pilot/pkg/features"
    	istiogvr "istio.io/istio/pkg/config/schema/gvr"
    	"istio.io/istio/pkg/config/schema/kubeclient"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

          switch (nested_value.value_case()) {
            case AttrValue::kS:
              list->add_s(nested_value.s());
              break;
            case AttrValue::kType:
              list->add_type(nested_value.type());
              break;
            case AttrValue::kShape:
              *list->add_shape() = nested_value.shape();
              break;
            default:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/plugins/NativeBasePlugin.java

    import java.util.Set;
    import java.util.concurrent.Callable;
    
    import static org.gradle.api.artifacts.type.ArtifactTypeDefinition.DIRECTORY_TYPE;
    import static org.gradle.api.artifacts.type.ArtifactTypeDefinition.ZIP_TYPE;
    import static org.gradle.language.cpp.CppBinary.LINKAGE_ATTRIBUTE;
    
    /**
     * A common base plugin for the native plugins.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.cc

      AttrValue value;
      auto& type_list = *value.mutable_list();
      for (auto type : types) {
        DataType dtype;
        TF_RETURN_IF_ERROR(ConvertScalarTypeToDataType(type, &dtype));
        type_list.add_type(dtype);
      }
    
      auto result = values->insert({string(name), value});
      assert(result.second && "cannot have multiple attributes with the same name");
      (void)result;
    
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

      // Replace argument types and locs.
      Block& entry = entry_func_op->getRegion(0).front();
      for (auto [arg, arg_type, arg_loc] :
           llvm::zip_equal(entry.getArguments(), arg_types, arg_locs)) {
        arg.setType(arg_type);
        arg.setLoc(arg_loc);
      }
    }
    
    // Creates a UniformQuantize op and sets it as return op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/math_grad_test.cc

        REAL,
        IMAG,
        CONJ,
        COMPLEX,
        ANGLE,
        LGAMMA,
        ERF,
        ERFINV,
        NDTRI
      };
    
      template <typename X_T, typename Y_T>
      void TestCWiseGrad(UnaryOpType op_type, const std::function<X_T(int)>& x_fn) {
        TF_ASSERT_OK(scope_.status());
        DataType x_type = DataTypeToEnum<X_T>::v();
        TensorShape shape({2, 3, 2});
        auto x = Placeholder(scope_, x_type, Placeholder::Shape(shape));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
Back to top