Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for Binary1 (0.15 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

        Node* d =
            Binary(b, c, b1.opts().WithName("D").WithAttr("_encapsulate", "F1"));
        Node* e = Binary(c, d,
                         b1.opts()
                             .WithName("E")
                             .WithControlInputs({b, d})
                             .WithAttr("_encapsulate", "F1")
                             .WithAttr("_outside", "O1"));
        Node* f = Binary(c, e,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  2. 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)
  3. CHANGELOG/CHANGELOG-1.4.md

    * Fixed flakes caused by petset tests. ([#35158](https://github.com/kubernetes/kubernetes/pull/35158), [@foxish](https://github.com/foxish))
    * Added rkt binary to GCI ([#35321](https://github.com/kubernetes/kubernetes/pull/35321), [@vishh](https://github.com/vishh))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		}
    	case *Trinary:
    		if op, ok := x.Op.(*Operator); ok {
    			return op.Name == "[...]="
    		}
    	}
    	return false
    }
    
    // Binary is a binary operation in an expression.
    type Binary struct {
    	Op    AST
    	Left  AST
    	Right AST
    }
    
    func (b *Binary) print(ps *printState) {
    	op, _ := b.Op.(*Operator)
    
    	if op != nil && strings.Contains(op.Name, "cast") {
    		ps.writeString(op.Name)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  8. 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)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    Version 1.1.1 Copyright (c) 2002 Extreme! Lab, Indiana University. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 200.2K bytes
    - Viewed (0)
  10. 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)
Back to top