Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for _lifted (0.12 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

    // Cheap check to tell whether FunctionDef contains a lifted argument.
    bool HasLiftedArgs(const FunctionDef& function_def) {
      return absl::c_any_of(function_def.node_def(), [](const NodeDef& node_def) {
        return (node_def.op() == "Placeholder" &&
                node_def.attr().find(kXlaLiftedArgOutsideCompilationAttrName) !=
                    node_def.attr().end());
      });
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"ADDS (shifted register)","Bits":"0|0|1|0|1|0|1|1|shift:2|0|Rm:5|imm6:6|Rn:5|Rd:5","Arch":"32-bit variant","Syntax":"ADDS <Wd>, <Wn>, <Wm>{, <shift> #<amount>}","Code":"","Alias":"This instruction is used by the alias CMN (shifted register)."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //		into a C shared library. The only callable symbols will
    //		be those functions exported using a cgo //export comment.
    //		Requires exactly one main package to be listed.
    //
    //	-buildmode=default
    //		Listed main packages are built into executables and listed
    //		non-main packages are built into .a files (the default
    //		behavior).
    //
    //	-buildmode=shared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/asm7.go

    	if int64(x) < 0 {
    		x = ^x
    		neg = true
    	}
    	y := x & -x // lowest set bit of x.
    	s := log2(y)
    	n := log2(x+y) - s // x (or ^x) is a sequence of n ones left shifted by s bits
    	if neg {
    		// ^x is a sequence of n ones left shifted by s bits
    		// adjust n, s for x
    		s = n + s
    		n = period - n
    	}
    
    	N := uint32(0)
    	if mode == 64 && period == 64 {
    		N = 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

               "invariants. In the case of this pass, that means manually propagating "
               "controls to lifted parallel execute regions to the graph fetch to "
               "ensure the ops execute, as well as determining whether or not the "
               "islands created by this pass should be split after the replicated "
               "ops have been lifted.">
      ];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	ForceLibrary      bool                 // this package is a library (even if named "main")
    	CmdlineFiles      bool                 // package built from files listed on command line
    	CmdlinePkg        bool                 // package listed on command line
    	CmdlinePkgLiteral bool                 // package listed as literal on command line (not via wildcard)
    	Local             bool                 // imported via local path (./ or ../)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

                Projects should only list the license(s) that applies to the project
                and not the licenses that apply to dependencies.
                If multiple licenses are listed, it is assumed that the user can select
                any of them, not that they must accept all.
                ]]>
              </description>
              <association>
                <type>License</type>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    		case REG_TLS:
    			// NOTE: Systems listed here should be only systems that
    			// support direct TLS references like 8(TLS) implemented as
    			// direct references from FS or GS. Systems that require
    			// the initial-exec model, where you load the TLS base into
    			// a register and then index from that register, do not reach
    			// this code and should not be listed.
    			if ctxt.Arch.Family == sys.I386 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// S{HL, HR, AR}x: shift operations
    		// SHL: shift left
    		// SHR: shift right logical (0s are shifted in from beyond the word size)
    		// SAR: shift right arithmetic (sign bit is shifted in from beyond the word size)
    		// arg0 is the value being shifted
    		// arg1 is the amount to shift, interpreted mod (Q=64,L=32,W=32,B=32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  10. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

          // The reduce function __reduce_func has 36 arguments, and the source of those arguments are listed below:
          //   [arg0, arg5]:   these are states coming from ReduceDatasetOp's [arg1, arg6]
          //   [arg6: arg14]:  these are the input elements coming from the output of %51:9
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
Back to top