Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 238 for states_ (0.18 sec)

  1. tensorflow/compiler/mlir/lite/tests/quantize.mlir

    }
    
    // CHECK-LABEL: NotQuantizeReadVariable
    func.func @NotQuantizeReadVariable() -> tensor<1x2x3x!quant.uniform<u8<1:255>:f32, 0.047244094488188976:128>> {
      %0 = "tfl.var_handle"() {container = "", shared_name = "states"} : () -> tensor<!tf_type.resource<tensor<1x2x3xf32>>>
      %1 = "tfl.read_variable"(%0) : (tensor<!tf_type.resource<tensor<1x2x3xf32>>>) -> tensor<1x2x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:10:13 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_openbsd_arm.go

    	}
    	return
    }
    
    func libc_stat_trampoline()
    
    //go:cgo_import_dynamic libc_stat stat "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Statfs(path string, stat *Statfs_t) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    //===----------------------------------------------------------------------===//
    // Random ops.
    //===----------------------------------------------------------------------===//
    // TODO(b/148269299): handle random number generator seeds/states correctly.
    
    class MHLO_RngDistributionValue<string enumStr> :
      ConstantAttr<MHLO_RngDistributionAttr, "::mlir::mhlo::RngDistribution::" # enumStr>;
    
    def : Pat<(TF_RandomUniformOp:$old $shape, $seed, $seed2),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      const IDLE = 0;
      const MOUSEPAN = 1;
      const TOUCHPAN = 2;
      const TOUCHZOOM = 3;
      let mode = IDLE;
    
      // State needed to implement zooming.
      let currentScale = 1.0;
      const initWidth = svg.viewBox.baseVal.width;
      const initHeight = svg.viewBox.baseVal.height;
    
      // State needed to implement panning.
      let panLastX = 0;      // Last event X coordinate
      let panLastY = 0;      // Last event Y coordinate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. src/database/sql/convert.go

    		return nil, nil
    	}
    	return vr.Value()
    }
    
    // decimal composes or decomposes a decimal value to and from individual parts.
    // There are four parts: a boolean negative flag, a form byte with three possible states
    // (finite=0, infinite=1, NaN=2), a base-2 big-endian integer
    // coefficient (also known as a significand) as a []byte, and an int32 exponent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. pkg/kubelet/pleg/generic.go

    	for _, sandboxStatus := range status.SandboxStatuses {
    		// If at least one sandbox is ready, then use this status update's pod IP
    		if sandboxStatus.State == runtimeapi.PodSandboxState_SANDBOX_READY {
    			return status.IPs
    		}
    	}
    
    	// For pods with no ready containers or sandboxes (like exited pods)
    	// use the old status' pod IP
    	return oldStatus.IPs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // +optional
      optional FlowSchemaSpec spec = 2;
    
      // `status` is the current status of a FlowSchema.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional FlowSchemaStatus status = 3;
    }
    
    // FlowSchemaCondition describes conditions for a FlowSchema.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. pkg/kubelet/pleg/generic_test.go

    	// Return normal status for pods[1].
    	runtimeMock.EXPECT().GetPodStatus(ctx, pods[1].ID, "", "").Return(statuses[1], nil).Times(1)
    	pleg.Relist()
    	actualEvents = getEventsFromChannel(ch)
    	cases = []struct {
    		pod    *kubecontainer.Pod
    		status *kubecontainer.PodStatus
    		error  error
    	}{
    		{pod: pods[0], status: statuses[0], error: nil},
    		{pod: pods[1], status: statuses[1], error: nil},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    		expected *kubecontainer.Status
    	}{
    		"created container": {
    			input: &runtimeapi.ContainerStatus{
    				Id:        cid.ID,
    				Metadata:  meta,
    				Image:     imageSpec,
    				State:     runtimeapi.ContainerState_CONTAINER_CREATED,
    				CreatedAt: createdAt,
    			},
    			expected: &kubecontainer.Status{
    				ID:        *cid,
    				Image:     imageSpec.Image,
    				State:     kubecontainer.ContainerStateCreated,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // +optional
      optional FlowSchemaSpec spec = 2;
    
      // `status` is the current status of a FlowSchema.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional FlowSchemaStatus status = 3;
    }
    
    // FlowSchemaCondition describes conditions for a FlowSchema.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top