Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for Binary1 (0.15 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        OperandsSameElementTypeConstraintBasePred>;
    
    // This is a constraint for most of the binary ops, e.g., add, mul, div, etc.
    // Binary ops lhs & rhs should have the same value type, and is capable to
    // compare quantization types as well.
    def BinaryOpSameElementTypeConstraint :
      OperandsSameElementTypeConstraintBase<"binary op">;
    
    // This is a constraint for most of the comparison ops, e.g., equal, not_equal,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/asmz.go

    	op_CUXTR   uint32 = 0xB3EA // FORMAT_RRE        CONVERT TO UNSIGNED PACKED (extended DFP to 128)
    	op_CVB     uint32 = 0x4F00 // FORMAT_RX1        CONVERT TO BINARY (32)
    	op_CVBG    uint32 = 0xE30E // FORMAT_RXY1       CONVERT TO BINARY (64)
    	op_CVBY    uint32 = 0xE306 // FORMAT_RXY1       CONVERT TO BINARY (32)
    	op_CVD     uint32 = 0x4E00 // FORMAT_RX1        CONVERT TO DECIMAL (32)
    	op_CVDG    uint32 = 0xE32E // FORMAT_RXY1       CONVERT TO DECIMAL (64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        mhlo::ReduceOp reduce_op, Value input, TF::ConstOp reduction_indices,
        ConversionPatternRewriter& rewriter) {
      return failure();
    }
    
    // Converts a mhlo.reduce op with a mlho binary operation into a tensorflow
    // reduction operation. If the initial value can be ignored, then convert it
    // into a single TfReduceOp. Otherwise, convert it into a TfReduceOp followed by
    // a TfBinaryOp.
    // For example:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                        maven { url "${mavenHttpRepo.uri}" }
                    }
    
                    if ($scheduled) {
                        configurations.all {
                            // force scheduled transformation of binary artifact
                            resolutionStrategy.dependencySubstitution.all { }
                        }
                    }
    
                    dependencies {
                        registerTransform(Duplicator) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

      # ensure a version supported by easyrsa is installed
      if [ "$(openssl version | cut -d\  -f1)" == "LibreSSL" ]; then
        echo "LibreSSL is not supported. Please ensure openssl points to an OpenSSL binary"
        if [ "$(uname -s)" == "Darwin" ]; then
          # We want this print just the way it is
          # shellcheck disable=SC2016
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    		// Condition should never trigger. This code just serves
    		// to ensure runtimeĀ·buildVersion is kept in the resulting binary.
    		buildVersion = "unknown"
    	}
    	if len(modinfo) == 1 {
    		// Condition should never trigger. This code just serves
    		// to ensure runtimeĀ·modinfo is kept in the resulting binary.
    		modinfo = ""
    	}
    }
    
    func dumpgstatus(gp *g) {
    	thisg := getg()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    		},
    		// Basic config map with one data and one binary data entry.
    		{
    			configMap: api.ConfigMap{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "configmap3",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Data: map[string]string{
    					"foo": "bar",
    				},
    				BinaryData: map[string][]byte{
    					"bin": []byte("binary data"),
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

    // All Rights Reserved.
    //
    // Redistribution and use in source and binary forms, with or without
    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 181.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package x86
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"encoding/binary"
    	"fmt"
    	"internal/buildcfg"
    	"log"
    	"strings"
    )
    
    var (
    	plan9privates *obj.LSym
    )
    
    // Instruction layout.
    
    // Loop alignment constants:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * in which {@code Cursor} is {@code Closeable}. To support older versions, pass a wrapper
         * {@code Closeable} with a method reference like {@code cursor::close}.
         *
         * <p>Note that this method is still binary-compatible between flavors because the erasure of
         * its parameter type is {@code Object}, not {@code AutoCloseable} or {@code Closeable}.
         *
         * @param closeable the object to be closed (see notes above)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
Back to top