Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for Binary (0.13 sec)

  1. src/cmd/go/alldocs.go

    //
    // By default, 'go run' runs the compiled binary directly: 'a.out arguments...'.
    // If the -exec flag is given, 'go run' invokes the binary using xprog:
    //
    //	'xprog a.out arguments...'.
    //
    // If the -exec flag is not given, GOOS or GOARCH is different from the system
    // default, and a program named go_$GOOS_$GOARCH_exec can be found
    // on the current search path, 'go run' invokes the binary using that program,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        int scalar_operand_idx;  // can be 0 or 1 for the binary op's operands.
      };
    
      // Returns parameters of a binary op hoisting out of concatenation if all of
      // the operands are in one of the compatible configurations.
      // All inputs of `op` should be of the same binary op kind (e.g. tf.Mul),
      // except from the ones in `exceptions`. In that case, we can synthesize that
      // binary op kind for the values in `exceptions`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    // Fuse Binary Op with following Affine operation.
    template <typename AffineOpType>
    struct FuseBinaryOpToFollowingAffineOp : public OpRewritePattern<AffineOpType> {
      using OpRewritePattern<AffineOpType>::OpRewritePattern;
    
      LogicalResult matchAndRewrite(AffineOpType fc_op,
                                    PatternRewriter &rewriter) const override {
        // Binary op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. cmd/bucket-replication.go

    	}
    	// Read resync meta header
    	switch binary.LittleEndian.Uint16(data[0:2]) {
    	case resyncMetaFormat:
    	default:
    		return brs, fmt.Errorf("resyncMeta: unknown format: %d", binary.LittleEndian.Uint16(data[0:2]))
    	}
    	switch binary.LittleEndian.Uint16(data[2:4]) {
    	case resyncMetaVersion:
    	default:
    		return brs, fmt.Errorf("resyncMeta: unknown version: %d", binary.LittleEndian.Uint16(data[2:4]))
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		b.Right.goString(indent+2, "Right: "))
    }
    
    func (b *Binary) prec() precedence {
    	if p, ok := b.Op.(hasPrec); ok {
    		return p.prec()
    	}
    	return precDefault
    }
    
    // Trinary is the ?: trinary operation in an expression.
    type Trinary struct {
    	Op     AST
    	First  AST
    	Second AST
    	Third  AST
    }
    
    func (t *Trinary) print(ps *printState) {
    	if isDesignatedInitializer(t) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    		return err
    	}
    
    	// Update the binary with the final build ID.
    	// But if OmitDebug is set, don't rewrite the binary, because we set OmitDebug
    	// on binaries that we are going to run and then delete.
    	// There's no point in doing work on such a binary.
    	// Worse, opening the binary for write here makes it
    	// essentially impossible to safely fork+exec due to a fundamental
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    	sr.AddAddr(ctxt.Arch, s.Sym())
    }
    
    // appendString appends s to data, prefixed by its varint-encoded length.
    func appendString(data []byte, s string) []byte {
    	var v [binary.MaxVarintLen64]byte
    	n := binary.PutUvarint(v[:], uint64(len(s)))
    	data = append(data, v[:n]...)
    	data = append(data, s...)
    	return data
    }
    
    // assign addresses to text
    func (ctxt *Link) textaddress() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    	}
    }
    
    func TestChanOfDir(t *testing.T) {
    	// check construction and use of type not in binary
    	type T string
    	crt := ChanOf(RecvDir, TypeOf(T("")))
    	cst := ChanOf(SendDir, TypeOf(T("")))
    
    	// check that type already in binary is found
    	type T1 int
    	checkSameType(t, ChanOf(RecvDir, TypeOf(T1(1))), (<-chan T1)(nil))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.platform.base.binary.BaseBinarySpec.getBuildAbility()> does not have raw return type assignable to org.gradle.api.provider.Provider in (BaseBinarySpec.java:0)
    Method <org.gradle.platform.base.binary.BaseBinarySpec.getComponent()> does not have raw return type assignable to org.gradle.api.provider.Provider in (BaseBinarySpec.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %3 = "tf.ConcatV2"(%1, %2, %0) : (tensor<f32>, tensor<f32>, tensor<i32>) -> tensor<2xf32>
    
      func.return %3 : tensor<2xf32>
    }
    
    // Synthesize binary ops when 1 of the 3 concat inputs is a non-binary op.
    // CHECK-LABEL: testConcatCwiseBinarySynthMulOp3Inputs
    func.func @testConcatCwiseBinarySynthMulOp3Inputs(%arg0: tensor<?x1xf32>, %arg1: tensor<?x1xf32>, %arg2: tensor<?x1xf32>) -> tensor<?x3xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
Back to top