Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 684 for traits (1.05 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.h

    #include "tfrt/compiler/opdefs/tfrt_op_interfaces.h"  // from @tf_runtime
    #include "tfrt/compiler/opdefs/tfrt_traits.h"  // from @tf_runtime
    #include "tfrt/core_runtime/opdefs/traits.h"  // from @tf_runtime
    
    using namespace mlir;  // NOLINT
    
    namespace tfrt {
    namespace fallback_async {
    
    // Dialect for fallback async operations.
    class FallbackAsyncDialect : public Dialect {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 24 14:49:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_sync.td

      let description = [{
        The TFRT Fallback Sync Dialect.
      }];
    
      let cppNamespace = "::tfrt::fallback_sync";
    }
    
    class FallbackSync_Op<string mnemonic, list<Trait> traits = []> :
        Op<FallbackSync_Dialect, mnemonic, !listconcat(traits, [IsolatedFromAbove])> {
    }
    
    // TODO(rohitju): Add a verifier if there is anything that should be verified
    // compile time.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 07 21:12:01 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/values_test.go

    limitations under the License.
    */
    
    package cel
    
    import (
    	"reflect"
    	"testing"
    
    	"github.com/google/cel-go/common/types"
    	"github.com/google/cel-go/common/types/ref"
    	"github.com/google/cel-go/common/types/traits"
    
    	"k8s.io/apiextensions-apiserver/pkg/apiserver/schema"
    )
    
    var (
    	listTypeSet  = "set"
    	listTypeMap  = "map"
    	stringSchema = schema.Structural{
    		Generic: schema.Generic{
    			Type: "string",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization.td

    def QUI32 : QuantizedType<"Uniform", [32], 0>;
    def QI32 : QuantizedType<"Uniform", [32], 1>;
    
    //===----------------------------------------------------------------------===//
    // TFL native op traits (for quantization).
    //
    // Ops in this link should have those traits specified:
    // https://www.tensorflow.org/lite/performance/quantization_spec
    //===----------------------------------------------------------------------===//
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h

    #define TENSORFLOW_COMPILER_MLIR_TENSORFLOW_IR_TF_EXECUTOR_H_
    
    #include "mlir/Bytecode/BytecodeOpInterface.h"  // from @llvm-project  // IWYU pragma: keep
    #include "mlir/Dialect/Traits.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinTypes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_remaining_ops.h

    #ifndef TENSORFLOW_COMPILER_MLIR_TENSORFLOW_IR_TF_REMAINING_OPS_H_
    #define TENSORFLOW_COMPILER_MLIR_TENSORFLOW_IR_TF_REMAINING_OPS_H_
    
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/Traits.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinComposableProvider.kt

    /**
     * A marker interface for a provider that can be composed, i.e. multiple instances of the same provider can be composed into a single
     * provider.
     *
     * Composable providers share certain traits: There is a notion of a sequentially composed [KotlinCompositeProvider] of that kind, and there
     * is usually a merge function which allows to create a single provider from a list of providers. Mergers of composable providers may
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_ops.td

    // Op definitions
    //===----------------------------------------------------------------------===//
    
    class TfSavedModel_Op<string mnemonic, list<Trait> traits = []> :
        Op<TfSavedModel_Dialect, mnemonic, traits> {
    }
    
    def TfSavedModel_GlobalTensorOp : TfSavedModel_Op<"global_tensor"> {
      let summary = "Represents a global tensor value.";
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h

    #define TENSORFLOW_COMPILER_MLIR_TENSORFLOW_IR_TF_OPS_H_
    
    #include "mlir/Bytecode/BytecodeOpInterface.h"  // from @llvm-project  // IWYU pragma: keep
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/Traits.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 22:48:00 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.h

    #ifndef TENSORFLOW_COMPILER_MLIR_TENSORFLOW_IR_TF_OPS_N_Z_H_
    #define TENSORFLOW_COMPILER_MLIR_TENSORFLOW_IR_TF_OPS_N_Z_H_
    
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/Traits.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top