Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for ccCompiler (0.16 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    #include "mlir/Transforms/GreedyPatternRewriteDriver.h"  // from @llvm-project
    #include "stablehlo/dialect/StablehloOps.h"  // from @stablehlo
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h"
    #include "tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.h"
    #include "tensorflow/compiler/mlir/quantization/common/uniform_quantized_types.h"
    
    #define DEBUG_TYPE "stablehlo-compose-uniform-quantized-type"
    
    namespace mlir {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    // when the runtime package is built. The canonical example is
    // "runtime.racefuncenter" -- currently if you do something like
    //
    //	go build -gcflags=-race myprogram.go
    //
    // the compiler will insert calls to the builtin runtime.racefuncenter,
    // but the version of the runtime used for linkage won't actually contain
    // definitions of that symbol. See issue #42396 for details.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

    #include "tensorflow/compiler/jit/flags.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h"
    
    #define GEN_PASS_DEF_EMBEDDINGPIPELININGPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== Configuring Kotlin compiler options with the `kotlin-dsl` plugin applied
    
    If you are configuring custom Kotlin compiler options on a project with the <<kotlin_dsl.adoc#sec:kotlin-dsl_plugin, kotlin-dsl>> plugin applied you might encounter a breaking change.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    )
    
    const pkgdef = "__.PKGDEF"
    
    var (
    	// externalobj is set to true if we see an object compiled by
    	// the host compiler that is not from a package that is known
    	// to support internal linking mode.
    	externalobj = false
    
    	// dynimportfail is a list of packages for which generating
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    // all ops whose definitions are generated from TensorFlow codebase.
    // Changes made there are not respected.
    
    #ifndef TF_OPS
    #define TF_OPS
    
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td"
    include "mlir/Interfaces/CallInterfaces.td"
    include "mlir/Interfaces/ControlFlowInterfaces.td"
    include "mlir/Interfaces/InferTypeOpInterface.td"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    // internal/platform.BuildModeSupported, which can't be used here
    // because cmd/dist can not import internal packages during bootstrap.
    func buildModeSupported(compiler, buildmode, goos, goarch string) bool {
    	if compiler == "gccgo" {
    		return true
    	}
    
    	platform := goos + "/" + goarch
    
    	switch buildmode {
    	case "archive":
    		return true
    
    	case "c-archive":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. src/reflect/type.go

    	return pkgPathName.Name()
    }
    
    func newName(n, tag string, exported, embedded bool) abi.Name {
    	return abi.NewName(n, tag, exported, embedded)
    }
    
    /*
     * The compiler knows the exact layout of all the data structures above.
     * The compiler does not know about the data structures and methods below.
     */
    
    // Method represents a single method.
    type Method struct {
    	// Name is the method name.
    	Name string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    	return fmt.Sprintf("/*line :%d:%d*/%s", p.Line, p.Column, s)
    }
    
    // checkGCCBaseCmd returns the start of the compiler command line.
    // It uses $CC if set, or else $GCC, or else the compiler recorded
    // during the initial build as defaultCC.
    // defaultCC is defined in zdefaultcc.go, written by cmd/dist.
    //
    // The compiler command line is split into arguments on whitespace. Quotes
    // are understood, so arguments may contain whitespace.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

    #include "absl/container/flat_hash_set.h"
    #include "flatbuffers/flatbuffer_builder.h"  // from @flatbuffers
    #include "flatbuffers/vector.h"  // from @flatbuffers
    #include "tensorflow/compiler/mlir/lite/schema/schema_generated.h"
    #include "tensorflow/compiler/mlir/lite/schema/schema_utils.h"
    #include "tensorflow/core/platform/init_main.h"
    #include "tensorflow/core/platform/path.h"
    #include "tensorflow/core/platform/types.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
Back to top