Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 669 for Dialect (0.22 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/group_by_dialect.cc

          }
          if (dialect != current_dialect) {
            if (!dialects.contains(current_dialect)) {
              wrapOpsInFunction(ops, counter++, module);
            }
            ops.clear();
            current_dialect = dialect;
          }
          ops.push_back(&op);
        }
        if (!dialects.contains(current_dialect)) {
          wrapOpsInFunction(ops, counter++, module);
        }
      }
    }
    
    void GroupByDialectPass::runOnOperation() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. tests/tests_all.sh

        fi
        cd ..
      fi
    fi
    
    
    for dialect in "${dialects[@]}" ; do
      if [ "$GORM_DIALECT" = "" ] || [ "$GORM_DIALECT" = "${dialect}" ]
      then
        echo "testing ${dialect}..."
    
        if [ "$GORM_VERBOSE" = "" ]
        then
          GORM_DIALECT=${dialect} go test -race -count=1 ./...
          if [ -d tests ]
          then
            cd tests
            GORM_DIALECT=${dialect} go test -race -count=1 ./...
            cd ..
          fi
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tools/stablehlo_quant_opt.cc

    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/Extensions/AllExtensions.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/Quant/QuantOps.h"  // from @llvm-project
    #include "mlir/Dialect/SCF/IR/SCF.h"  // from @llvm-project
    #include "mlir/Dialect/Shape/IR/Shape.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 07:37:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/dialect_registration.h

    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/ControlFlow/IR/ControlFlow.h"  // from @llvm-project
    #include "mlir/Dialect/Func/Extensions/AllExtensions.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/MLProgram/IR/MLProgram.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 16:15:16 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/passes/tfr_opt.cc

    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/Extensions/AllExtensions.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/Quant/QuantOps.h"  // from @llvm-project
    #include "mlir/Dialect/Quant/QuantTypes.h"  // from @llvm-project
    #include "mlir/Dialect/SCF/IR/SCF.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 16:15:16 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v2/tf_dialect_to_executor.h

    namespace tensorflow {
    namespace tf2xla {
    namespace v2 {
    
    // Given the input Module op that's in the Tensorflow Dialect, convert the MLIR
    // module in place to the Tensorflow Executor Dialect. Returns an OK Status if
    // success, otherwise failure with an error message.
    // The Tensorflow Executor Dialect is required to export an MLIR module to a
    // Tensorflow GraphDef. This API will add control dependencies and verify that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 23:19:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_opt.cc

    ==============================================================================*/
    
    #include "mlir/Dialect/Func/Extensions/AllExtensions.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/Quant/QuantTypes.h"  // from @llvm-project
    #include "mlir/Dialect/SCF/IR/SCF.h"  // from @llvm-project
    #include "mlir/Dialect/Shape/IR/Shape.h"  // from @llvm-project
    #include "mlir/InitAllDialects.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:20:34 UTC 2023
    - 2.4K 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/tf2xla/transforms/xla_legalize_targets.cc

    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/Shape/IR/Shape.h"  // from @llvm-project
    #include "mlir/Dialect/Tensor/IR/Tensor.h"  // from @llvm-project
    #include "mlir/Transforms/DialectConversion.h"  // from @llvm-project
    #include "stablehlo/dialect/ChloOps.h"  // from @stablehlo
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 17:44:14 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top