Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for salary (0.17 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

    TEST(XlaCompilationTest, HalfSupported) {
      std::unique_ptr<Graph> graph(new Graph(OpRegistry::Global()));
      {
        GraphDefBuilder builder(GraphDefBuilder::kFailImmediately);
        Tensor t(DT_HALF, TensorShape());
        t.scalar<Eigen::half>()() = static_cast<Eigen::half>(0.0f);
        Node* a = ops::SourceOp("Const", builder.opts()
                                             .WithName("A")
                                             .WithAttr("dtype", DT_HALF)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

        tf_device.return
      }) : () -> ()
      func.return
    }
    
    // Test that tf.ResourceScatterAdd operation is decomposed to
    // tf.TensorScatterAdd. Updates is scalar.
    // CHECK-LABEL: @decompose_ResourceScatterAdd_op_with_scalar_updates
    func.func @decompose_ResourceScatterAdd_op_with_scalar_updates(%resource : tensor<*x!tf_type.resource>, %indices : tensor<?xi32>, %updates: tensor<i32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis.cc

          TF_RETURN_IF_ERROR(GetNodeAttr(node->def(), "value", &proto));
    
          Tensor tensor(proto->dtype());
          TF_RET_CHECK(tensor.FromProto(*proto));
    
          *predicate = tensor.scalar<bool>()() ? MakeTrue() : MakeFalse();
          return absl::OkStatus();
        }
    
        SignatureForSymbol signature = {tensor_id, must_be_true};
        auto it = interned_symbol_instances_.find(signature);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    					{
    						MaxSkew:           2,
    						TopologyKey:       "galaxy",
    						WhenUnsatisfiable: v1.ScheduleAnyway,
    					},
    				},
    				DefaultingType: config.ListDefaulting,
    			},
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node-a").Label("planet", "mars").Label("galaxy", "andromeda").Obj(),
    			},
    			objs: []runtime.Object{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    	if n > maxObletBytes {
    		// Large object. Break into oblets for better
    		// parallelism and lower latency.
    		if b == s.base() {
    			// Enqueue the other oblets to scan later.
    			// Some oblets may be in b's scalar tail, but
    			// these will be marked as "no more pointers",
    			// so we'll drop out immediately when we go to
    			// scan those.
    			for oblet := b + maxObletBytes; oblet < s.base()+s.elemsize; oblet += maxObletBytes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier.go

    	// kubeProxyFirewallChain is the kube-proxy firewall chain
    	kubeProxyFirewallChain utiliptables.Chain = "KUBE-PROXY-FIREWALL"
    
    	// kube proxy canary chain is used for monitoring rule reload
    	kubeProxyCanaryChain utiliptables.Chain = "KUBE-PROXY-CANARY"
    
    	// kubeletFirewallChain is a duplicate of kubelet's firewall containing
    	// the anti-martian-packet rule. It should not be used for any other
    	// rules.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // node -- a NoOp node that only the Sink node control depends on.
      bool IsSinkLike(const Cluster& cluster);
    
      // Returns true if `cluster` looks like an "i++" operation on an integer
      // scalar resource variable.
      bool IsScalarIntegerResourceOperation(const Cluster& cluster);
    
      // ---------------------------------------------------------------------------
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    					if s.Type == "array" || s.Type == "object" {
    						allErrs.SchemaErrors = append(allErrs.SchemaErrors, field.Invalid(fldPath.Child("items").Child("properties").Key(k).Child("type"), schema.Items.Schema.Type, "must be a scalar type if parent array's x-kubernetes-list-type is map"))
    					}
    				} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.h

    // into `dims`. `dims` must be an array large enough to hold `num_dims`
    // entries (e.g., the return value of TF_GraphGetTensorNumDims).
    //
    // If the number of dimensions in the shape is unknown or the shape is
    // a scalar, `dims` will remain untouched. Otherwise, each element of
    // `dims` will be set corresponding to the size of the dimension. An
    // unknown dimension is represented by `-1`.
    //
    // Returns an error into `status` if:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

               (TFL_L2NormalizationOp $x, TFL_AF_None),
               [(L2NormValidReduceIndex $sq_op, $axis)]>;
    
      // Below patterns for L2Normalize when there is an Add or Maximum
      // adding or clamping to a small constant scalar.
      def L2NormalizePattern2#FirstOp#SecondOp : Pat<
                        (FirstOp $x,
                         (SecondOp
                          (TFL_AddOp
                           (TFL_SumOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
Back to top