Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,086 for dissect (0.12 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/hoist_broadcast_read.cc

    ==============================================================================*/
    
    #include <memory>
    #include <string>
    
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/Support/Casting.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    #include "mlir/IR/Operation.h"  // from @llvm-project
    #include "mlir/IR/Value.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/group_by_dialect.mlir

    // CHECK-NEXT: return
    // CHECK: func{{.*}}dialect = "x"
    // CHECK-NEXT: x.a
    // CHECK: func{{.*}}dialect = "y"
    // CHECK-NEXT: y.a
    // CHECK: func{{.*}}dialect = "z"
    // CHECK-NEXT: z.a
    // CHECK: func{{.*}}dialect = "x"
    // CHECK-NEXT: x.b
    // CHECK: func{{.*}}dialect = "y"
    // CHECK-NEXT: y.b
    // CHECK: func{{.*}}dialect = "z"
    // CHECK-NEXT: z.b
    // CHECK: func{{.*}}dialect = "x"
    // CHECK-NEXT: x.c
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 28 23:43:21 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_batch_matmul.cc

    #include <algorithm>
    #include <cstdint>
    #include <memory>
    #include <utility>
    
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/Support/Casting.h"
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/Smb3KeyDerivation.java

        private Smb3KeyDerivation () {}
    
    
        /**
         * 
         * @param dialect
         * @param sessionKey
         * @param preauthIntegrity
         * @return derived signing key
         */
        public static byte[] deriveSigningKey ( int dialect, byte[] sessionKey, byte[] preauthIntegrity ) {
            return derive(
                sessionKey,
                dialect == Smb2Constants.SMB2_DIALECT_0311 ? SIGNLABEL_311 : SIGNLABEL_300,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h

      // Re-define publicly the protected addOperations() method from the Dialect
      // class, usually used in a Dialect constructor. This allows hook
      // functions to register operations on the TensorFlow dialect using the
      // same interface.
      template <typename... Args>
      void addOperations() {
        Dialect::addOperations<Args...>();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loadpe/ldpe.go

    }
    
    func issect(s *pe.COFFSymbol) bool {
    	return s.StorageClass == IMAGE_SYM_CLASS_STATIC && s.Type == 0 && s.Name[0] == '.'
    }
    
    func (state *peLoaderState) readpesym(pesym *pe.COFFSymbol) (*loader.SymbolBuilder, loader.Sym, error) {
    	symname, err := pesym.FullName(state.f.StringTable)
    	if err != nil {
    		return nil, 0, err
    	}
    	var name string
    	if issect(pesym) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/passes.h

    // Creates an instance of the TensorFlow Lite dialect PrepareTF pass.
    std::unique_ptr<OperationPass<func::FuncOp>> CreatePrepareTFPass(
        bool unfold_batch_matmul, bool allow_bf16_and_f16_type_legalization,
        bool use_fake_quant_num_bits = false);
    std::unique_ptr<OperationPass<func::FuncOp>> CreatePrepareTFPass();
    
    // Creates an instance of the TensorFlow Lite dialect LowerStaticTensorList
    // pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/derived/DerivedVariantsResolutionIntegrationTest.groovy

            direct = mavenHttpRepo.module("test", "direct", "1.0")
            direct.dependsOn(transitive)
        }
    
        // region With Gradle Module Metadata
        def "direct has GMM and no sources or javadoc jars"() {
            transitive.withModuleMetadata()
            transitive.publish()
            direct.withModuleMetadata()
            direct.publish()
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/dump_graph.h

        return *this;
      }
    
      MlirDumpConfig& emit_dialect(Dialect dialect) {
        this->dialect = dialect;
        return *this;
      }
    
      // Op printing flags.
      mlir::OpPrintingFlags op_printing_flags = std::nullopt;
    
      // The target MLIR dialect.
      Dialect dialect = Dialect::kTFG;
    };
    
    // Change DumpGraphToFile to dump MLIR textual IR instead of protobuf.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 24 09:43:29 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

    //===----------------------------------------------------------------------===//
    // Dialect
    //===----------------------------------------------------------------------===//
    
    def TFR_Dialect : Dialect {
      let name = "tfr";
    
      let description = [{
        The TensorFlow Composition dialect.
      }];
    
      let cppNamespace = "::mlir::TFR";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top