Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for handle_op (0.2 sec)

  1. cluster/addons/calico-policy-controller/ipamblock-crd.yaml

                      # to handle []*int properly itself.
                      nullable: true
                    type: array
                  attributes:
                    items:
                      properties:
                        handle_id:
                          type: string
                        secondary:
                          additionalProperties:
                            type: string
                          type: object
                      type: object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. tensorflow/c/eager/parallel_device/parallel_device_testlib.h

      //
      // Note that creating this resource-dtype handle can fail, so `Create` is a
      // separate static method which returns a status.
      Variable(TFE_TensorHandle* handle, TF_DataType type)
          : handle_(handle), type_(type) {}
    
      // Helper for constructing a resource handle and wrapping it in a `Variable`
      // object.
      static Variable* Create(TFE_Context* context, TF_DataType type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 09 01:12:35 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/mlrt/async_while.mlir

    func.func private @"sort_map/while_cond"(%loop_count: tensor<i32>, %max_iterations: tensor<i32>, %handle: tensor<?x!tf_type.resource>, %flow_in: tensor<*xf32>, %matrix: tensor<3x3xf32>, %handle_2: tensor<?x!tf_type.resource>, %flow_in_2: tensor<*xf32>, %matrix_2: tensor<3x3xf32>, %bound: tensor<i32>) -> tensor<i1> {
      %0 = "tf.Less"(%loop_count, %max_iterations) : (tensor<i32>, tensor<i32>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/optimize_tf_control_flow_side_effect.mlir

      // CHECK: tf.While
      // CHECK-SAME: is_stateless = true
      %0, %handle_2 = "tf.While"(%arg, %handle) { cond = @cond, body = @body, is_stateless = false} : (tensor<i32>, tensor<!tf_type.resource>) -> (tensor<i32>, tensor<!tf_type.resource>)
      func.return %0: tensor<i32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 01:15:55 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. src/runtime/libfuzzer_amd64.s

    // builtin __builtin_return_address. Since we invoke the hooks always
    // from the same native function, this builtin would always return the same
    // value. Internally, the libFuzzer hooks call through to the always inlined
    // HandleCmp and thus can't be mimicked without patching libFuzzer.
    //
    // We solve this problem via an inline assembly trampoline construction that
    // translates a runtime argument `fake_pc` in the range [0, 512) into a call to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 04:57:07 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

      while_op.erase();
      return success();
    }
    
    // Handles stack usage by a tf.If. It will convert the branch function
    // signatures, and performs stack ops decomposition on them.
    LogicalResult HandleIfOp(
        TF::IfOp if_op, ModuleOp module,
        const llvm::SmallDenseMap<Value, Value>& data_var_to_size_var,
        llvm::StringMap<PartitionedCallStackOpsInfo>*
            decomposed_partitioned_call_callees) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. tensorflow/c/eager/gradients.h

      int64_t GetID() const;
      tensorflow::DataType GetDType() const;
    
      AbstractTensorHandle* ZerosLike() const;
    
      AbstractTensorHandle* GetHandle() const;
    
     private:
      AbstractTensorHandle* handle_;
    };
    
    // A tracing/immediate-execution agnostic tape.
    //
    // Gradient functions defined for this tape must support handling null incoming
    // gradients.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 26 10:27:05 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tensor_array_ops_decomposition.cc

        } else {
          while_op.getResult(i).replaceAllUsesWith(new_while.getResult(i));
        }
      }
      while_op.erase();
      return success();
    }
    
    LogicalResult HandleIfOp(TF::IfOp if_op, ModuleOp module,
                             llvm::SmallDenseMap<Value, TensorArrayStats>* stats,
                             llvm::StringMap<PartitionedCallTensorArrayOpsInfo>*
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 40.2K bytes
    - Viewed (0)
  9. pkg/adsc/adsc.go

    				valBytes := rsc.Value
    				rl := &route.RouteConfiguration{}
    				_ = proto.Unmarshal(valBytes, rl)
    				routes = append(routes, rl)
    			}
    			a.handleRDS(routes)
    		default:
    			if isMCP {
    				a.handleMCP(resourceGvk, msg.Resources)
    			}
    		}
    
    		// If we got no resource - still save to the store with empty name/namespace, to notify sync
    		// This scheme also allows us to chunk large responses !
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  10. pkg/adsc/adsc_test.go

    				{"foo2", "foo2.bar.com", "192.2.2.22"},
    				{"foo3", "foo3.bar.com", "192.1.1.33"},
    			},
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.desc, func(t *testing.T) {
    			adsc.handleMCP(gvk.ServiceEntry, tt.resources)
    			configs := adsc.Store.List(gvk.ServiceEntry, "")
    			if len(configs) != len(tt.expectedResources) {
    				t.Errorf("expected %v got %v", len(tt.expectedResources), len(configs))
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 15.4K bytes
    - Viewed (0)
Back to top