Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for cCompiler (0.25 sec)

  1. src/cmd/go/internal/work/exec.go

    	compiler() string
    	linker() string
    }
    
    type noToolchain struct{}
    
    func noCompiler() error {
    	log.Fatalf("unknown compiler %q", cfg.BuildContext.Compiler)
    	return nil
    }
    
    func (noToolchain) compiler() string {
    	noCompiler()
    	return ""
    }
    
    func (noToolchain) linker() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //		If the package uses cgo or SWIG, these will be compiled with the
    //		OS-native compiler (typically gcc); otherwise they will
    //		trigger an error.
    //	.cc, .cpp, .cxx, .hh, .hpp, .hxx
    //		C++ source files. Only useful with cgo or SWIG, and always
    //		compiled with the OS-native compiler.
    //	.m
    //		Objective-C source files. Only useful with cgo, and always
    //		compiled with the OS-native compiler.
    //	.s, .S, .sx
    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/lite/flatbuffer_export.cc

    #include "tensorflow/compiler/mlir/lite/utils/stateful_ops_utils.h"
    #include "tensorflow/compiler/mlir/lite/utils/string_utils.h"
    #include "tensorflow/compiler/mlir/op_or_arg_name_mapper.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          %compile:2 = "tf._TPUCompileMlir"(...)
          %get_layout = "tf.TPUGetLayoutOp"(%compile#1) {...}
          %copy_to_device = "tf.TPUCopyWithLayout"(%input, %get_layout)
              {device = "/TPU:0"}
          %execute = "tf.TPUExecute"(%copy_to_device, ..., %compile#1)
              {device = "/TPU:0"}
        ```
    
        This way, %compile will determine the layout, which will be respected by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_device.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/dynamic_shape_utils.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    					sb.SetType(sym.SDYNIMPORT)
    				} else if strings.HasPrefix(ldr.SymName(rs), "go:info.") {
    					// Skip go.info symbols. They are only needed to communicate
    					// DWARF info between the compiler and linker.
    					continue
    				}
    			} else if target.IsPPC64() && ldr.SymName(rs) == ".TOC." {
    				// TOC symbol doesn't have a type but we do assign a value
    				// (see the address pass) and we can resolve it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    	// evaluate program size.
    	if len(re) > 1024 {
    		return fmt.Errorf("%q: regex is too large, max length allowed is 1024", where)
    	}
    
    	_, err := regexp.Compile(re)
    	if err == nil {
    		return nil
    	}
    
    	return fmt.Errorf("%q: %w; Istio uses RE2 style regex-based match (https://github.com/google/re2/wiki/Syntax)", where, err)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top