Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,272 for defUse (0.24 sec)

  1. src/cmd/compile/internal/ssa/sccp.go

    				// find its uses, only uses that can become constants take into account
    				if possibleConst(arg) && possibleConst(val) {
    					if _, exist := t.defUse[arg]; !exist {
    						t.defUse[arg] = make([]*Value, 0, arg.Uses)
    					}
    					t.defUse[arg] = append(t.defUse[arg], val)
    				}
    			}
    		}
    		for _, ctl := range block.ControlValues() {
    			// for control values that can become constants, find their use blocks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/defs.h

    limitations under the License.
    ==============================================================================*/
    
    // Provides definitions needed for use of the TensorFlow XLA
    // device.
    
    #ifndef TENSORFLOW_COMPILER_JIT_DEFS_H_
    #define TENSORFLOW_COMPILER_JIT_DEFS_H_
    
    namespace tensorflow {
    
    // Name of attribute used to tag operators for compilation with XLA
    
    // Implies must-compile semantics: either it will be compiled
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 07 01:03:32 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/defs.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/jit/defs.h"
    
    #include <atomic>
    
    namespace tensorflow {
    
    const char* const kXlaMustCompileAttr = "_XlaMustCompile";
    
    const char* const kXlaCompileAttr = "_XlaCompile";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 07 01:03:32 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. src/internal/coverage/defs.go

    Than McIntosh <******@****.***> 1691585441 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. src/runtime/defs2_linux.go

    The asm header tricks we have to use for Linux on amd64
    (see defs.c and defs1.c) don't work here, so this is yet another
    file.  Sigh.
    */
    
    package runtime
    
    /*
    #cgo CFLAGS: -I/tmp/linux/arch/x86/include -I/tmp/linux/include -D_LOOSE_KERNEL_NAMES -D__ARCH_SI_UID_T=__kernel_uid32_t
    
    #define size_t __kernel_size_t
    #define pid_t int
    #include <asm/signal.h>
    #include <asm/mman.h>
    #include <asm/sigcontext.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 18:28:11 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/passes.h

    CreatePartitionedTopologicalSortPass();
    
    #define GEN_PASS_DECL_DEFAULTQUANTPARAMSPASS
    #define GEN_PASS_DECL_DENSETOSPARSEPASS
    #define GEN_PASS_DECL_LEGALIZETFPASS
    #define GEN_PASS_DECL_MODIFYIONODESPASS
    #define GEN_PASS_DECL_OPTIMIZEPASS
    #define GEN_PASS_DECL_POSTQUANTIZEPASS
    #define GEN_PASS_DECL_PREPARECOMPOSITEFUNCTIONSPASS
    #define GEN_PASS_DECL_PREPAREDYNAMICRANGEQUANTIZEPASS
    #define GEN_PASS_DECL_PREPAREQUANTIZEPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/derived_shape_attr.mlir

    func.func @main() {
      tf_executor.graph {
        %0:2 = tf_executor.island wraps "tf.Const"() {dtype = "tfdtype$DT_INT32", value = dense<0> : tensor<10xi32>} : () -> tensor<10xi32>
        %1:2 = tf_executor.island wraps "tf.Const"() {dtype = "tfdtype$DT_INT32", value = dense<0> : tensor<i32>} : () -> tensor<i32>
        %2:2 = tf_executor.island wraps "tf.PlaceholderWithDefault"(%1#0) {type = i32} : (tensor<i32>) -> tensor<*xi32> loc("unranked")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-defs.pbtxt

    Jacques Pienaar <******@****.***> 1587687343 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  9. src/runtime/defs_linux.go

    */
    
    package runtime
    
    /*
    // Linux glibc and Linux kernel define different and conflicting
    // definitions for struct sigaction, struct timespec, etc.
    // We want the kernel ones, which are in the asm/* headers.
    // But then we'd get conflicts when we include the system
    // headers for things like ucontext_t, so that happens in
    // a separate file, defs1.go.
    
    #define	_SYS_TYPES_H	// avoid inclusion of sys/types.h
    #include <asm/posix_types.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 18:28:11 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

            file("app/src/main/headers/defs.h") << """
                #define _HELLO_HEADER_2 "hello.h"
                #define _HELLO_HEADER_1 _HELLO_HEADER_2
                #define HELLO_HEADER MACRO_FUNCTION() // some indirection
    
                #define MACRO_FUNCTION( ) _HELLO_HEADER_1
                #define FUNCTION_RETURNS_STRING(X) "hello.h"
                #define FUNCTION_RETURNS_MACRO(X) HELLO_HEADER
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top