Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 109 for constInt8 (0.2 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		map[string]string{
    			constants.ManagedGatewayLabel: constants.ManagedGatewayMeshControllerLabel,
    			constants.GatewayNameLabel:    "waypoint-ns",
    		}, nil, true, corev1.PodRunning)
    	s.assertEvent(t, s.podXdsName("waypoint-ns-pod"))
    	// create the waypoint service
    	s.addService(t, "waypoint-ns",
    		map[string]string{constants.ManagedGatewayLabel: constants.ManagedGatewayMeshControllerLabel},
    		map[string]string{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      if (!shaped_type) {
        return errors::Internal("Constant doesn't have a shape");
      }
      auto op = builder.create<tfl::ExternalConstOp>(
          loc, shaped_type, builder.getI32IntegerAttr(buffer_index));
      return op.getOperation();
    }
    
    // TODO(b/172664358): Creates a new op instead of reusing constant op.
    // Creates a constant op with "tfl.is_variable" attribute to represent stateful
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (NEG(Q|L) (NEG(Q|L) x)) => x
    (NEG(Q|L) s:(SUB(Q|L) x y)) && s.Uses == 1 => (SUB(Q|L) y x)
    
    // Convert constant subtracts to constant adds
    (SUBQconst [c] x) && c != -(1<<31) => (ADDQconst [-c] x)
    (SUBLconst [c] x) => (ADDLconst [-c] x)
    
    // generic constant folding
    // TODO: more of this
    (ADDQconst [c] (MOVQconst [d])) => (MOVQconst [int64(c)+d])
    (ADDLconst [c] (MOVLconst [d])) => (MOVLconst [c+d])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

      // CHECK-NEXT: %[[CONST:.*]] = "tf.Const"()
      %constant = "tf.Const"() {value = dense<0.0> : tensor<4xf32>} : () -> tensor<4xf32>
      "tf.AssignVariableOp"(%arg0, %constant) : (tensor<*x!tf_type.resource<tensor<4xf32>>>, tensor<4xf32>) -> ()
      // CHECK-NEXT: return %[[CONST]], %[[CONST]]
      func.return %arg0, %constant : tensor<*x!tf_type.resource<tensor<4xf32>>>, tensor<4xf32>
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/tests/raise-target-subgraphs.mlir

          %cst_4 = arith.constant dense<[0, 0, 1, 1, 1]> : tensor<5xi32>
          %cst_5 = arith.constant dense<[0, 1, 0, 1, 1]> : tensor<5xi32>
          %cst_6 = arith.constant dense<2> : tensor<i32>
          %cst_7 = arith.constant dense<"*"> : tensor<!tf_type.string>
          %cst_8 = arith.constant dense<-1> : tensor<1xi32>
          %cst_9 = arith.constant dense<-1> : tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                return;
            }
    
            final StringBuilder buf = new StringBuilder(1000);
            request.setAttribute(Constants.SEARCH_LOG_ACCESS_TYPE, Constants.SEARCH_LOG_ACCESS_TYPE_JSON);
            final JsonRequestParams params = new JsonRequestParams(request, fessConfig);
            try {
                response.setContentType("application/x-ndjson; charset=UTF-8");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Trunc(16|32|64)to8  x) => (MOVBZreg x)
    (Trunc(32|64)to16 <t> x) && t.IsSigned() => (MOVHreg x)
    (Trunc(32|64)to16 x) => (MOVHZreg x)
    (Trunc64to32 <t> x) && t.IsSigned() => (MOVWreg x)
    (Trunc64to32 x) => (MOVWZreg x)
    
    // Lowering constants
    (Const(64|32|16|8) [val]) => (MOVDconst [int64(val)])
    (Const(32|64)F ...) => (FMOV(S|D)const ...)
    (ConstNil) => (MOVDconst [0])
    (ConstBool [t]) => (MOVDconst [b2i(t)])
    
    // Carrying addition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      // This is done after the first round of optimization to make sure all the
      // min/max operands of the tf.FakeQuant* are constants to be matched. The
      // following round of optimization will folding the unwrapped
      // tf.FakeQuant* ops with the weight constants.
      if (failed(ConvertFakeQuantOps(func, ctx, use_fake_quant_num_bits_))) {
        signalPassFailure();
        return;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/CharMatcher.java

       *                            8
       */
    
      // Constant matcher factory methods
    
      /**
       * Matches any character.
       *
       * @since 19.0 (since 1.0 as constant {@code ANY})
       */
      public static CharMatcher any() {
        return Any.INSTANCE;
      }
    
      /**
       * Matches no characters.
       *
       * @since 19.0 (since 1.0 as constant {@code NONE})
       */
      public static CharMatcher none() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    )
    
    // Creates a SID for a well-known predefined alias, generally using the constants of the form
    // Win*Sid, for the local machine.
    func CreateWellKnownSid(sidType WELL_KNOWN_SID_TYPE) (*SID, error) {
    	return CreateWellKnownDomainSid(sidType, nil)
    }
    
    // Creates a SID for a well-known predefined alias, generally using the constants of the form
    // Win*Sid, for the domain specified by the domainSid parameter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top