Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for uvarint (0.13 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    	}
    
    	x := base.Ctxt.Lookup(s.curfn.LSym.Name + ".opendefer")
    	x.Set(obj.AttrContentAddressable, true)
    	s.curfn.LSym.Func().OpenCodedDeferInfo = x
    
    	off := 0
    	off = objw.Uvarint(x, off, uint64(-s.deferBitsTemp.FrameOffset()))
    	off = objw.Uvarint(x, off, uint64(-firstOffset))
    }
    
    // buildssa builds an SSA function for fn.
    // worker indicates which of the backend workers is doing the processing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/decompose_optionals.mlir

          f = @identity} : (tensor<!tf_type.variant<tensor<f32>>>) -> tensor<!tf_type.variant<tensor<f32>>>
      %2 = "tf.OptionalGetValue"(%1) : (tensor<!tf_type.variant<tensor<f32>>>) -> tensor<f32>
      %3 = "tf.OptionalNone"() : () -> tensor<!tf_type.variant<tensor<f32>>>
      return %2, %3 : tensor<f32>, tensor<!tf_type.variant<tensor<f32>>>
    }
    
    func.func private @identity(%arg0: tensor<!tf_type.variant<tensor<f32>>>) -> tensor<!tf_type.variant<tensor<f32>>> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/metadata/ProjectMetadataController.kt

                writeVariant(it)
            }
        }
    
        private
        suspend fun WriteContext.writeVariant(variant: VariantResolveMetadata) {
            writeString(variant.name)
            write(variant.identifier)
            write(variant.attributes)
            writeCollection(variant.artifacts)
        }
    
        override fun read(decoder: Decoder): LocalComponentGraphResolveState {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

          // Results in a bad mismatch of shapes.
          %updated_list = "tf.TensorListSetItem"(%list, %index, %element) : (tensor<!tf_type.variant<tensor<64x1xbf16>>>, tensor<i32>, tensor<64x1xbf16>) -> tensor<!tf_type.variant<tensor<64x1xbf16>>>
    
          return %updated_list : tensor<!tf_type.variant<tensor<64x1xbf16>>>
        }
      })";
    
      auto compilation_result = CompileMlirModule(
          kTensorListSetItemDimensionTooLarge,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        auto extended_part = rewriter->create<TF::TensorListReserveOp>(
            loc, resize_op.getOutputHandle().getType(), elem_shape, size_diff);
        // `ConcatOp` expects non-variant-typed input. Insert a
        // `TensorListStackOp` here to convert type from variant to non-variant.
        // Note that we are using the same `result_type` for both the
        // `TensorListStackOp` and `ConcatOp`, since the first dimension of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.pb.go

    	RoutingPreference []LoadBalancing_Scope `protobuf:"varint,1,rep,packed,name=routing_preference,json=routingPreference,proto3,enum=istio.workload.LoadBalancing_Scope" json:"routing_preference,omitempty"`
    	// mode defines how we should handle the routing preferences.
    	Mode LoadBalancing_Mode `protobuf:"varint,2,opt,name=mode,proto3,enum=istio.workload.LoadBalancing_Mode" json:"mode,omitempty"`
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'deprecation:configurations-acting-as-both-root-and-variant' : 'Configurations should not act as both a resolution root and a variant simultaneously.',
            'deprecation:repository-jcenter' : 'The RepositoryHandler.jcenter() method has been deprecated.',
            'task-selection:no-matches' : 'cannot locate task',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

                                    PatternRewriter& rewriter) const override {
        Type elementType = getElementTypeOrSelf(op->getResult(0));
        Type newType = nullptr;
        if (auto variant = dyn_cast<TF::VariantType>(elementType)) {
          ArrayRef<TensorType> sub = variant.getSubtypes();
          if (sub.size() == 1) {
            auto inner = sub[0];
            if (!isa<TF::VariantType>(inner)) {
              newType = inner;
            }
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. manifests/charts/ztunnel/templates/daemonset.yaml

          - name: istio-proxy
    {{- if contains "/" .Values.image }}
            image: "{{ .Values.image }}"
    {{- else }}
            image: "{{ .Values.hub }}/{{ .Values.image | default "ztunnel" }}:{{ .Values.tag }}{{with (.Values.variant )}}-{{.}}{{end}}"
    {{- end }}
            ports:
            - containerPort: 15020
              name: ztunnel-stats
              protocol: TCP
            resources:
    {{- if .Values.resources }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.h"
    
    #include <cstdint>
    #include <memory>
    #include <string>
    #include <variant>
    #include <vector>
    
    #include "absl/container/flat_hash_set.h"
    #include "absl/log/log.h"
    #include "absl/strings/str_cat.h"
    #include "llvm/ADT/DenseMap.h"
    #include "llvm/ADT/StringRef.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top