Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for cont (0.05 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        %cst = "tf.Const"() {value = dense<0> : tensor<1x2xi32>} : () -> tensor<1x2xi32>
        %cst_0 = "tf.Const"() {value = dense<1> : tensor<1xi32>} : () -> tensor<1xi32>
        %cst_1 = "tf.Const"() {value = dense<2> : tensor<1xi32>} : () -> tensor<1xi32>
        %cst_2 = "tf.Const"() {value = dense<3> : tensor<1xi32>} : () -> tensor<1xi32>
        %cst_3 = "tf.Const"() {value = dense<4> : tensor<1xi32>} : () -> tensor<1xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  2. src/html/entity.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package html
    
    import "sync"
    
    // All entities that do not end with ';' are 6 or fewer bytes long.
    const longestEntityWithoutSemicolon = 6
    
    // entity is a map from HTML entity names to their values. The semicolon matters:
    // https://html.spec.whatwg.org/multipage/named-characters.html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    			return sameTarget, toAPIError(ctx, BucketRemoteArnTypeInvalid{Bucket: bucket})
    		}
    		clnt := globalBucketTargetSys.GetRemoteTargetClient(bucket, arnStr)
    		if clnt == nil {
    			return sameTarget, toAPIError(ctx, BucketRemoteTargetNotFound{Bucket: bucket})
    		}
    		if checkRemote { // validate remote bucket
    			found, err := clnt.BucketExists(ctx, arn.Bucket)
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

      // expected-remark@above {{ID: 5}}
        %island:2 = tf_executor.island {
        // expected-remark@above {{ID: 3}}
          %const = "tf.Const"() { value = dense<0> : tensor<i1> } : () -> tensor<i1>
          // expected-remark@above {{ID: 0}}
          %eq = "tf.Equal"(%pred, %const) : (tensor<i1>, tensor<i1>) -> tensor<i1>
          // expected-remark@above {{ID: 1}}
          tf_executor.yield %eq : tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    int64_t AddNOp::GetArithmeticCount(Operation* op) {
      int64_t count;
      if (ArithmeticCountUtilHelper::GetFirstOutputCount(op, &count)) {
        // AddN cost is roughly the same cost as N-1 Adds.
        const int64_t num_adds = op->getNumOperands() - 1;
        return num_adds * count;
      }
    
      return -1;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&ccupssm;":                         "\u2a50",
    	"&cdot;":                            "\u010b",
    	"&cedil;":                           "\u00b8",
    	"&cemptyv;":                         "\u29b2",
    	"&cent;":                            "\u00a2",
    	"&centerdot;":                       "\u00b7",
    	"&cfr;":                             "\U0001d520",
    	"&chcy;":                            "\u0447",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  7. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    	nodeController.recorder = testutil.NewFakeRecorder()
    	nodeController.getPodsAssignedToNode = fakeGetPodsAssignedToNode(fakeNodeHandler.Clientset)
    
    	getStatus := func(cond *v1.NodeCondition) *v1.ConditionStatus {
    		if cond == nil {
    			return nil
    		}
    		return &cond.Status
    	}
    
    	tests := []struct {
    		name string
    		node *v1.Node
    	}{
    		{
    			name: "Status true",
    			node: &v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // Build while operator where cond & body are regions.
      std::optional<BufferOffset<tflite::Operator>> BuildWhileOperator(
          mlir::TFL::WhileOp op, const std::vector<int32_t>& operands,
          const std::vector<int32_t>& results);
    
      // Build call once operator.
      BufferOffset<tflite::Operator> BuildCallOnceOperator(
          mlir::TFL::CallOnceOp op, const std::vector<int32_t>& operands,
          const std::vector<int32_t>& results);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    }
    
    func (pb podBuilder) indexFailureCount(count string) podBuilder {
    	return pb.annotation(batch.JobIndexFailureCountAnnotation, count)
    }
    
    func (pb podBuilder) indexIgnoredFailureCount(count string) podBuilder {
    	return pb.annotation(batch.JobIndexIgnoredFailureCountAnnotation, count)
    }
    
    func (pb podBuilder) annotation(key, value string) podBuilder {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"clown_face":                           "\U0001f921",
    	"clubs":                                "\u2663\ufe0f",
    	"cn":                                   "\U0001f1e8\U0001f1f3",
    	"coat":                                 "\U0001f9e5",
    	"cockroach":                            "\U0001fab3",
    	"cocktail":                             "\U0001f378",
    	"coconut":                              "\U0001f965",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
Back to top