Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for Binary1 (0.4 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top